?? microsoft.practices.enterpriselibrary.common.xml
字號:
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Practices.EnterpriseLibrary.Common</name>
</assembly>
<members>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.AppDomainNameFormatter">
<summary>
Provides the friendly name of the app domain as the prefix in formatting a
particular instance of a performance counter.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.IPerformanceCounterNameFormatter">
<summary>
Provides a pluggable way to format the name given to a particular instance of a performance counter.
Each instance of a performance counter in Enterprise Library is given a name of the format
"Name prefix - counter name"
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.IPerformanceCounterNameFormatter.CreateName(System.String)">
<summary>
Creates the formatted instance name for a performance counter, providing the prefix for the
instance.
</summary>
<param name="nameSuffix">Performance counter name, as defined during installation of the counter</param>
<returns>Formatted instance name in form of "prefix - nameSuffix"</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.AppDomainNameFormatter.CreateName(System.String)">
<summary>
Creates the formatted instance name for a performance counter, providing the Application
Domain friendly name for the prefix for the instance.
</summary>
<param name="nameSuffix">Performance counter name, as defined during installation of the counter</param>
<returns>Formatted instance name in form of "appDomainFriendlyName - nameSuffix"</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter">
<summary>
Provides a virtual PerformanceCounter interface that allows an application to maintain both individually
named counter instances and a single counter total instance.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.#ctor(System.String,System.String)">
<summary>
Initializes a single performance counter instance named "Total"
</summary>
<param name="counterCategoryName">Performance counter category name, as defined during installation</param>
<param name="counterName">Performance counter name, as defined during installation</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.#ctor(System.String,System.String,System.String[])">
<summary>
Initializes multiple instances of performance counters to be managed by this object.
Creates a "Total" counter as well as individual instances as defined in the <paramref name="instanceNames"></paramref>
</summary>
<param name="counterCategoryName">Performance counter category name, as defined during installation</param>
<param name="counterName">Performance counter name, as defined during installation</param>
<param name="instanceNames">Param array of instance names to be managed</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.#ctor(System.Diagnostics.PerformanceCounter[])">
<summary>
Initializes this object with performance counters created externally. It is the responsibility of the external
counter factory to create an instance for the "Total" counter.
</summary>
<param name="counters">Param array of already initialized <see cref="T:System.Diagnostics.PerformanceCounter"></see>s to be managed
by this instance.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.Clear">
<summary>
Clears the raw count associated with all managed performance counters
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.Increment">
<summary>
Increments each performance counter managed by this instance.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.IncrementBy(System.Int64)">
<summary>
Increments by the given <paramref name="value"></paramref> each performance counter managed by this instance.
</summary>
<param name="value">Amount by which to increment each counter</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.GetValueFor(System.String)">
<summary>
Gets the current value of the given performance counter instance.
</summary>
<param name="instanceName">Instance name of counter for which to get value.</param>
<returns>Value of the given performance counter.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.SetValueFor(System.String,System.Int64)">
<summary>
Sets the value of the given performance counter instance.
</summary>
<param name="instanceName">Instance name of counter for which to set the value.</param>
<param name="value">Value to which the given instance should be set.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.InstantiateCounter(System.String)">
<summary>
Instantiates a performance counter, giving it the specified <paramref name="instanceName"></paramref>.
</summary>
<param name="instanceName">Instance name to be given to the instantiated <see cref="T:System.Diagnostics.PerformanceCounter"></see></param>.
<returns>Initialized <see cref="T:System.Diagnostics.PerformanceCounter"></see></returns>.
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.Counters">
<summary>
Gets the list of performance counter instances managed by this object.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EnterpriseLibraryPerformanceCounter.Value">
<summary>
This method supports the Enterprise Library infrastructure and is not intended to be used directly from your code.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EventBinder">
<summary>
Binds an event source to an event handler.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EventBinder.#ctor(System.Object,System.Object)">
<summary>
Initializes this object with the source and listener objects to be bound together.
</summary>
<param name="source">Object owning the event that will be bound to</param>
<param name="listener">Object owning the method that will be added as a handler for specified event.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.EventBinder.Bind(System.Reflection.EventInfo,System.Reflection.MethodInfo)">
<summary>
Adds specified <paramref name="listenerMethod"></paramref> as an event handler for
the <paramref name="sourceEvent"></paramref>.
</summary>
<param name="sourceEvent">Event on source object to which <paramref name="listenerMethod"></paramref> will be added.</param>
<param name="listenerMethod">Method to be added as event handler for <paramref name="listenerMethod"></paramref>.</param>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationBaseAttribute">
<summary>
Base class for attributes used to identify instrumentation producers or consumers.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationBaseAttribute.#ctor(System.String)">
<summary>
Initializes this instance with the instrumentation subject name.
</summary>
<param name="subjectName">Subject name being produced or consumed</param>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationBaseAttribute.SubjectName">
<summary>
Gets the subject name
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationConsumerAttribute">
<summary>
Defines methods that are consuming instrumentation events.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationConsumerAttribute.#ctor(System.String)">
<summary>
Initializes this instance with the instrumentation subject name being consumed.
</summary>
<param name="subjectName">Subject name of the event being consumed.</param>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationListenerAttribute">
<summary>
Defines a class that will listen for instrumentation events broadcast by other classes
and report them to system services. This attribute is placed on the class that is to be
listened to to define the class that will listen to it.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationListenerAttribute.#ctor(System.Type)">
<overloads>
Initializes attribute with given <paramref name="listenerType"></paramref>.
</overloads>
<summary>
Initializes attribute with given <paramref name="listenerType"></paramref>.
</summary>
<param name="listenerType">Instrumentation listener type to instantiate.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationListenerAttribute.#ctor(System.Type,System.Type)">
<summary>
Initializes attribute with given <paramref name="listenerType"></paramref>. Use when
you need to specify an explicit binder class.
</summary>
<param name="listenerType">Instrumentation listener type to instantiate.</param>
<param name="listenerBinderType">Instrumentation binder listener type to instantiate.</param>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationListenerAttribute.ListenerType">
<summary>
Gets type of class to instantiate to listen for events.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Common.Instrumentation.InstrumentationListenerAttribute.ListenerBinderType">
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -