﻿<?xml version="1.0" encoding="utf-8"?><Type Name="PerformanceCounterType" FullName="System.Diagnostics.PerformanceCounterType"><TypeSignature Language="C#" Maintainer="auto" Value="public enum PerformanceCounterType" /><TypeSignature Language="ILAsm" Value=".class public auto ansi sealed PerformanceCounterType extends System.Enum" /><AssemblyInfo><AssemblyName>System</AssemblyName><AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey><AssemblyVersion>1.0.3300.0</AssemblyVersion><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement><Base><BaseTypeName>System.Enum</BaseTypeName></Base><Attributes><Attribute><AttributeName>System.ComponentModel.TypeConverter(typeof(System.Diagnostics.AlphabeticalEnumConverter))</AttributeName></Attribute></Attributes><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Some counter types represent raw data, while others represent calculated values that are based on one or more counter samples. The following categories classify the types of counters available.</para><list type="bullet"><item><para>Average: measure a value over time and display the average of the last two measurements. Associated with each average counter is a base counter that tracks the number of samples involved.</para></item><item><para>Difference: subtract the last measurement from the previous one and display the difference, if it is positive; if negative, they display a zero.</para></item><item><para>Instantaneous: display the most recent measurement.</para></item><item><para>Percentage: display calculated values as a percentage.</para></item><item><para>Rate: sample an increasing count of events over time and divide the change in count values by the change in time to display a rate of activity.</para></item></list><para>When sampling performance counter data, using a counter type that represents an average can make raw data values meaningful for your use. For example, the raw data counter NumberOfItems64 can expose data that is fairly random from sample to sample. The formula for an average calculation of the values that the counter returns would be (X <subscript>0</subscript> +X <subscript>1</subscript> +…+X <subscript>n</subscript>)/n, where each X <subscript>i</subscript> is a raw counter sample.</para><para>Rate counters are similar to average counters, but more useful for situations in which the rate increases as a resource is used. A formula that quickly calculates the average is ((X <subscript>n</subscript> -X <subscript>0</subscript>)/(T <subscript>n</subscript> -T <subscript>0</subscript>)) / frequency, where each X <subscript>i</subscript> is a counter sample and each T <subscript>i</subscript> is the time that the corresponding sample was taken. The result is the average usage per second.</para><block subset="none" type="note"><para>Unless otherwise indicated, the time base is seconds.</para></block><para>When instrumenting applications (creating and writing custom performance counters), you might be working with performance counter types that rely on an accompanying base counter that is used in the calculations. The base counter must be immediately after its associated counter in the <see cref="T:System.Diagnostics.CounterCreationDataCollection" /> collection your application uses. The following table lists the base counter types with their corresponding performance counter types.</para><list type="table"><listheader><item><term><para>Base counter type </para></term><description><para>Performance counter types </para></description></item></listheader><item><term><para>AverageBase </para></term><description><para>AverageTimer32 </para><para>AverageCount64 </para></description></item><item><term><para>CounterMultiBase </para></term><description><para>CounterMultiTimer </para><para>CounterMultiTimerInverse </para><para>CounterMultiTimer100Ns </para><para>CounterMultiTimer100NsInverse </para></description></item><item><term><para>RawBase </para></term><description><para>RawFraction </para></description></item><item><term><para>SampleBase </para></term><description><para>SampleFraction </para></description></item></list></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Specifies the formula used to calculate the <see cref="M:System.Diagnostics.PerformanceCounter.NextValue" /> method for a <see cref="T:System.Diagnostics.PerformanceCounter" /> instance.</para></summary></Docs><Members><Member MemberName="AverageBase"><MemberSignature Language="C#" Value="AverageBase" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType AverageBase = int32(1073939458)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A base counter that is used in the calculation of time or count averages, such as AverageTimer32 and AverageCount64. Stores the denominator for calculating a counter to present "time per operation" or "count per operation".</para></summary></Docs></Member><Member MemberName="AverageCount64"><MemberSignature Language="C#" Value="AverageCount64" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType AverageCount64 = int32(1073874176)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> -N <subscript>0</subscript>)/(B <subscript>1</subscript> -B <subscript>0</subscript>), where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings, and the B <subscript>1</subscript> and B <subscript>0</subscript> are their corresponding AverageBase values. Thus, the numerator represents the numbers of items processed during the sample interval, and the denominator represents the number of operations completed during the sample interval.</para><para>Counters of this type include PhysicalDisk\ Avg. Disk Bytes/Transfer.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An average counter that shows how many items are processed, on average, during an operation. Counters of this type display a ratio of the items processed to the number of operations completed. The ratio is calculated by comparing the number of items processed during the last interval to the number of operations completed during the last interval.</para></summary></Docs></Member><Member MemberName="AverageTimer32"><MemberSignature Language="C#" Value="AverageTimer32" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType AverageTimer32 = int32(805438464)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: ((N <subscript>1</subscript> -N <subscript>0</subscript>)/F)/(B <subscript>1</subscript> -B <subscript>0</subscript>), where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings, B <subscript>1</subscript> and B <subscript>0</subscript> are their corresponding AverageBase values, and F is the number of ticks per second. The value of F is factored into the equation so that the result can be displayed in seconds. Thus, the numerator represents the numbers of ticks counted during the last sample interval, F represents the frequency of the ticks, and the denominator represents the number of operations completed during the last sample interval.</para><para>Counters of this type include PhysicalDisk\ Avg. Disk sec/Transfer.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An average counter that measures the time it takes, on average, to complete a process or operation. Counters of this type display a ratio of the total elapsed time of the sample interval to the number of processes or operations completed during that time. This counter type measures time in ticks of the system clock.</para></summary></Docs></Member><Member MemberName="CounterDelta32"><MemberSignature Language="C#" Value="CounterDelta32" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterDelta32 = int32(4195328)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: N <subscript>1</subscript> -N <subscript>0</subscript>, where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A difference counter that shows the change in the measured attribute between the two most recent sample intervals.</para></summary></Docs></Member><Member MemberName="CounterDelta64"><MemberSignature Language="C#" Value="CounterDelta64" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterDelta64 = int32(4195584)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: N <subscript>1</subscript> -N <subscript>0</subscript>, where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A difference counter that shows the change in the measured attribute between the two most recent sample intervals. It is the same as the CounterDelta32 counter type except that is uses larger fields to accomodate larger values.</para></summary></Docs></Member><Member MemberName="CounterMultiBase"><MemberSignature Language="C#" Value="CounterMultiBase" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterMultiBase = int32(1107494144)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A base counter that indicates the number of items sampled. It is used as the denominator in the calculations to get an average among the items sampled when taking timings of multiple, but similar items. Used with CounterMultiTimer, CounterMultiTimerInverse, CounterMultiTimer100Ns, and CounterMultiTimer100NsInverse.</para></summary></Docs></Member><Member MemberName="CounterMultiTimer"><MemberSignature Language="C#" Value="CounterMultiTimer" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterMultiTimer = int32(574686464)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This counter is a multitimer. Multitimers collect data from more than one instance of a component, such as a processor or disk. This counter type differs from CounterMultiTimer100Ns in that it measures time in units of ticks of the system performance timer, rather than in 100 nanosecond units.</para><para>Formula: ((N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>)) x 100 / B, where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings, D <subscript>1</subscript> and D <subscript>0</subscript> are their corresponding time readings in ticks of the system performance timer, and the variable B denotes the base count for the monitored components (using a base counter of type CounterMultiBase). Thus, the numerator represents the portions of the sample interval during which the monitored components were active, and the denominator represents the total elapsed time of the sample interval.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that displays the active time of one or more components as a percentage of the total time of the sample interval. Because the numerator records the active time of components operating simultaneously, the resulting percentage can exceed 100 percent.</para></summary></Docs></Member><Member MemberName="CounterMultiTimer100Ns"><MemberSignature Language="C#" Value="CounterMultiTimer100Ns" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterMultiTimer100Ns = int32(575735040)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This counter type is a multitimer. Multitimers are designed to monitor more than one instance of a component, such as a processor or disk.</para><para>Formula: ((N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>)) x 100 / B, where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings, D <subscript>1</subscript> and D <subscript>0</subscript> are their corresponding time readings in 100-nanosecond units, and the variable B denotes the base count for the monitored components (using a base counter of type CounterMultiBase). Thus, the numerator represents the portions of the sample interval during which the monitored components were active, and the denominator represents the total elapsed time of the sample interval.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that shows the active time of one or more components as a percentage of the total time of the sample interval. It measures time in 100 nanosecond (ns) units.</para></summary></Docs></Member><Member MemberName="CounterMultiTimer100NsInverse"><MemberSignature Language="C#" Value="CounterMultiTimer100NsInverse" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterMultiTimer100NsInverse = int32(592512256)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This counter type is an inverse multitimer. Multitimers are designed to monitor more than one instance of a component, such as a processor or disk. Inverse counters measure the time that a component is not active and derive its active time from the measurement of inactive time </para><para>Formula: (B - ((N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>))) x 100, where the denominator represents the total elapsed time of the sample interval, the numerator represents the time during the interval when monitored components were inactive, and B represents the number of components being monitored, using a base counter of type CounterMultiBase.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that shows the active time of one or more components as a percentage of the total time of the sample interval. Counters of this type measure time in 100 nanosecond (ns) units. They derive the active time by measuring the time that the components were not active and subtracting the result from multiplying 100 percent by the number of objects monitored.</para></summary></Docs></Member><Member MemberName="CounterMultiTimerInverse"><MemberSignature Language="C#" Value="CounterMultiTimerInverse" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterMultiTimerInverse = int32(591463680)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This counter type is an inverse multitimer. Multitimers monitor more than one instance of a component, such as a processor or disk. Inverse counters measure the time that a component is not active and derive its active time from that measurement.</para><para>This counter differs from CounterMultiTimer100NsInverse in that it measures time in units of ticks of the system performance timer, rather than in 100 nanosecond units.</para><para>Formula: (B- ((N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>))) x 100, where the denominator represents the total elapsed time of the sample interval, the numerator represents the time during the interval when monitored components were inactive, and B represents the number of components being monitored, using a base counter of type CounterMultiBase.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that shows the active time of one or more components as a percentage of the total time of the sample interval. It derives the active time by measuring the time that the components were not active and subtracting the result from 100 percent by the number of objects monitored.</para></summary></Docs></Member><Member MemberName="CounterTimer"><MemberSignature Language="C#" Value="CounterTimer" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterTimer = int32(541132032)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>), where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings, and D <subscript>1</subscript> and D <subscript>0</subscript> are their corresponding time readings. Thus, the numerator represents the portions of the sample interval during which the monitored components were active, and the denominator represents the total elapsed time of the sample interval.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that shows the average time that a component is active as a percentage of the total sample time.</para></summary></Docs></Member><Member MemberName="CounterTimerInverse"><MemberSignature Language="C#" Value="CounterTimerInverse" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CounterTimerInverse = int32(557909248)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This is an inverse counter type. Inverse counters measure the time that a component is note active and derive the active time from that measurement. This counter type is the same as CounterTimer100NsInv except that it measures time in units of ticks of the system performance timer rather than in 100 nanosecond units.</para><para>Formula: (1- ((N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>))) x 100, where the numerator represents the time during the interval when the monitored components were inactive, and the denominator represents the total elapsed time of the sample interval.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that displays the average percentage of active time observed during sample interval. The value of these counters is calculated by monitoring the percentage of time that the service was inactive and then subtracting that value from 100 percent.</para></summary></Docs></Member><Member MemberName="CountPerTimeInterval32"><MemberSignature Language="C#" Value="CountPerTimeInterval32" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CountPerTimeInterval32 = int32(4523008)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>), where the numerator represents the number of items in the queue and the denominator represents the time elapsed during the last sample interval.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An average counter designed to monitor the average length of a queue to a resource over time. It shows the difference between the queue lengths observed during the last two sample intervals divided by the duration of the interval. This type of counter is typically used to track the number of items that are queued or waiting.</para></summary></Docs></Member><Member MemberName="CountPerTimeInterval64"><MemberSignature Language="C#" Value="CountPerTimeInterval64" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType CountPerTimeInterval64 = int32(4523264)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>), where the numerator represents the number of items in a queue and the denominator represents the time elapsed during the sample interval.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An average counter that monitors the average length of a queue to a resource over time. Counters of this type display the difference between the queue lengths observed during the last two sample intervals, divided by the duration of the interval. This counter type is the same as CountPerTimeInterval32 except that it uses larger fields to accommodate larger values. This type of counter is typically used to track a high-volume or very large number of items that are queued or waiting.</para></summary></Docs></Member><Member MemberName="ElapsedTime"><MemberSignature Language="C#" Value="ElapsedTime" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType ElapsedTime = int32(807666944)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (D <subscript>0</subscript> - N <subscript>0</subscript>) / F, where D <subscript>0</subscript> represents the current time, N <subscript>0</subscript> represents the time the object was started, and F represents the number of time units that elapse in one second. The value of F is factored into the equation so that the result can be displayed in seconds.</para><para>Counters of this type include System\ System Up Time.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A difference timer that shows the total time between when the component or process started and the time when this value is calculated.</para></summary></Docs></Member><Member MemberName="NumberOfItems32"><MemberSignature Language="C#" Value="NumberOfItems32" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType NumberOfItems32 = int32(65536)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: None. Does not display an average, but shows the raw data as it is collected.</para><para>Counters of this type include Memory\Available Bytes.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An instantaneous counter that shows the most recently observed value. Used, for example, to maintain a simple count of items or operations.</para></summary></Docs></Member><Member MemberName="NumberOfItems64"><MemberSignature Language="C#" Value="NumberOfItems64" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType NumberOfItems64 = int32(65792)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: None. Does not display an average, but shows the raw data as it is collected.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An instantaneous counter that shows the most recently observed value. Used, for example, to maintain a simple count of a very large number of items or operations. It is the same as NumberOfItems32 except that it uses larger fields to accommodate larger values.</para></summary></Docs></Member><Member MemberName="NumberOfItemsHEX32"><MemberSignature Language="C#" Value="NumberOfItemsHEX32" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType NumberOfItemsHEX32 = int32(0)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: None. Does not display an average, but shows the raw data as it is collected.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An instantaneous counter that shows the most recently observed value in hexadecimal format. Used, for example, to maintain a simple count of items or operations.</para></summary></Docs></Member><Member MemberName="NumberOfItemsHEX64"><MemberSignature Language="C#" Value="NumberOfItemsHEX64" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType NumberOfItemsHEX64 = int32(256)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: None. Does not display an average, but shows the raw data as it is collected </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An instantaneous counter that shows the most recently observed value. Used, for example, to maintain a simple count of a very large number of items or operations. It is the same as NumberOfItemsHEX32 except that it uses larger fields to accommodate larger values.</para></summary></Docs></Member><Member MemberName="RateOfCountsPerSecond32"><MemberSignature Language="C#" Value="RateOfCountsPerSecond32" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType RateOfCountsPerSecond32 = int32(272696320)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> - N <subscript>0</subscript>) / ((D <subscript>1</subscript> -D <subscript>0</subscript>) / F), where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings, D <subscript>1</subscript> and D <subscript>0</subscript> are their corresponding time readings, and F represents the number of ticks per second. Thus, the numerator represents the number of operations performed during the last sample interval, the denominator represents the number of ticks elapsed during the last sample interval, and F is the frequency of the ticks. The value of F is factored into the equation so that the result can be displayed in seconds.</para><para>Counters of this type include System\ File Read Operations/sec.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A difference counter that shows the average number of operations completed during each second of the sample interval. Counters of this type measure time in ticks of the system clock.</para></summary></Docs></Member><Member MemberName="RateOfCountsPerSecond64"><MemberSignature Language="C#" Value="RateOfCountsPerSecond64" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType RateOfCountsPerSecond64 = int32(272696576)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> - N <subscript>0</subscript>) / ((D <subscript>1</subscript> -D <subscript>0</subscript>) / F), where N <subscript>1</subscript> and N <subscript>0</subscript> are performance counter readings, D <subscript>1</subscript> and D <subscript>0</subscript> are their corresponding time readings, and F represents the number of ticks per second. Thus, the numerator represents the number of operations performed during the last sample interval, the denominator represents the number of ticks elapsed during the last sample interval, and F is the frequency of the ticks. The value of F is factored into the equation so that the result can be displayed in seconds.</para><para>Counters of this type include System\ File Read Bytes/sec.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A difference counter that shows the average number of operations completed during each second of the sample interval. Counters of this type measure time in ticks of the system clock. This counter type is the same as the RateOfCountsPerSecond32 type, but it uses larger fields to accommodate larger values to track a high-volume number of items or operations per second, such as a byte-transmission rate.</para></summary></Docs></Member><Member MemberName="RawBase"><MemberSignature Language="C#" Value="RawBase" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType RawBase = int32(1073939459)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A base counter that stores the denominator of a counter that presents a general arithmetic fraction. Check that this value is greater than zero before using it as the denominator in a RawFraction value calculation.</para></summary></Docs></Member><Member MemberName="RawFraction"><MemberSignature Language="C#" Value="RawFraction" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType RawFraction = int32(537003008)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>0</subscript> / D <subscript>0</subscript>) x 100, where D <subscript>0</subscript> represents a measured attribute (using a base counter of type RawBase) and N <subscript>0</subscript> represents one component of that attribute.</para><para>Counters of this type include Paging File\% Usage Peak.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An instantaneous percentage counter that shows the ratio of a subset to its set as a percentage. For example, it compares the number of bytes in use on a disk to the total number of bytes on the disk. Counters of this type display the current percentage only, not an average over time.</para></summary></Docs></Member><Member MemberName="SampleBase"><MemberSignature Language="C#" Value="SampleBase" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType SampleBase = int32(1073939457)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A base counter that stores the number of sampling interrupts taken and is used as a denominator in the sampling fraction. The sampling fraction is the number of samples that were 1 (or true) for a sample interrupt. Check that this value is greater than zero before using it as the denominator in a calculation of SampleFraction.</para></summary></Docs></Member><Member MemberName="SampleCounter"><MemberSignature Language="C#" Value="SampleCounter" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType SampleCounter = int32(4260864)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> – N <subscript>0</subscript>) / ((D <subscript>1</subscript> – D <subscript>0</subscript>) / F), where the numerator (N) represents the number of operations completed, the denominator (D) represents elapsed time in units of ticks of the system performance timer, and F represents the number of ticks that elapse in one second. F is factored into the equation so that the result can be displayed in seconds.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>An average counter that shows the average number of operations completed in one second. When a counter of this type samples the data, each sampling interrupt returns one or zero. The counter data is the number of ones that were sampled. It measures time in units of ticks of the system performance timer.</para></summary></Docs></Member><Member MemberName="SampleFraction"><MemberSignature Language="C#" Value="SampleFraction" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType SampleFraction = int32(549585920)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: ((N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>)) x 100, where the numerator represents the number of successful operations during the last sample interval, and the denominator represents the change in the number of all operations (of the type measured) completed during the sample interval, using counters of type SampleBase.</para><para>Counters of this type include Cache\Pin Read Hits %.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that shows the average ratio of hits to all operations during the last two sample intervals.</para></summary></Docs></Member><Member MemberName="Timer100Ns"><MemberSignature Language="C#" Value="Timer100Ns" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType Timer100Ns = int32(542180608)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Formula: (N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>) x 100, where the numerator represents the portions of the sample interval during which the monitored components were active, and the denominator represents the total elapsed time of the sample interval.</para><para>Counters of this type include Processor\ % User Time.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that shows the active time of a component as a percentage of the total elapsed time of the sample interval. It measures time in units of 100 nanoseconds (ns). Counters of this type are designed to measure the activity of one component at a time.</para></summary></Docs></Member><Member MemberName="Timer100NsInverse"><MemberSignature Language="C#" Value="Timer100NsInverse" /><MemberSignature Language="ILAsm" Value=".field public static literal valuetype System.Diagnostics.PerformanceCounterType Timer100NsInverse = int32(558957824)" /><MemberType>Field</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Diagnostics.PerformanceCounterType</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This is an inverse counter. Counters of this type calculate active time by measuring the time that the service was inactive and then subtracting the percentage of active time from 100 percent.</para><para>Formula: (1- ((N <subscript>1</subscript> - N <subscript>0</subscript>) / (D <subscript>1</subscript> - D <subscript>0</subscript>))) x 100, where the numerator represents the time during the interval when the monitored components were inactive, and the denominator represents the total elapsed time of the sample interval.</para><para>Counters of this type include Processor\ % Processor Time.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>A percentage counter that shows the average percentage of active time observed during the sample interval.</para></summary></Docs></Member></Members></Type>