20f5e056b9c729c21038d0768fa79a1fe56f7df1
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Diagnostics.DiagnosticSource.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Diagnostics.DiagnosticSource</name>
5   </assembly>
6   <members>
7     <member name="T:System.Diagnostics.Activity">
8       <summary>Represents an operation with context to be used for logging.</summary>
9     </member>
10     <member name="M:System.Diagnostics.Activity.#ctor(System.String)">
11       <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Activity" /> class.</summary>
12       <param name="operationName">The name of the operation.</param>
13     </member>
14     <member name="M:System.Diagnostics.Activity.AddBaggage(System.String,System.String)">
15       <summary>Updates the <see cref="T:System.Diagnostics.Activity" /> to have a new baggage item with the specified key and value.</summary>
16       <param name="key">The baggage key.</param>
17       <param name="value">The baggage value.</param>
18       <returns>
19         <see langword="this" /> for convenient chaining.</returns>
20     </member>
21     <member name="M:System.Diagnostics.Activity.AddEvent(System.Diagnostics.ActivityEvent)">
22       <summary>Adds the specified activity event to the events list.</summary>
23       <param name="e">The activity event to add.</param>
24       <returns>
25         <see langword="this" /> for convenient chaining.</returns>
26     </member>
27     <member name="M:System.Diagnostics.Activity.AddTag(System.String,System.Object)">
28       <summary>Updates the activity to have a tag with an additional <paramref name="key" /> and <paramref name="value" />.</summary>
29       <param name="key">The tag key name.</param>
30       <param name="value">The tag value mapped to the input key.</param>
31       <returns>
32         <see langword="this" /> for convenient chaining.</returns>
33     </member>
34     <member name="M:System.Diagnostics.Activity.AddTag(System.String,System.String)">
35       <summary>Updates the <see cref="T:System.Diagnostics.Activity" /> to have a new tag with the provided <paramref name="key" /> and <paramref name="value" />.</summary>
36       <param name="key">The tag key.</param>
37       <param name="value">The tag value.</param>
38       <returns>
39         <see langword="this" /> for convenient chaining.</returns>
40     </member>
41     <member name="M:System.Diagnostics.Activity.Dispose">
42       <summary>Stops the activity if it is already started and notifies any event listeners. Nothing will happen otherwise.</summary>
43     </member>
44     <member name="M:System.Diagnostics.Activity.Dispose(System.Boolean)">
45       <summary>When overriden by a derived type, this method releases any allocated resources.</summary>
46       <param name="disposing">
47         <see langword="false" /> if the method is being called from the finalizer; <see langword="true" /> if calling from user code.</param>
48     </member>
49     <member name="M:System.Diagnostics.Activity.GetBaggageItem(System.String)">
50       <summary>Returns the value of a key-value pair added to the activity with <see cref="M:System.Diagnostics.Activity.AddBaggage(System.String,System.String)" />.</summary>
51       <param name="key">The baggage key.</param>
52       <returns>The value of the key-value-pair item if it exists, or <see langword="null" /> if it does not exist.</returns>
53     </member>
54     <member name="M:System.Diagnostics.Activity.GetCustomProperty(System.String)">
55       <summary>Returns the object mapped to the specified property name.</summary>
56       <param name="propertyName">The name associated to the object.</param>
57       <returns>The object mapped to the property name, if one is found; otherwise, <see langword="null" />.</returns>
58     </member>
59     <member name="M:System.Diagnostics.Activity.GetTagItem(System.String)">
60       <summary>Returns the value of the Activity tag mapped to the input key/&gt;.
61             Returns <see langword="null" /> if that key does not exist.</summary>
62       <param name="key">The tag key string.</param>
63       <returns>The tag value mapped to the input key.</returns>
64     </member>
65     <member name="M:System.Diagnostics.Activity.SetBaggage(System.String,System.String)">
66       <summary>Add or update the Activity baggage with the input key and value.
67             If the input value is <see langword="null" /> - if the collection has any baggage with the same key, then this baggage will get removed from the collection.
68                 - otherwise, nothing will happen and the collection will not change.
69             If the input value is not <see langword="null" /> - if the collection has any baggage with the same key, then the value mapped to this key will get updated with the new input value.
70                 - otherwise, the key and value will get added as a new baggage to the collection.
71             Baggage item will be updated/removed only if it was originaly added to the current activity. Items inherited from the parents will not be changed/removed, new item would be added to current activity baggage instead.</summary>
72       <param name="key">The baggage key name</param>
73       <param name="value">The baggage value mapped to the input key</param>
74       <returns>
75         <see langword="this" /> for convenient chaining.</returns>
76     </member>
77     <member name="M:System.Diagnostics.Activity.SetCustomProperty(System.String,System.Object)">
78       <summary>Attaches any custom object to this activity. If the specified <paramref name="propertyName" /> was previously associated with another object, the property will be updated to be associated with the new <paramref name="propertyValue" /> instead. It is recommended to use a unique property name to avoid conflicts with anyone using the same value.</summary>
79       <param name="propertyName">The name to associate the value with.</param>
80       <param name="propertyValue">The object to attach and map to the property name.</param>
81     </member>
82     <member name="M:System.Diagnostics.Activity.SetEndTime(System.DateTime)">
83       <summary>Updates the <see cref="T:System.Diagnostics.Activity" /> to set its <see cref="P:System.Diagnostics.Activity.Duration" /> as the difference between <see cref="P:System.Diagnostics.Activity.StartTimeUtc" /> and the specified stop time.</summary>
84       <param name="endTimeUtc">The UTC stop time.</param>
85       <returns>
86         <see langword="this" /> for convenient chaining.</returns>
87     </member>
88     <member name="M:System.Diagnostics.Activity.SetIdFormat(System.Diagnostics.ActivityIdFormat)">
89       <summary>Sets the ID format on this <see cref="T:System.Diagnostics.Activity" /> before it is started.</summary>
90       <param name="format">One of the enumeration values that specifies the format of the <see cref="P:System.Diagnostics.Activity.Id" /> property.</param>
91       <returns>
92         <see langword="this" /> for convenient chaining.</returns>
93     </member>
94     <member name="M:System.Diagnostics.Activity.SetParentId(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags)">
95       <summary>Sets the parent ID using the W3C convention of a TraceId and a SpanId.</summary>
96       <param name="traceId">The parent activity's TraceId.</param>
97       <param name="spanId">The parent activity's SpanId.</param>
98       <param name="activityTraceFlags">One of the enumeration values that specifies flags defined by the W3C standard that are associated with an activity.</param>
99       <returns>
100         <see langword="this" /> for convenient chaining.</returns>
101     </member>
102     <member name="M:System.Diagnostics.Activity.SetParentId(System.String)">
103       <summary>Updates this <see cref="T:System.Diagnostics.Activity" /> to indicate that the <see cref="T:System.Diagnostics.Activity" /> with an ID of <paramref name="parentId" /> caused this <see cref="T:System.Diagnostics.Activity" />.</summary>
104       <param name="parentId">The ID of the parent operation.</param>
105       <returns>
106         <see langword="this" /> for convenient chaining.</returns>
107     </member>
108     <member name="M:System.Diagnostics.Activity.SetStartTime(System.DateTime)">
109       <summary>Sets the start time of this <see cref="T:System.Diagnostics.Activity" />.</summary>
110       <param name="startTimeUtc">The <see cref="T:System.Diagnostics.Activity" /> start time in UTC.</param>
111       <returns>
112         <see langword="this" /> for convenient chaining.</returns>
113     </member>
114     <member name="M:System.Diagnostics.Activity.SetStatus(System.Diagnostics.ActivityStatusCode,System.String)">
115       <summary>Sets the status code and description on the current activity object.</summary>
116       <param name="code">The status code</param>
117       <param name="description">The error status description</param>
118       <returns>
119         <see langword="this" /> for convenient chaining.</returns>
120     </member>
121     <member name="M:System.Diagnostics.Activity.SetTag(System.String,System.Object)">
122       <summary>Adds or update the activity tag with the input key and value.</summary>
123       <param name="key">The tag key name.</param>
124       <param name="value">The tag value mapped to the input key.</param>
125       <returns>
126         <see langword="this" /> for convenient chaining.</returns>
127     </member>
128     <member name="M:System.Diagnostics.Activity.Start">
129       <summary>Starts the activity.</summary>
130       <returns>
131         <see langword="this" /> for convenient chaining.</returns>
132     </member>
133     <member name="M:System.Diagnostics.Activity.Stop">
134       <summary>Stops the activity.</summary>
135     </member>
136     <member name="P:System.Diagnostics.Activity.ActivityTraceFlags">
137       <summary>Gets or sets the flags (defined by the W3C ID specification) associated with the activity.</summary>
138       <returns>the flags associated with the activity.</returns>
139     </member>
140     <member name="P:System.Diagnostics.Activity.Baggage">
141       <summary>Gets a collection of key/value pairs that represents information that is passed to children of this <see cref="T:System.Diagnostics.Activity" />.</summary>
142       <returns>Information that's passed to children of this <see cref="T:System.Diagnostics.Activity" />.</returns>
143     </member>
144     <member name="P:System.Diagnostics.Activity.Context">
145       <summary>Gets the context of the activity. Context becomes valid only if the activity has been started.</summary>
146       <returns>The context of the activity, if the activity has been started; otherwise, returns the default context.</returns>
147     </member>
148     <member name="P:System.Diagnostics.Activity.Current">
149       <summary>Gets or sets the current operation (<see cref="T:System.Diagnostics.Activity" />) for the current thread. This flows across async calls.</summary>
150       <returns>The current operation for the current thread.</returns>
151     </member>
152     <member name="P:System.Diagnostics.Activity.DefaultIdFormat">
153       <summary>Gets or sets the default ID format for the <see cref="T:System.Diagnostics.Activity" />.</summary>
154     </member>
155     <member name="P:System.Diagnostics.Activity.DisplayName">
156       <summary>Gets or sets the display name of the activity.</summary>
157       <returns>A string that represents the activity display name.</returns>
158     </member>
159     <member name="P:System.Diagnostics.Activity.Duration">
160       <summary>Gets the duration of the operation.</summary>
161       <returns>The delta between <see cref="P:System.Diagnostics.Activity.StartTimeUtc" /> and the end time if the <see cref="T:System.Diagnostics.Activity" /> has ended (<see cref="M:System.Diagnostics.Activity.Stop" /> or <see cref="M:System.Diagnostics.Activity.SetEndTime(System.DateTime)" /> was called), or <see cref="F:System.TimeSpan.Zero" /> if the <see cref="T:System.Diagnostics.Activity" /> has not ended and <see cref="M:System.Diagnostics.Activity.SetEndTime(System.DateTime)" /> was not called.</returns>
162     </member>
163     <member name="P:System.Diagnostics.Activity.Events">
164       <summary>Gets the list of all the activity events attached to this activity.</summary>
165       <returns>An enumeration of activity events attached to this activity. If the activity has no events, returns an empty enumeration.</returns>
166     </member>
167     <member name="P:System.Diagnostics.Activity.ForceDefaultIdFormat">
168       <summary>Gets or sets a value that detrmines if the <see cref="P:System.Diagnostics.Activity.DefaultIdFormat" /> is always used to define the default ID format.</summary>
169       <returns>
170         <see langword="true" /> to always use the <see cref="P:System.Diagnostics.Activity.DefaultIdFormat" />; otherwise, <see langword="false" />.</returns>
171     </member>
172     <member name="P:System.Diagnostics.Activity.Id">
173       <summary>Gets an identifier that is specific to a particular request.</summary>
174       <returns>The activity ID.</returns>
175     </member>
176     <member name="P:System.Diagnostics.Activity.IdFormat">
177       <summary>Gets the format for the <see cref="P:System.Diagnostics.Activity.Id" />.</summary>
178       <returns>The format for the <see cref="P:System.Diagnostics.Activity.Id" />.</returns>
179     </member>
180     <member name="P:System.Diagnostics.Activity.IsAllDataRequested">
181       <summary>Gets or sets a value that indicates whether this activity should be populated with all the propagation information, as well as all the other properties, such as links, tags, and events.</summary>
182       <returns>
183         <see langword="true" /> if the activity should be populated; <see langword="false" /> otherwise.</returns>
184     </member>
185     <member name="P:System.Diagnostics.Activity.Kind">
186       <summary>Gets the relationship between the activity, its parents, and its children in a trace.</summary>
187       <returns>One of the enumeration values that indicate relationship between the activity, its parents, and its children in a trace.</returns>
188     </member>
189     <member name="P:System.Diagnostics.Activity.Links">
190       <summary>Gets the list of all the activity links attached to this activity.</summary>
191       <returns>An enumeration of activity links attached to this activity. If the activity has no links, returns an empty enumeration.</returns>
192     </member>
193     <member name="P:System.Diagnostics.Activity.OperationName">
194       <summary>Gets the operation name.</summary>
195       <returns>The name of the operation.</returns>
196     </member>
197     <member name="P:System.Diagnostics.Activity.Parent">
198       <summary>Gets the parent <see cref="T:System.Diagnostics.Activity" /> that created this activity.</summary>
199       <returns>The parent of this <see cref="T:System.Diagnostics.Activity" />, if it is from the same process, or <see langword="null" /> if this instance has no parent (it is a root activity) or if the parent is from outside the process.</returns>
200     </member>
201     <member name="P:System.Diagnostics.Activity.ParentId">
202       <summary>Gets the ID of this activity's parent.</summary>
203       <returns>The parent ID, if one exists, or <see langword="null" /> if it does not.</returns>
204     </member>
205     <member name="P:System.Diagnostics.Activity.ParentSpanId">
206       <summary>Gets the parent's <see cref="P:System.Diagnostics.Activity.SpanId" />.</summary>
207       <returns>The parent's <see cref="P:System.Diagnostics.Activity.SpanId" />.</returns>
208     </member>
209     <member name="P:System.Diagnostics.Activity.Recorded">
210       <summary>Gets a value that indicates whether the W3CIdFlags.Recorded flag is set.</summary>
211       <returns>
212         <see langword="true" /> if the W3CIdFlags.Recorded flag is set; otherwise, <see langword="false" />.</returns>
213     </member>
214     <member name="P:System.Diagnostics.Activity.RootId">
215       <summary>Gets the root ID of this <see cref="T:System.Diagnostics.Activity" />.</summary>
216       <returns>The root ID, or <see langword="null" /> if the current instance has either a <see cref="P:System.Diagnostics.Activity.ParentId" /> or an <see cref="P:System.Diagnostics.Activity.Id" />.</returns>
217     </member>
218     <member name="P:System.Diagnostics.Activity.Source">
219       <summary>Gets the activity source associated with this activity.</summary>
220     </member>
221     <member name="P:System.Diagnostics.Activity.SpanId">
222       <summary>Gets the SPAN part of the <see cref="P:System.Diagnostics.Activity.Id" />.</summary>
223       <returns>The ID for the SPAN part of <see cref="P:System.Diagnostics.Activity.Id" />, if the <see cref="T:System.Diagnostics.Activity" /> has the W3C format; otherwise, a zero <see langword="SpanId" />.</returns>
224     </member>
225     <member name="P:System.Diagnostics.Activity.StartTimeUtc">
226       <summary>Gets the time when the operation started.</summary>
227       <returns>The UTC time that the operation started.</returns>
228     </member>
229     <member name="P:System.Diagnostics.Activity.Status">
230       <summary>Gets status code of the current activity object.</summary>
231     </member>
232     <member name="P:System.Diagnostics.Activity.StatusDescription">
233       <summary>Gets the status description of the current activity object.</summary>
234     </member>
235     <member name="P:System.Diagnostics.Activity.TagObjects">
236       <summary>Gets the list of tags that represent information to log along with the activity. This information is not passed on to the children of this activity.</summary>
237       <returns>A key-value pair enumeration of tags and objects.</returns>
238     </member>
239     <member name="P:System.Diagnostics.Activity.Tags">
240       <summary>Gets a collection of key/value pairs that represent information that will be logged along with the <see cref="T:System.Diagnostics.Activity" /> to the logging system.</summary>
241       <returns>Information that will be logged along with the <see cref="T:System.Diagnostics.Activity" /> to the logging system.</returns>
242     </member>
243     <member name="P:System.Diagnostics.Activity.TraceId">
244       <summary>Gets the TraceId part of the <see cref="P:System.Diagnostics.Activity.Id" />.</summary>
245       <returns>The ID for the TraceId part of the <see cref="P:System.Diagnostics.Activity.Id" />, if the ID has the W3C format; otherwise, a zero TraceId.</returns>
246     </member>
247     <member name="P:System.Diagnostics.Activity.TraceIdGenerator">
248       <summary>When starting an Activity which does not have a parent context, the Trace Id will automatically be generated using random numbers.
249             TraceIdGenerator can be used to override the runtime's default Trace Id generation algorithm.</summary>
250     </member>
251     <member name="P:System.Diagnostics.Activity.TraceStateString">
252       <summary>Gets or sets the W3C <see langword="tracestate" /> header.</summary>
253       <returns>The W3C <see langword="tracestate" /> header.</returns>
254     </member>
255     <member name="T:System.Diagnostics.ActivityContext">
256       <summary>A representation that conforms to the W3C TraceContext specification. It contains two identifiers: a TraceId and a SpanId,  along with a set of common TraceFlags and system-specific TraceState values.</summary>
257     </member>
258     <member name="M:System.Diagnostics.ActivityContext.#ctor(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean)">
259       <summary>Construct a new activity context instance using the specified arguments.</summary>
260       <param name="traceId">A trace identifier.</param>
261       <param name="spanId">A span identifier.</param>
262       <param name="traceFlags">Contain details about the trace.</param>
263       <param name="traceState">Carries system-specific configuration data.</param>
264       <param name="isRemote">Indicates if the context is propagated from a remote parent.</param>
265     </member>
266     <member name="M:System.Diagnostics.ActivityContext.Equals(System.Diagnostics.ActivityContext)">
267       <summary>Indicates whether the current object is equal to another object of the same type.</summary>
268       <param name="value">The object to compare to this instance.</param>
269       <returns>
270         <see langword="true" /> if the current object is equal to the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
271     </member>
272     <member name="M:System.Diagnostics.ActivityContext.Equals(System.Object)">
273       <summary>Determines whether this instance and a specified <see langword="ActivityContext" /> object have the same value.</summary>
274       <param name="obj">The object to compare to this instance.</param>
275       <returns>
276         <see langword="true" /> if the current object is equal to the <paramref name="obj" /> parameter; otherwise, <see langword="false" />.</returns>
277     </member>
278     <member name="M:System.Diagnostics.ActivityContext.GetHashCode">
279       <summary>Provides a hash function for the current <see langword="ActivityContext" /> that's suitable for hashing algorithms and data structures, such as hash tables.</summary>
280       <returns>A hash code for the current <see langword="ActivityContext" />.</returns>
281     </member>
282     <member name="M:System.Diagnostics.ActivityContext.op_Equality(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityContext)">
283       <summary>Determines whether two specified <see langword="ActivityContext" /> values are equal.</summary>
284       <param name="left">The first value to compare.</param>
285       <param name="right">The second value to compare.</param>
286       <returns>
287         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are equal; otherwise, <see langword="false" />.</returns>
288     </member>
289     <member name="M:System.Diagnostics.ActivityContext.op_Inequality(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityContext)">
290       <summary>Determines whether two specified <see langword="ActivityContext" /> values are not equal.</summary>
291       <param name="left">The first value to compare.</param>
292       <param name="right">The second value to compare.</param>
293       <returns>
294         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
295     </member>
296     <member name="M:System.Diagnostics.ActivityContext.Parse(System.String,System.String)">
297       <summary>Parses a W3C trace context headers to an <see cref="T:System.Diagnostics.ActivityContext" /> object.</summary>
298       <param name="traceParent">The W3C trace parent header.</param>
299       <param name="traceState">The trace state.</param>
300       <exception cref="T:System.ArgumentException">The trace parent is invalid.</exception>
301       <returns>The <see cref="T:System.Diagnostics.ActivityContext" /> object created from the parsing operation.</returns>
302     </member>
303     <member name="M:System.Diagnostics.ActivityContext.TryParse(System.String,System.String,System.Diagnostics.ActivityContext@)">
304       <summary>Tries to parse the W3C trace context headers to an <see cref="T:System.Diagnostics.ActivityContext" /> object.</summary>
305       <param name="traceParent">The W3C trace parent header.</param>
306       <param name="traceState">The W3C trace state.</param>
307       <param name="context">When this method returns <see langword="true" />, the <see cref="T:System.Diagnostics.ActivityContext" /> object created from the parsing operation.</param>
308       <returns>
309         <see langword="true" /> if the parsing was successful; <see langword="false" /> otherwise.</returns>
310     </member>
311     <member name="P:System.Diagnostics.ActivityContext.IsRemote">
312       <summary>Indicates if the activity context was propagated from a remote parent.</summary>
313       <returns>
314         <see langword="true" /> if it was propagated from a remote parent; <see langword="false" /> otherwise.</returns>
315     </member>
316     <member name="P:System.Diagnostics.ActivityContext.SpanId">
317       <summary>The Id of the request as known by the caller.</summary>
318       <returns>The Span Id in the context.</returns>
319     </member>
320     <member name="P:System.Diagnostics.ActivityContext.TraceFlags">
321       <summary>The flags defined by the W3C standard along with the ID for the activity.</summary>
322       <returns>The context tracing flags.</returns>
323     </member>
324     <member name="P:System.Diagnostics.ActivityContext.TraceId">
325       <summary>The trace identifier.</summary>
326       <returns>The tracing identifier in the context.</returns>
327     </member>
328     <member name="P:System.Diagnostics.ActivityContext.TraceState">
329       <summary>Holds the W3C 'tracestate' header.</summary>
330       <returns>A string representing the W3C 'tracestate' header.</returns>
331     </member>
332     <member name="T:System.Diagnostics.ActivityCreationOptions`1">
333       <summary>Encapsulates all the information that is sent to the activity listener, to make decisions about the creation of the activity instance, as well as its state.
334
335 The possible generic type parameters are <see cref="T:System.Diagnostics.ActivityContext" /> or <see cref="T:System.String" />.</summary>
336       <typeparam name="T">The type of the <see langword="Parent" /> property. Should be either <see cref="T:System.String" /> or <see langword="ActivityContext" />.</typeparam>
337     </member>
338     <member name="P:System.Diagnostics.ActivityCreationOptions`1.Kind">
339       <summary>Gets the activity kind which the activity will be created with.</summary>
340       <returns>One of the enumeration values that represent an activity kind.</returns>
341     </member>
342     <member name="P:System.Diagnostics.ActivityCreationOptions`1.Links">
343       <summary>Gets the enumeration of activity links that the activity will be created with.</summary>
344       <returns>An enumeration of activity links.</returns>
345     </member>
346     <member name="P:System.Diagnostics.ActivityCreationOptions`1.Name">
347       <summary>Gets the name to use as OperationName of the activity that will get created.</summary>
348       <returns>A string representing the activity name.</returns>
349     </member>
350     <member name="P:System.Diagnostics.ActivityCreationOptions`1.Parent">
351       <summary>Gets the parent context or parent Id that the activity will get created with.</summary>
352       <returns>The parent of the activity, represented either as a <see cref="T:System.String" /> or as an <see cref="T:System.Diagnostics.ActivityContext" />.</returns>
353     </member>
354     <member name="P:System.Diagnostics.ActivityCreationOptions`1.SamplingTags">
355       <summary>Gets the collection that is used to add more tags during the sampling process. The added tags are also added to the created Activity if it is decided that it should be created by the <see cref="T:System.Diagnostics.ActivityListener" /> callbacks.</summary>
356       <returns>The Activity tags collection.</returns>
357     </member>
358     <member name="P:System.Diagnostics.ActivityCreationOptions`1.Source">
359       <summary>Gets the activity source that creates the activity.</summary>
360       <returns>An activity source object.</returns>
361     </member>
362     <member name="P:System.Diagnostics.ActivityCreationOptions`1.Tags">
363       <summary>Gets the tags that the activity will be created with.</summary>
364       <returns>A key-value pair enumeration of tags associated with the activity.</returns>
365     </member>
366     <member name="P:System.Diagnostics.ActivityCreationOptions`1.TraceId">
367       <summary>Gets the trace Id to use in the Activity object if it is decided that it should be created by <see cref="T:System.Diagnostics.ActivityListener" /> callbacks.</summary>
368       <returns>The trace Id.</returns>
369     </member>
370     <member name="T:System.Diagnostics.ActivityEvent">
371       <summary>Represents an event containing a name and a timestamp, as well as an optional list of tags.</summary>
372     </member>
373     <member name="M:System.Diagnostics.ActivityEvent.#ctor(System.String)">
374       <summary>Initializes a new activity event instance using the specified name and the current time as the event timestamp.</summary>
375       <param name="name">The event name.</param>
376     </member>
377     <member name="M:System.Diagnostics.ActivityEvent.#ctor(System.String,System.DateTimeOffset,System.Diagnostics.ActivityTagsCollection)">
378       <summary>Initializes a new activity event instance using the specified name, timestamp and tags.</summary>
379       <param name="name">The event name.</param>
380       <param name="timestamp">The event timestamp. Timestamp must only be used for the events that happened in the past, not at the moment of this call.</param>
381       <param name="tags">The event tags.</param>
382     </member>
383     <member name="P:System.Diagnostics.ActivityEvent.Name">
384       <summary>Gets the activity event name.</summary>
385       <returns>A string representing the activity event name.</returns>
386     </member>
387     <member name="P:System.Diagnostics.ActivityEvent.Tags">
388       <summary>Gets the collection of tags associated with the event.</summary>
389       <returns>A key-value pair enumeration containing the tags associated with the event.</returns>
390     </member>
391     <member name="P:System.Diagnostics.ActivityEvent.Timestamp">
392       <summary>Gets the activity event timestamp.</summary>
393       <returns>A datetime offset representing the activity event timestamp.</returns>
394     </member>
395     <member name="T:System.Diagnostics.ActivityIdFormat">
396       <summary>Specifies the format of the <see cref="P:System.Diagnostics.Activity.Id" /> property.</summary>
397     </member>
398     <member name="F:System.Diagnostics.ActivityIdFormat.Hierarchical">
399       <summary>The hierarchical format.</summary>
400     </member>
401     <member name="F:System.Diagnostics.ActivityIdFormat.Unknown">
402       <summary>An unknown format.</summary>
403     </member>
404     <member name="F:System.Diagnostics.ActivityIdFormat.W3C">
405       <summary>The W3C format.</summary>
406     </member>
407     <member name="T:System.Diagnostics.ActivityKind">
408       <summary>Describes the relationship between the activity, its parents and its children in a trace.</summary>
409     </member>
410     <member name="F:System.Diagnostics.ActivityKind.Client">
411       <summary>Outgoing request to the external component.</summary>
412     </member>
413     <member name="F:System.Diagnostics.ActivityKind.Consumer">
414       <summary>Output received from an external component.</summary>
415     </member>
416     <member name="F:System.Diagnostics.ActivityKind.Internal">
417       <summary>Internal operation within an application, as opposed to operations with remote parents or children. This is the default value.</summary>
418     </member>
419     <member name="F:System.Diagnostics.ActivityKind.Producer">
420       <summary>Output provided to external components.</summary>
421     </member>
422     <member name="F:System.Diagnostics.ActivityKind.Server">
423       <summary>Requests incoming from external component.</summary>
424     </member>
425     <member name="T:System.Diagnostics.ActivityLink">
426       <summary>Activities may be linked to zero or more activity context instances that are causally related.
427
428 Activity links can point to activity contexts inside a single trace or across different traces.
429
430 Activity links can be used to represent batched operations where an activity was initiated by multiple initiating activities, each representing a single incoming item being processed in the batch.</summary>
431     </member>
432     <member name="M:System.Diagnostics.ActivityLink.#ctor(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityTagsCollection)">
433       <summary>Constructs a new activity link, which can be linked to an activity.</summary>
434       <param name="context">The trace activity context.</param>
435       <param name="tags">The key-value pair list of tags associated to the activity context.</param>
436     </member>
437     <member name="M:System.Diagnostics.ActivityLink.Equals(System.Diagnostics.ActivityLink)">
438       <summary>Indicates whether the current activity link is equal to another activity link.</summary>
439       <param name="value">The activity link to compare.</param>
440       <returns>
441         <see langword="true" /> if the current activity link is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
442     </member>
443     <member name="M:System.Diagnostics.ActivityLink.Equals(System.Object)">
444       <summary>Indicates whether the current activity link is equal to another object.</summary>
445       <param name="obj">The object to compare.</param>
446       <returns>
447         <see langword="true" /> if the current activity link is equal to <paramref name="obj" />; otherwise, <see langword="false" />.</returns>
448     </member>
449     <member name="M:System.Diagnostics.ActivityLink.GetHashCode">
450       <summary>Provides a hash function for the current <see langword="ActivityLink" /> that's suitable for hashing algorithms and data structures, such as hash tables.</summary>
451       <returns>A hash code for the current <see langword="ActivityLink" />.</returns>
452     </member>
453     <member name="M:System.Diagnostics.ActivityLink.op_Equality(System.Diagnostics.ActivityLink,System.Diagnostics.ActivityLink)">
454       <summary>Determines whether two specified <see langword="ActivityLink" /> values are equal.</summary>
455       <param name="left">The first value to compare.</param>
456       <param name="right">The second value to compare.</param>
457       <returns>
458         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are equal; otherwise, <see langword="false" />.</returns>
459     </member>
460     <member name="M:System.Diagnostics.ActivityLink.op_Inequality(System.Diagnostics.ActivityLink,System.Diagnostics.ActivityLink)">
461       <summary>Determines whether two specified <see langword="ActivityLink" /> values are not equal.</summary>
462       <param name="left">The first value to compare.</param>
463       <param name="right">The second value to compare.</param>
464       <returns>
465         <see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
466     </member>
467     <member name="P:System.Diagnostics.ActivityLink.Context">
468       <summary>Retrieves the activity context inside this activity link.</summary>
469     </member>
470     <member name="P:System.Diagnostics.ActivityLink.Tags">
471       <summary>Retrieves the key-value pair enumeration of tags attached to the activity context.</summary>
472       <returns>An enumeration of tags attached to the activity context.</returns>
473     </member>
474     <member name="T:System.Diagnostics.ActivityListener">
475       <summary>Allows listening to the start and stop activity events and gives the opportunity to decide creating an activity for sampling scenarios.</summary>
476     </member>
477     <member name="M:System.Diagnostics.ActivityListener.#ctor">
478       <summary>Construct a new activity listener object to start listeneing to the activity events.</summary>
479     </member>
480     <member name="M:System.Diagnostics.ActivityListener.Dispose">
481       <summary>Unregisters this activity listener object from listening to activity events.</summary>
482     </member>
483     <member name="P:System.Diagnostics.ActivityListener.ActivityStarted">
484       <summary>Gets or sets the callback used to listen to the activity start event.</summary>
485       <returns>An activity callback instance used to listen to the activity start event.</returns>
486     </member>
487     <member name="P:System.Diagnostics.ActivityListener.ActivityStopped">
488       <summary>Gets or sets the callback used to listen to the activity stop event.</summary>
489       <returns>An activity callback instance used to listen to the activity stop event.</returns>
490     </member>
491     <member name="P:System.Diagnostics.ActivityListener.Sample">
492       <summary>Gets or sets the callback that is used to decide if creating <see cref="T:System.Diagnostics.Activity" /> objects with a specific data state is allowed.</summary>
493       <returns>A sample activity instance.</returns>
494     </member>
495     <member name="P:System.Diagnostics.ActivityListener.SampleUsingParentId">
496       <summary>Gets or sets the callback that is used to decide if creating <see cref="T:System.Diagnostics.Activity" /> objects with a specific data state is allowed.</summary>
497       <returns>A sample activity instance.</returns>
498     </member>
499     <member name="P:System.Diagnostics.ActivityListener.ShouldListenTo">
500       <summary>Gets or sets the callback that allows deciding if activity object events that were created using the activity source object should be listened or not.</summary>
501       <returns>
502         <see langword="true" /> to listen events; <see langword="false" /> otherwise.</returns>
503     </member>
504     <member name="T:System.Diagnostics.ActivitySamplingResult">
505       <summary>Enumeration values used by <see cref="T:System.Diagnostics.ActivityListener" /> to indicate the amount of data to collect for the related <see cref="T:System.Diagnostics.Activity" />. Requesting more data causes a greater performance overhead.</summary>
506     </member>
507     <member name="F:System.Diagnostics.ActivitySamplingResult.AllData">
508       <summary>The activity object should be populated with all the propagation information and also all other properties such as Links, Tags, and Events. Using this value causes <see cref="P:System.Diagnostics.Activity.IsAllDataRequested" /> to return <see langword="true" />.</summary>
509     </member>
510     <member name="F:System.Diagnostics.ActivitySamplingResult.AllDataAndRecorded">
511       <summary>The activity object should be populated the same as the <see cref="F:System.Diagnostics.ActivitySamplingResult.AllData" /> case. Additionally, Activity.Recorded is set to <see langword="true" />. For activities using the W3C trace ids, this sets a flag bit in the ID that will be propagated downstream requesting that the trace is recorded everywhere.</summary>
512     </member>
513     <member name="F:System.Diagnostics.ActivitySamplingResult.None">
514       <summary>The activity object does not need to be created.</summary>
515     </member>
516     <member name="F:System.Diagnostics.ActivitySamplingResult.PropagationData">
517       <summary>The activity object needs to be created. It will have a Name, a Source, an Id and Baggage. Other properties are unnecessary and will be ignored by this listener.</summary>
518     </member>
519     <member name="T:System.Diagnostics.ActivitySource">
520       <summary>Provides APIs to create and start <see cref="T:System.Diagnostics.Activity" /> objects and to register <see cref="T:System.Diagnostics.ActivityListener" /> objects to listen to the <see cref="T:System.Diagnostics.Activity" /> events.</summary>
521     </member>
522     <member name="M:System.Diagnostics.ActivitySource.#ctor(System.String,System.String)">
523       <summary>Constructs an activity source object with the specified <paramref name="name" />.</summary>
524       <param name="name">The name of the activity source object.</param>
525       <param name="version">The version of the component publishing the tracing info.</param>
526     </member>
527     <member name="M:System.Diagnostics.ActivitySource.AddActivityListener(System.Diagnostics.ActivityListener)">
528       <summary>Adds a listener to the activity starting and stopping events.</summary>
529       <param name="listener">The activity listener object to use for listening to the activity events.</param>
530     </member>
531     <member name="M:System.Diagnostics.ActivitySource.CreateActivity(System.String,System.Diagnostics.ActivityKind)">
532       <summary>Creates a new <see cref="T:System.Diagnostics.Activity" /> object if there is any listener to the Activity, returns <see langword="null" /> otherwise.</summary>
533       <param name="name">The operation name of the Activity</param>
534       <param name="kind">The <see cref="T:System.Diagnostics.ActivityKind" /></param>
535       <returns>The created <see cref="T:System.Diagnostics.Activity" /> object or <see langword="null" /> if there is no any event listener.</returns>
536     </member>
537     <member name="M:System.Diagnostics.ActivitySource.CreateActivity(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Collections.Generic.IEnumerable{System.Diagnostics.ActivityLink},System.Diagnostics.ActivityIdFormat)">
538       <summary>Creates a new <see cref="T:System.Diagnostics.Activity" /> object if there is any listener to the Activity, returns <see langword="null" /> otherwise.
539             If the Activity object is created, it will not automatically start. Callers will need to call <see cref="M:System.Diagnostics.Activity.Start" /> to start it.</summary>
540       <param name="name">The operation name of the Activity.</param>
541       <param name="kind">The <see cref="T:System.Diagnostics.ActivityKind" /></param>
542       <param name="parentContext">The parent <see cref="T:System.Diagnostics.ActivityContext" /> object to initialize the created Activity object with.</param>
543       <param name="tags">The optional tags list to initialize the created Activity object with.</param>
544       <param name="links">The optional <see cref="T:System.Diagnostics.ActivityLink" /> list to initialize the created Activity object with.</param>
545       <param name="idFormat">The default Id format to use.</param>
546       <returns>The created <see cref="T:System.Diagnostics.Activity" /> object or <see langword="null" /> if there is no any listener.</returns>
547     </member>
548     <member name="M:System.Diagnostics.ActivitySource.CreateActivity(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Collections.Generic.IEnumerable{System.Diagnostics.ActivityLink},System.Diagnostics.ActivityIdFormat)">
549       <summary>Creates a new <see cref="T:System.Diagnostics.Activity" /> object if there is any listener to the Activity, returns <see langword="null" /> otherwise.</summary>
550       <param name="name">The operation name of the Activity.</param>
551       <param name="kind">The <see cref="T:System.Diagnostics.ActivityKind" /></param>
552       <param name="parentId">The parent Id to initialize the created Activity object with.</param>
553       <param name="tags">The optional tags list to initialize the created Activity object with.</param>
554       <param name="links">The optional <see cref="T:System.Diagnostics.ActivityLink" /> list to initialize the created Activity object with.</param>
555       <param name="idFormat">The default Id format to use.</param>
556       <returns>The created <see cref="T:System.Diagnostics.Activity" /> object or <see langword="null" /> if there is no any listener.</returns>
557     </member>
558     <member name="M:System.Diagnostics.ActivitySource.Dispose">
559       <summary>Disposes the activity source object, removes the current instance from the global list, and empties the listeners list.</summary>
560     </member>
561     <member name="M:System.Diagnostics.ActivitySource.HasListeners">
562       <summary>Checks if there are any listeners for this activity source.</summary>
563       <returns>
564         <see langword="true" /> if there is a listener registered for this activity source; otherwise, <see langword="false" />.</returns>
565     </member>
566     <member name="M:System.Diagnostics.ActivitySource.StartActivity(System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Collections.Generic.IEnumerable{System.Diagnostics.ActivityLink},System.DateTimeOffset,System.String)">
567       <summary>Creates and starts a new <see cref="T:System.Diagnostics.Activity" /> object if there is any listener to the Activity events, returns <see langword="null" /> otherwise.</summary>
568       <param name="kind">The <see cref="T:System.Diagnostics.ActivityKind" /></param>
569       <param name="parentContext">The parent <see cref="T:System.Diagnostics.ActivityContext" /> object to initialize the created Activity object with.</param>
570       <param name="tags">The optional tags list to initialize the created Activity object with.</param>
571       <param name="links">The optional <see cref="T:System.Diagnostics.ActivityLink" /> list to initialize the created Activity object with.</param>
572       <param name="startTime">The optional start timestamp to set on the created Activity object.</param>
573       <param name="name">The operation name of the Activity.</param>
574       <returns>The created <see cref="T:System.Diagnostics.Activity" /> object or <see langword="null" /> if there is no any listener.</returns>
575     </member>
576     <member name="M:System.Diagnostics.ActivitySource.StartActivity(System.String,System.Diagnostics.ActivityKind)">
577       <summary>Creates a new activity if there are active listeners for it, using the specified name and activity kind.</summary>
578       <param name="name">The operation name of the activity.</param>
579       <param name="kind">The activity kind.</param>
580       <returns>The created activity object, if it had active listeners, or <see langword="null" /> if it has no event listeners.</returns>
581     </member>
582     <member name="M:System.Diagnostics.ActivitySource.StartActivity(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Collections.Generic.IEnumerable{System.Diagnostics.ActivityLink},System.DateTimeOffset)">
583       <summary>Creates a new activity if there are active listeners for it, using the specified name, activity kind, parent activity context, tags, optional activity link and optional start time.</summary>
584       <param name="name">The operation name of the activity.</param>
585       <param name="kind">The activity kind.</param>
586       <param name="parentContext">The parent <see cref="T:System.Diagnostics.ActivityContext" /> object to initialize the created activity object with.</param>
587       <param name="tags">The optional tags list to initialize the created activity object with.</param>
588       <param name="links">The optional <see cref="T:System.Diagnostics.ActivityLink" /> list to initialize the created activity object with.</param>
589       <param name="startTime">The optional start timestamp to set on the created activity object.</param>
590       <returns>The created activity object, if it had active listeners, or <see langword="null" /> if it has no event listeners.</returns>
591     </member>
592     <member name="M:System.Diagnostics.ActivitySource.StartActivity(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Collections.Generic.IEnumerable{System.Diagnostics.ActivityLink},System.DateTimeOffset)">
593       <summary>Creates a new activity if there are active listeners for it, using the specified name, activity kind, parent Id, tags, optional activity links and optional start time.</summary>
594       <param name="name">The operation name of the activity.</param>
595       <param name="kind">The activity kind.</param>
596       <param name="parentId">The parent Id to initialize the created activity object with.</param>
597       <param name="tags">The optional tags list to initialize the created activity object with.</param>
598       <param name="links">The optional <see cref="T:System.Diagnostics.ActivityLink" /> list to initialize the created activity object with.</param>
599       <param name="startTime">The optional start timestamp to set on the created activity object.</param>
600       <returns>The created activity object, if it had active listeners, or <see langword="null" /> if it has no event listeners.</returns>
601     </member>
602     <member name="P:System.Diagnostics.ActivitySource.Name">
603       <summary>Returns the activity source name.</summary>
604       <returns>A string that represents the activity source name.</returns>
605     </member>
606     <member name="P:System.Diagnostics.ActivitySource.Version">
607       <summary>Returns the activity source version.</summary>
608       <returns>A string that represents the activity source version.</returns>
609     </member>
610     <member name="T:System.Diagnostics.ActivitySpanId">
611       <summary>Represents a <see cref="P:System.Diagnostics.Activity.SpanId" /> formatted based on a W3C standard.</summary>
612     </member>
613     <member name="M:System.Diagnostics.ActivitySpanId.CopyTo(System.Span{System.Byte})">
614       <summary>Copies the 8 bytes of the current <see cref="T:System.Diagnostics.ActivitySpanId" /> to a specified span.</summary>
615       <param name="destination">The span to which the 8 bytes of the SpanID are to be copied.</param>
616     </member>
617     <member name="M:System.Diagnostics.ActivitySpanId.CreateFromBytes(System.ReadOnlySpan{System.Byte})">
618       <summary>Creates a new <see cref="T:System.Diagnostics.ActivitySpanId" /> value from a read-only span of eight bytes.</summary>
619       <param name="idData">A read-only span of eight bytes.</param>
620       <exception cref="T:System.ArgumentOutOfRangeException">
621         <paramref name="idData" /> does not contain eight bytes.</exception>
622       <returns>The new span ID.</returns>
623     </member>
624     <member name="M:System.Diagnostics.ActivitySpanId.CreateFromString(System.ReadOnlySpan{System.Char})">
625       <summary>Creates a new <see cref="T:System.Diagnostics.ActivitySpanId" /> value from a read-only span of 16 hexadecimal characters.</summary>
626       <param name="idData">A span that contains 16 hexadecimal characters.</param>
627       <exception cref="T:System.ArgumentOutOfRangeException">
628         <paramref name="idData" /> does not contain 16 hexadecimal characters.
629
630 -or-
631           
632 The characters in <paramref name="idData" /> are not all lower-case hexadecimal characters or all zeros.</exception>
633       <returns>The new span ID.</returns>
634     </member>
635     <member name="M:System.Diagnostics.ActivitySpanId.CreateFromUtf8String(System.ReadOnlySpan{System.Byte})">
636       <summary>Creates a new <see cref="T:System.Diagnostics.ActivitySpanId" /> value from a read-only span of UTF8-encoded bytes.</summary>
637       <param name="idData">A read-only span of UTF8-encoded bytes.</param>
638       <returns>The new span ID.</returns>
639     </member>
640     <member name="M:System.Diagnostics.ActivitySpanId.CreateRandom">
641       <summary>Creates a new <see cref="T:System.Diagnostics.ActivitySpanId" /> based on a random number (that is very likely to be unique).</summary>
642       <returns>The new span ID.</returns>
643     </member>
644     <member name="M:System.Diagnostics.ActivitySpanId.Equals(System.Diagnostics.ActivitySpanId)">
645       <summary>Determines whether this instance and the specified <see cref="T:System.Diagnostics.ActivitySpanId" /> instance have the same value.</summary>
646       <param name="spanId">The instance to compare.</param>
647       <returns>
648         <see langword="true" /> if <paramref name="spanId" /> has the same hex value as the current instance; otherwise, <see langword="false" />.</returns>
649     </member>
650     <member name="M:System.Diagnostics.ActivitySpanId.Equals(System.Object)">
651       <summary>the current instance and a specified object, which also must be an <see cref="T:System.Diagnostics.ActivitySpanId" /> instance, have the same value.</summary>
652       <param name="obj">The object to compare.</param>
653       <returns>
654         <see langword="true" /> if <paramref name="obj" /> is an instance of <see cref="T:System.Diagnostics.ActivitySpanId" /> and has the same hex value as the current instance; otherwise, <see langword="false" />.</returns>
655     </member>
656     <member name="M:System.Diagnostics.ActivitySpanId.GetHashCode">
657       <summary>Returns the hash code of the SpanId.</summary>
658       <returns>The hash code of the SpanId.</returns>
659     </member>
660     <member name="M:System.Diagnostics.ActivitySpanId.op_Equality(System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivitySpanId)">
661       <summary>Determines whether two specified <see cref="T:System.Diagnostics.ActivitySpanId" /> instances have the same value.</summary>
662       <param name="spanId1">The first instance to compare.</param>
663       <param name="spandId2">The second instance to compare.</param>
664       <returns>
665         <see langword="true" /> if the SpanId of <paramref name="spanId1" /> is the same as the SpanId of <paramref name="spandId2" />; otherwise, <see langword="false" />.</returns>
666     </member>
667     <member name="M:System.Diagnostics.ActivitySpanId.op_Inequality(System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivitySpanId)">
668       <summary>Determine whether two specified <see cref="T:System.Diagnostics.ActivitySpanId" /> instances have unequal values.</summary>
669       <param name="spanId1">The first instance to compare.</param>
670       <param name="spandId2">The second instance to compare.</param>
671       <returns>
672         <see langword="true" /> if the SpanId of <paramref name="spanId1" /> is different from the SpanId of <paramref name="spandId2" />; otherwise, <see langword="false" />.</returns>
673     </member>
674     <member name="M:System.Diagnostics.ActivitySpanId.ToHexString">
675       <summary>Returns a 16-character hexadecimal string that represents this span ID.</summary>
676       <returns>The 16-character hexadecimal string representation of this span ID.</returns>
677     </member>
678     <member name="M:System.Diagnostics.ActivitySpanId.ToString">
679       <summary>Returns a 16-character hexadecimal string that represents this span ID.</summary>
680       <returns>The 16-character hexadecimal string representation of this span ID.</returns>
681     </member>
682     <member name="T:System.Diagnostics.ActivityStatusCode">
683       <summary>Define the status code of the Activity which indicate the status of the instrumented operation.</summary>
684     </member>
685     <member name="F:System.Diagnostics.ActivityStatusCode.Error">
686       <summary>Status code indicating an error is encountered during the operation.</summary>
687     </member>
688     <member name="F:System.Diagnostics.ActivityStatusCode.Ok">
689       <summary>Status code indicating the operation has been validated and completed successfully.</summary>
690     </member>
691     <member name="F:System.Diagnostics.ActivityStatusCode.Unset">
692       <summary>Unset status code is the default value indicating the status code is not initialized.</summary>
693     </member>
694     <member name="T:System.Diagnostics.ActivityTagsCollection">
695       <summary>ActivityTagsCollection is a collection class used to store tracing tags.
696
697 This collection will be used with classes like <see cref="T:System.Diagnostics.ActivityEvent" /> and <see cref="T:System.Diagnostics.ActivityLink" />.
698
699 This collection behaves as follows:
700 - The collection items will be ordered according to how they are added.
701 - Don't allow duplication of items with the same key.
702 - When using the indexer to store an item in the collection:
703     - If the item has a key that previously existed in the collection and the value is <see langword="null" />, the collection item matching the key will be removed from the collection.
704     - If the item has a key that previously existed in the collection and the value is not <see langword="null" />, the new item value will replace the old value stored in the collection.
705     - Otherwise, the item will be added to the collection.
706 - Add method will add a new item to the collection if an item doesn't already exist with the same key. Otherwise, it will throw an exception.</summary>
707     </member>
708     <member name="M:System.Diagnostics.ActivityTagsCollection.#ctor">
709       <summary>Create a new instance of the collection.</summary>
710     </member>
711     <member name="M:System.Diagnostics.ActivityTagsCollection.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
712       <summary>Create a new instance of the collection and store the input list items in the collection.</summary>
713       <param name="list">Initial list to store in the collection.</param>
714     </member>
715     <member name="M:System.Diagnostics.ActivityTagsCollection.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
716       <summary>Adds an item to the collection.</summary>
717       <param name="item">Key and value pair of the tag to add to the collection.</param>
718       <exception cref="T:System.InvalidOperationException">
719         <paramref name="item" /> already exists in the list.</exception>
720       <exception cref="T:System.ArgumentNullException">
721         <paramref name="item" /> is <see langword="null" />.</exception>
722     </member>
723     <member name="M:System.Diagnostics.ActivityTagsCollection.Add(System.String,System.Object)">
724       <summary>Adds a tag with the provided key and value to the collection. This collection doesn't allow adding two tags with the same key.</summary>
725       <param name="key">The tag key.</param>
726       <param name="value">The tag value.</param>
727     </member>
728     <member name="M:System.Diagnostics.ActivityTagsCollection.Clear">
729       <summary>Removes all items from the collection.</summary>
730     </member>
731     <member name="M:System.Diagnostics.ActivityTagsCollection.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
732       <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
733       <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
734       <returns>
735         <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
736     </member>
737     <member name="M:System.Diagnostics.ActivityTagsCollection.ContainsKey(System.String)">
738       <summary>Determines whether the collection contains an element with the specified key.</summary>
739       <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2" />.</param>
740       <returns>
741         <see langword="true" /> if the collection contains tag with that key. <see langword="false" /> otherwise.</returns>
742     </member>
743     <member name="M:System.Diagnostics.ActivityTagsCollection.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
744       <summary>Copies the elements of the collection to an array, starting at a particular array index.</summary>
745       <param name="array">The array that is the destination of the elements copied from collection.</param>
746       <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
747     </member>
748     <member name="M:System.Diagnostics.ActivityTagsCollection.GetEnumerator">
749       <summary>Returns an enumerator that iterates through the collection.</summary>
750       <returns>An enumerator for the <see langword="ActivityTagsCollection" />.</returns>
751     </member>
752     <member name="M:System.Diagnostics.ActivityTagsCollection.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
753       <summary>Removes the first occurrence of a specific item from the collection.</summary>
754       <param name="item">The tag key value pair to remove.</param>
755       <returns>
756         <see langword="true" /> if item was successfully removed from the collection; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if item is not found in the original collection.</returns>
757     </member>
758     <member name="M:System.Diagnostics.ActivityTagsCollection.Remove(System.String)">
759       <summary>Removes the tag with the specified key from the collection.</summary>
760       <param name="key">The tag key.</param>
761       <returns>
762         <see langword="true" /> if the item existed and removed. <see langword="false" /> otherwise.</returns>
763     </member>
764     <member name="M:System.Diagnostics.ActivityTagsCollection.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String@System#Object}}#GetEnumerator">
765       <summary>Returns an enumerator that iterates through the collection.</summary>
766       <returns>An enumerator that can be used to iterate through the collection.</returns>
767     </member>
768     <member name="M:System.Diagnostics.ActivityTagsCollection.System#Collections#IEnumerable#GetEnumerator">
769       <summary>Returns an enumerator that iterates through the collection.</summary>
770       <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
771     </member>
772     <member name="M:System.Diagnostics.ActivityTagsCollection.TryGetValue(System.String,System.Object@)">
773       <summary>Gets the value associated with the specified key.</summary>
774       <param name="key">The tag key.</param>
775       <param name="value">The tag value.</param>
776       <returns>When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.</returns>
777     </member>
778     <member name="P:System.Diagnostics.ActivityTagsCollection.Count">
779       <summary>Gets the number of elements contained in the collection.</summary>
780     </member>
781     <member name="P:System.Diagnostics.ActivityTagsCollection.IsReadOnly">
782       <summary>Gets a value indicating whether the collection is read-only. This always returns <see langword="false" />.</summary>
783       <returns>Always returns <see langword="false" />.</returns>
784     </member>
785     <member name="P:System.Diagnostics.ActivityTagsCollection.Item(System.String)">
786       <summary>Gets or sets a specified collection item.
787         
788         When setting a value to this indexer property, the following behavior is observed:
789 - If the key previously existed in the collection and the value is <see langword="null" />, the collection item matching the key will get removed from the collection.
790 - If the key previously existed in the collection and the value is not <see langword="null" />, the value will replace the old value stored in the collection.
791 - Otherwise, a new item will get added to the collection.</summary>
792       <param name="key">The key of the value to get or set.</param>
793       <returns>The object mapped to the key.</returns>
794     </member>
795     <member name="P:System.Diagnostics.ActivityTagsCollection.Keys">
796       <summary>Get the list of the keys of all stored tags.</summary>
797     </member>
798     <member name="P:System.Diagnostics.ActivityTagsCollection.Values">
799       <summary>Get the list of the values of all stored tags.</summary>
800     </member>
801     <member name="T:System.Diagnostics.ActivityTagsCollection.Enumerator">
802       <summary>Enumerates the elements of an <see langword="ActivityTagsCollection" />.</summary>
803     </member>
804     <member name="M:System.Diagnostics.ActivityTagsCollection.Enumerator.Dispose">
805       <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
806     </member>
807     <member name="M:System.Diagnostics.ActivityTagsCollection.Enumerator.MoveNext">
808       <summary>Advances the enumerator to the next element of the collection.</summary>
809       <returns>
810         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
811     </member>
812     <member name="M:System.Diagnostics.ActivityTagsCollection.Enumerator.System#Collections#IEnumerator#Reset">
813       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
814     </member>
815     <member name="P:System.Diagnostics.ActivityTagsCollection.Enumerator.Current">
816       <summary>Gets the element in the collection at the current position of the enumerator.</summary>
817       <returns>The element in the collection at the current position of the enumerator.</returns>
818     </member>
819     <member name="P:System.Diagnostics.ActivityTagsCollection.Enumerator.System#Collections#IEnumerator#Current">
820       <summary>Gets the element in the collection at the current position of the enumerator.</summary>
821       <returns>The element in the collection at the current position of the enumerator.</returns>
822     </member>
823     <member name="T:System.Diagnostics.ActivityTraceFlags">
824       <summary>Specifies flags defined by the W3C standard that are associated with an activity.</summary>
825     </member>
826     <member name="F:System.Diagnostics.ActivityTraceFlags.None">
827       <summary>The activity has not been marked.</summary>
828     </member>
829     <member name="F:System.Diagnostics.ActivityTraceFlags.Recorded">
830       <summary>The activity (or more likely its parents) has been marked as useful to record.</summary>
831     </member>
832     <member name="T:System.Diagnostics.ActivityTraceId">
833       <summary>Represents a <see cref="P:System.Diagnostics.Activity.TraceId" /> whose format is based on a W3C standard.</summary>
834     </member>
835     <member name="M:System.Diagnostics.ActivityTraceId.CopyTo(System.Span{System.Byte})">
836       <summary>Copies the 16 bytes of the current <see cref="T:System.Diagnostics.ActivityTraceId" /> to a specified span.</summary>
837       <param name="destination">The span to which the 16 bytes of the trace ID are to be copied.</param>
838     </member>
839     <member name="M:System.Diagnostics.ActivityTraceId.CreateFromBytes(System.ReadOnlySpan{System.Byte})">
840       <summary>Creates a new <see cref="T:System.Diagnostics.ActivityTraceId" /> value from a read-only span of 16 bytes.</summary>
841       <param name="idData">A read-only span of 16 bytes.</param>
842       <exception cref="T:System.ArgumentOutOfRangeException">
843         <paramref name="idData" /> does not contain eight bytes.</exception>
844       <returns>The new trace ID.</returns>
845     </member>
846     <member name="M:System.Diagnostics.ActivityTraceId.CreateFromString(System.ReadOnlySpan{System.Char})">
847       <summary>Creates a new <see cref="T:System.Diagnostics.ActivityTraceId" /> value from a read-only span of 32 hexadecimal characters.</summary>
848       <param name="idData">A span that contains 32 hexadecimal characters.</param>
849       <exception cref="T:System.ArgumentOutOfRangeException">
850         <paramref name="idData" /> does not contain 16 hexadecimal characters.
851
852 -or-
853
854 The characters in <paramref name="idData" /> are not all lower-case hexadecimal characters or all zeros.</exception>
855       <returns>The new trace ID.</returns>
856     </member>
857     <member name="M:System.Diagnostics.ActivityTraceId.CreateFromUtf8String(System.ReadOnlySpan{System.Byte})">
858       <summary>Creates a new <see cref="T:System.Diagnostics.ActivityTraceId" /> value from a read-only span of UTF8-encoded bytes.</summary>
859       <param name="idData">A read-only span of UTF8-encoded bytes.</param>
860       <returns>The new trace ID.</returns>
861     </member>
862     <member name="M:System.Diagnostics.ActivityTraceId.CreateRandom">
863       <summary>Creates a new <see cref="T:System.Diagnostics.ActivityTraceId" /> based on a random number (that is very likely to be unique).</summary>
864       <returns>The new <see cref="T:System.Diagnostics.ActivityTraceId" />.</returns>
865     </member>
866     <member name="M:System.Diagnostics.ActivityTraceId.Equals(System.Diagnostics.ActivityTraceId)">
867       <summary>Determines whether the current instance and a specified <see cref="T:System.Diagnostics.ActivityTraceId" /> are equal.</summary>
868       <param name="traceId">The instance to compare.</param>
869       <returns>
870         <see langword="true" /> if <paramref name="traceId" /> has the same hex value as the current instance; otherwise, <see langword="false" />.</returns>
871     </member>
872     <member name="M:System.Diagnostics.ActivityTraceId.Equals(System.Object)">
873       <summary>Determines whether this instance and a specified object, which must also be an <see cref="T:System.Diagnostics.ActivityTraceId" /> instance, have the same value.</summary>
874       <param name="obj">The object to compare.</param>
875       <returns>
876         <see langword="true" /> if <paramref name="obj" /> is an instance of <see cref="T:System.Diagnostics.ActivityTraceId" /> and has the same hex value as the current instance; otherwise, <see langword="false" />.</returns>
877     </member>
878     <member name="M:System.Diagnostics.ActivityTraceId.GetHashCode">
879       <summary>Returns the hash code of the TraceId.</summary>
880       <returns>The hash code of the TraceId.</returns>
881     </member>
882     <member name="M:System.Diagnostics.ActivityTraceId.op_Equality(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivityTraceId)">
883       <summary>Determines whether two specified <see cref="T:System.Diagnostics.ActivityTraceId" /> instances have the same value.</summary>
884       <param name="traceId1">The first instance to compare.</param>
885       <param name="traceId2">The second instance to compare.</param>
886       <returns>
887         <see langword="true" /> if the TraceId of <paramref name="traceId1" /> is the same as the TraceId of <paramref name="traceId2" />; otherwise, <see langword="false" />.</returns>
888     </member>
889     <member name="M:System.Diagnostics.ActivityTraceId.op_Inequality(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivityTraceId)">
890       <summary>Determines whether two specified <see cref="T:System.Diagnostics.ActivityTraceId" /> instances have the same value.</summary>
891       <param name="traceId1">The first instance to compare.</param>
892       <param name="traceId2">The second instance to compare.</param>
893       <returns>
894         <see langword="true" /> if the TraceId of <paramref name="traceId1" /> is different from the TraceId of <paramref name="traceId2" />; otherwise, <see langword="false" />.</returns>
895     </member>
896     <member name="M:System.Diagnostics.ActivityTraceId.ToHexString">
897       <summary>Returns a 16-character hexadecimal string that represents this span ID.</summary>
898       <returns>The 32-character hexadecimal string representation of this trace ID.</returns>
899     </member>
900     <member name="M:System.Diagnostics.ActivityTraceId.ToString">
901       <summary>Returns a 32-character hexadecimal string that represents this trace ID.</summary>
902       <returns>The 32-character hexadecimal string representation of this trace ID.</returns>
903     </member>
904     <member name="T:System.Diagnostics.DiagnosticListener">
905       <summary>Provides an implementation of the abstract <see cref="T:System.Diagnostics.DiagnosticSource" /> class that represents a named place to which a source sends its information (events).</summary>
906     </member>
907     <member name="M:System.Diagnostics.DiagnosticListener.#ctor(System.String)">
908       <summary>Creates a new <see cref="T:System.Diagnostics.DiagnosticListener" />.</summary>
909       <param name="name">The name of this <see cref="T:System.Diagnostics.DiagnosticListener" />.</param>
910     </member>
911     <member name="M:System.Diagnostics.DiagnosticListener.Dispose">
912       <summary>Disposes the NotificationListeners.</summary>
913     </member>
914     <member name="M:System.Diagnostics.DiagnosticListener.IsEnabled">
915       <summary>Determines whether there are any registered subscribers.</summary>
916       <returns>
917         <see langword="true" /> if there are any registered subscribers, <see langword="false" /> otherwise.</returns>
918     </member>
919     <member name="M:System.Diagnostics.DiagnosticListener.IsEnabled(System.String)">
920       <summary>Checks whether the <see cref="T:System.Diagnostics.DiagnosticListener" /> is enabled.</summary>
921       <param name="name">The name of the event to check.</param>
922       <returns>
923         <see langword="true" /> if notifications are enabled; otherwise, <see langword="false" />.</returns>
924     </member>
925     <member name="M:System.Diagnostics.DiagnosticListener.IsEnabled(System.String,System.Object,System.Object)">
926       <summary>Checks if any subscriber to the diagnostic events is interested in receiving events with this name. Subscribers indicate their interest using a delegate provided in <see cref="Overload:System.Diagnostics.DiagnosticListener.Subscribe" />.</summary>
927       <param name="name">The name of the event to check.</param>
928       <param name="arg1">The object that represents a context.</param>
929       <param name="arg2">The object that represents a context.</param>
930       <returns>
931         <see langword="true" /> if it is enabled, <see langword="false" /> otherwise.</returns>
932     </member>
933     <member name="M:System.Diagnostics.DiagnosticListener.OnActivityExport(System.Diagnostics.Activity,System.Object)">
934       <summary>Invokes the OnActivityExport method of all the subscribers.</summary>
935       <param name="activity">The activity affected by an external event.</param>
936       <param name="payload">An object that represents the outgoing request.</param>
937     </member>
938     <member name="M:System.Diagnostics.DiagnosticListener.OnActivityImport(System.Diagnostics.Activity,System.Object)">
939       <summary>Invokes the OnActivityImport method of all the subscribers.</summary>
940       <param name="activity">The activity affected by an external event.</param>
941       <param name="payload">An object that represents the incoming request.</param>
942     </member>
943     <member name="M:System.Diagnostics.DiagnosticListener.Subscribe(System.IObserver{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
944       <summary>Adds a subscriber.</summary>
945       <param name="observer">A subscriber.</param>
946       <returns>A reference to an interface that allows the listener to stop receiving notifications before the <see cref="T:System.Diagnostics.DiagnosticSource" /> has finished sending them.</returns>
947     </member>
948     <member name="M:System.Diagnostics.DiagnosticListener.Subscribe(System.IObserver{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Func{System.String,System.Object,System.Object,System.Boolean})">
949       <summary>Adds a subscriber, and optionally filters events based on their name and up to two context objects.</summary>
950       <param name="observer">A subscriber.</param>
951       <param name="isEnabled">A delegate that filters events based on their name and up to two context objects (which can be <see langword="null" />), or <see langword="null" /> to if an event filter is not desirable.</param>
952       <returns>A reference to an interface that allows the listener to stop receiving notifications before the <see cref="T:System.Diagnostics.DiagnosticSource" /> has finished sending them.</returns>
953     </member>
954     <member name="M:System.Diagnostics.DiagnosticListener.Subscribe(System.IObserver{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Func{System.String,System.Object,System.Object,System.Boolean},System.Action{System.Diagnostics.Activity,System.Object},System.Action{System.Diagnostics.Activity,System.Object})">
955       <summary>Adds a subscriber, optionally filters events based on their name and up to two context objects, and specifies methods to call when providers import or export activites from outside the process.</summary>
956       <param name="observer">A subscriber.</param>
957       <param name="isEnabled">A delegate that filters events based on their name and up to two context objects (which can be <see langword="null" />), or <see langword="null" /> if an event filter is not desirable.</param>
958       <param name="onActivityImport">An action delegate that receives the activity affected by an external event and an object that represents the incoming request.</param>
959       <param name="onActivityExport">An action delegate that receives the activity affected by an external event and an object that represents the outgoing request.</param>
960       <returns>A reference to an interface that allows the listener to stop receiving notifications before the <see cref="T:System.Diagnostics.DiagnosticSource" /> has finished sending them.</returns>
961     </member>
962     <member name="M:System.Diagnostics.DiagnosticListener.Subscribe(System.IObserver{System.Collections.Generic.KeyValuePair{System.String,System.Object}},System.Predicate{System.String})">
963       <summary>Adds a subscriber, and optionally filters events based on their name.</summary>
964       <param name="observer">A subscriber.</param>
965       <param name="isEnabled">A delegate that filters events based on their name (<see cref="T:System.String" />). The delegate should return <see langword="true" /> if the event is enabled.</param>
966       <returns>A reference to an interface that allows the listener to stop receiving notifications before the <see cref="T:System.Diagnostics.DiagnosticSource" /> has finished sending them.</returns>
967     </member>
968     <member name="M:System.Diagnostics.DiagnosticListener.ToString">
969       <summary>Returns a string with the name of this DiagnosticListener.</summary>
970       <returns>The name of this DiagnosticListener.</returns>
971     </member>
972     <member name="M:System.Diagnostics.DiagnosticListener.Write(System.String,System.Object)">
973       <summary>Logs a notification.</summary>
974       <param name="name">The name of the event to log.</param>
975       <param name="value">An object that represents the payload for the event.</param>
976     </member>
977     <member name="P:System.Diagnostics.DiagnosticListener.AllListeners">
978       <summary>Gets the collection of listeners for this <see cref="T:System.Diagnostics.DiagnosticListener" />.</summary>
979     </member>
980     <member name="P:System.Diagnostics.DiagnosticListener.Name">
981       <summary>Gets the name of this <see cref="T:System.Diagnostics.DiagnosticListener" />.</summary>
982       <returns>The name of the <see cref="T:System.Diagnostics.DiagnosticListener" />.</returns>
983     </member>
984     <member name="T:System.Diagnostics.DiagnosticSource">
985       <summary>An abstract class that allows code to be instrumented for production-time logging of rich data payloads for consumption within the process that was instrumented.</summary>
986     </member>
987     <member name="M:System.Diagnostics.DiagnosticSource.#ctor">
988       <summary>Initializes an instance of the <see cref="T:System.Diagnostics.DiagnosticSource" /> class.</summary>
989     </member>
990     <member name="M:System.Diagnostics.DiagnosticSource.IsEnabled(System.String)">
991       <summary>Verifies if the notification event is enabled.</summary>
992       <param name="name">The name of the event being written.</param>
993       <returns>
994         <see langword="true" /> if the notification event is enabled, <see langword="false" /> otherwise.</returns>
995     </member>
996     <member name="M:System.Diagnostics.DiagnosticSource.IsEnabled(System.String,System.Object,System.Object)">
997       <summary>Verifies it the notification event is enabled.</summary>
998       <param name="name">The name of the event being written.</param>
999       <param name="arg1">An object that represents the additional context for IsEnabled. Consumers should expect to receive <see langword="null" /> which may indicate that producer called pure IsEnabled(string) to check if consumer wants to get notifications for such events at all. Based on that, producer may call IsEnabled(string, object, object) again with non-<see langword="null" /> context.</param>
1000       <param name="arg2">Optional. An object that represents the additional context for IsEnabled. <see langword="null" /> by default. Consumers should expect to receive <see langword="null" /> which may indicate that producer called pure IsEnabled(string) or producer passed all necessary context in <paramref name="arg1" />.</param>
1001       <returns>
1002         <see langword="true" /> if the notification event is enabled, <see langword="false" /> otherwise.</returns>
1003     </member>
1004     <member name="M:System.Diagnostics.DiagnosticSource.OnActivityExport(System.Diagnostics.Activity,System.Object)">
1005       <summary>Transfers state from an activity to some event or operation, such as an outgoing HTTP request, that will occur outside the process.</summary>
1006       <param name="activity">The activity affected by an external event.</param>
1007       <param name="payload">An object that represents the outgoing request.</param>
1008     </member>
1009     <member name="M:System.Diagnostics.DiagnosticSource.OnActivityImport(System.Diagnostics.Activity,System.Object)">
1010       <summary>Transfers state to an activity from some event or operation, such as an incoming request, that occurred outside the process.</summary>
1011       <param name="activity">The activity affected by an external event.</param>
1012       <param name="payload">A payload that represents the incoming request.</param>
1013     </member>
1014     <member name="M:System.Diagnostics.DiagnosticSource.StartActivity(System.Diagnostics.Activity,System.Object)">
1015       <summary>Starts an <see cref="T:System.Diagnostics.Activity" /> and writes a start event.</summary>
1016       <param name="activity">The <see cref="T:System.Diagnostics.Activity" /> to be started.</param>
1017       <param name="args">An object that represent the value being passed as a payload for the event.</param>
1018       <returns>The started activity for convenient chaining.</returns>
1019     </member>
1020     <member name="M:System.Diagnostics.DiagnosticSource.StopActivity(System.Diagnostics.Activity,System.Object)">
1021       <summary>Stops the given <see cref="T:System.Diagnostics.Activity" />, maintains the global <see cref="P:System.Diagnostics.Activity.Current" /> activity, and notifies consumers that the <see cref="T:System.Diagnostics.Activity" /> was stopped.</summary>
1022       <param name="activity">The activity to be stopped.</param>
1023       <param name="args">An object that represents the value passed as a payload for the event.</param>
1024     </member>
1025     <member name="M:System.Diagnostics.DiagnosticSource.Write(System.String,System.Object)">
1026       <summary>Provides a generic way of logging complex payloads.</summary>
1027       <param name="name">The name of the event being written.</param>
1028       <param name="value">An object that represents the value being passed as a payload for the event. This is often an anonymous type which contains several sub-values.</param>
1029     </member>
1030     <member name="T:System.Diagnostics.DistributedContextPropagator">
1031       <summary>An implementation of <see cref="T:System.Diagnostics.DistributedContextPropagator" /> determines if and how distributed context information is encoded and decoded as it traverses the network.
1032             The encoding can be transported over any network protocol that supports string key-value pairs. For example, when using HTTP, each key-value pair is an HTTP header.
1033             <see cref="T:System.Diagnostics.DistributedContextPropagator" /> injects values into and extracts values from carriers as string key-value pairs.</summary>
1034     </member>
1035     <member name="M:System.Diagnostics.DistributedContextPropagator.#ctor">
1036       <summary>Initializes an instance of the <see cref="T:System.Diagnostics.DistributedContextPropagator" /> class. This constructor is protected and only meant to be called from parent classes.</summary>
1037     </member>
1038     <member name="M:System.Diagnostics.DistributedContextPropagator.CreateDefaultPropagator">
1039       <summary>Returns the default propagator object that <see cref="P:System.Diagnostics.DistributedContextPropagator.Current" /> will be initialized with.</summary>
1040       <returns>An instance of the <see cref="T:System.Diagnostics.DistributedContextPropagator" /> class.</returns>
1041     </member>
1042     <member name="M:System.Diagnostics.DistributedContextPropagator.CreateNoOutputPropagator">
1043       <summary>Returns a propagator that does not transmit any distributed context information in outbound network messages.</summary>
1044       <returns>An instance of the <see cref="T:System.Diagnostics.DistributedContextPropagator" /> class.</returns>
1045     </member>
1046     <member name="M:System.Diagnostics.DistributedContextPropagator.CreatePassThroughPropagator">
1047       <summary>Returns a propagator that attempts to act transparently, emitting the same data on outbound network requests that was received on the inbound request.
1048             When encoding the outbound message, this propagator uses information from the request's root Activity, ignoring any intermediate Activities that may have been created while processing the request.</summary>
1049       <returns>An instance of the <see cref="T:System.Diagnostics.DistributedContextPropagator" /> class.</returns>
1050     </member>
1051     <member name="M:System.Diagnostics.DistributedContextPropagator.ExtractBaggage(System.Object,System.Diagnostics.DistributedContextPropagator.PropagatorGetterCallback)">
1052       <summary>Extracts the baggage key-value pair list from an incoming request represented by the carrier. For example, from the headers of an HTTP request.</summary>
1053       <param name="carrier">The medium from which values will be read.</param>
1054       <param name="getter">The callback method to invoke to get the propagation baggage list from the carrier.</param>
1055       <returns>Returns the extracted key-value pair list from the carrier.</returns>
1056     </member>
1057     <member name="M:System.Diagnostics.DistributedContextPropagator.ExtractTraceIdAndState(System.Object,System.Diagnostics.DistributedContextPropagator.PropagatorGetterCallback,System.String@,System.String@)">
1058       <summary>Extracts the trace ID and trace state from an incoming request represented by the carrier. For example, from the headers of an HTTP request.</summary>
1059       <param name="carrier">The medium from which values will be read.</param>
1060       <param name="getter">The callback method to invoke to get the propagation trace ID and state from the carrier.</param>
1061       <param name="traceId">When this method returns, contains the trace ID extracted from the carrier.</param>
1062       <param name="traceState">When this method returns, contains the trace state extracted from the carrier.</param>
1063     </member>
1064     <member name="M:System.Diagnostics.DistributedContextPropagator.Inject(System.Diagnostics.Activity,System.Object,System.Diagnostics.DistributedContextPropagator.PropagatorSetterCallback)">
1065       <summary>Injects the trace values stroed in the <see cref="T:System.Diagnostics.Activity" /> object into a carrier. For example, into the headers of an HTTP request.</summary>
1066       <param name="activity">The Activity object has the distributed context to inject to the carrier.</param>
1067       <param name="carrier">The medium in which the distributed context will be stored.</param>
1068       <param name="setter">The callback method to invoke to set a named key-value pair on the carrier.</param>
1069     </member>
1070     <member name="P:System.Diagnostics.DistributedContextPropagator.Current">
1071       <summary>Get or set the process-wide propagator object to use as the current selected propagator.</summary>
1072       <returns>The currently selected process-wide propagator object.</returns>
1073     </member>
1074     <member name="P:System.Diagnostics.DistributedContextPropagator.Fields">
1075       <summary>Gets the set of field names this propagator is likely to read or write.</summary>
1076       <returns>The list of fields that will be used by the <code>DistributedContextPropagator</code>.</returns>
1077     </member>
1078     <member name="T:System.Diagnostics.DistributedContextPropagator.PropagatorGetterCallback">
1079       <summary>Represents the callback method that's used in the extract methods of propagators. The callback is invoked to look up the value of a named field.</summary>
1080       <param name="carrier">The medium used by propagators to read values from.</param>
1081       <param name="fieldName">The propagation field name.</param>
1082       <param name="fieldValue">When this method returns, contains the value that corresponds to <paramref name="fieldName" />. The value is non-<see langword="null" /> if there is only one value for the input field name.</param>
1083       <param name="fieldValues">When this method returns, contains a collection of values that correspond to <paramref name="fieldName" />. The value is non-<see langword="null" /> if there is more than one value for the input field name.</param>
1084     </member>
1085     <member name="T:System.Diagnostics.DistributedContextPropagator.PropagatorSetterCallback">
1086       <summary>Represents the callback method that's used in propagators' inject methods. This callback is invoked to set the value of a named field.
1087             Propagators may invoke it multiple times in order to set multiple fields.</summary>
1088       <param name="carrier">The medium used by propagators to write values to.</param>
1089       <param name="fieldName">The propagation field name.</param>
1090       <param name="fieldValue">The value corresponding to <paramref name="fieldName" />.</param>
1091     </member>
1092     <member name="T:System.Diagnostics.Metrics.Counter`1">
1093       <summary>Represents an instrument that supports adding non-negative values. For example, you might call counter.Add(1) each time a request is processed to track the total number of requests. Most metric viewers display counters using a rate (requests/sec), by default, but can also display a cumulative total.</summary>
1094       <typeparam name="T">The type that the counter represents.</typeparam>
1095     </member>
1096     <member name="M:System.Diagnostics.Metrics.Counter`1.Add(`0)">
1097       <summary>Record the increment value of the measurement.</summary>
1098       <param name="delta">The increment measurement.</param>
1099     </member>
1100     <member name="M:System.Diagnostics.Metrics.Counter`1.Add(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1101       <summary>Record the increment value of the measurement.</summary>
1102       <param name="delta">The increment measurement.</param>
1103       <param name="tag">A key-value pair tag associated with the measurement.</param>
1104     </member>
1105     <member name="M:System.Diagnostics.Metrics.Counter`1.Add(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1106       <summary>Record the increment value of the measurement.</summary>
1107       <param name="delta">The increment measurement.</param>
1108       <param name="tag1">A first key-value pair tag associated with the measurement.</param>
1109       <param name="tag2">A second key-value pair tag associated with the measurement.</param>
1110     </member>
1111     <member name="M:System.Diagnostics.Metrics.Counter`1.Add(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1112       <summary>Record the increment value of the measurement.</summary>
1113       <param name="delta">The increment measurement.</param>
1114       <param name="tag1">A first key-value pair tag associated with the measurement.</param>
1115       <param name="tag2">A second key-value pair tag associated with the measurement.</param>
1116       <param name="tag3">A third key-value pair tag associated with the measurement.</param>
1117     </member>
1118     <member name="M:System.Diagnostics.Metrics.Counter`1.Add(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object}[])">
1119       <summary>Record the increment value of the measurement.</summary>
1120       <param name="delta">The increment measurement.</param>
1121       <param name="tags">A list of key-value pair tags associated with the measurement.</param>
1122     </member>
1123     <member name="M:System.Diagnostics.Metrics.Counter`1.Add(`0,System.Diagnostics.TagList@)">
1124       <summary>Adds the increment value of the measurement.</summary>
1125       <param name="delta">The measurement value.</param>
1126       <param name="tagList">The tags associated with the measurement.</param>
1127     </member>
1128     <member name="M:System.Diagnostics.Metrics.Counter`1.Add(`0,System.ReadOnlySpan{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
1129       <summary>Record the increment value of the measurement.</summary>
1130       <param name="delta">The increment measurement.</param>
1131       <param name="tags">A span of key-value pair tags associated with the measurement.</param>
1132     </member>
1133     <member name="T:System.Diagnostics.Metrics.Histogram`1">
1134       <summary>Represents a metrics Instrument that can be used to report arbitrary values that are likely to be statistically meaningful.
1135             e.g. the request duration.
1136             Use <see cref="M:System.Diagnostics.Metrics.Meter.CreateHistogram``1(System.String,System.String,System.String)" /> method to create the Histogram object.</summary>
1137       <typeparam name="T">The type that the histogram represents.</typeparam>
1138     </member>
1139     <member name="M:System.Diagnostics.Metrics.Histogram`1.Record(`0)">
1140       <summary>Record a measurement value.</summary>
1141       <param name="value">The measurement value.</param>
1142     </member>
1143     <member name="M:System.Diagnostics.Metrics.Histogram`1.Record(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1144       <summary>Record a measurement value.</summary>
1145       <param name="value">The measurement value.</param>
1146       <param name="tag">A key-value pair tag associated with the measurement.</param>
1147     </member>
1148     <member name="M:System.Diagnostics.Metrics.Histogram`1.Record(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1149       <summary>Record a measurement value.</summary>
1150       <param name="value">The measurement value.</param>
1151       <param name="tag1">A first key-value pair tag associated with the measurement.</param>
1152       <param name="tag2">A second key-value pair tag associated with the measurement.</param>
1153     </member>
1154     <member name="M:System.Diagnostics.Metrics.Histogram`1.Record(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1155       <summary>Record a measurement value.</summary>
1156       <param name="value">The measurement value.</param>
1157       <param name="tag1">A first key-value pair tag associated with the measurement.</param>
1158       <param name="tag2">A second key-value pair tag associated with the measurement.</param>
1159       <param name="tag3">A third key-value pair tag associated with the measurement.</param>
1160     </member>
1161     <member name="M:System.Diagnostics.Metrics.Histogram`1.Record(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object}[])">
1162       <summary>Record a measurement value.</summary>
1163       <param name="value">The measurement value.</param>
1164       <param name="tags">A list of key-value pair tags associated with the measurement.</param>
1165     </member>
1166     <member name="M:System.Diagnostics.Metrics.Histogram`1.Record(`0,System.Diagnostics.TagList@)">
1167       <summary>Records a measurement value.</summary>
1168       <param name="value">The measurement value.</param>
1169       <param name="tagList">The tags associated with the measurement.</param>
1170     </member>
1171     <member name="M:System.Diagnostics.Metrics.Histogram`1.Record(`0,System.ReadOnlySpan{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
1172       <summary>Record a measurement value.</summary>
1173       <param name="value">The measurement value.</param>
1174       <param name="tags">A span of key-value pair tags associated with the measurement.</param>
1175     </member>
1176     <member name="T:System.Diagnostics.Metrics.Instrument">
1177       <summary>Base class of all Metrics Instrument classes</summary>
1178     </member>
1179     <member name="M:System.Diagnostics.Metrics.Instrument.#ctor(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String)">
1180       <summary>Protected constructor to initialize the common instrument properties like the meter, name, description, and unit.
1181             All classes extending Instrument need to call this constructor when constructing object of the extended class.</summary>
1182       <param name="meter">The meter that created the instrument.</param>
1183       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1184       <param name="unit">Optional instrument unit of measurements.</param>
1185       <param name="description">Optional instrument description.</param>
1186     </member>
1187     <member name="M:System.Diagnostics.Metrics.Instrument.Publish">
1188       <summary>Publish is activating the instrument to start recording measurements and to allow listeners to start listening to such measurements.</summary>
1189     </member>
1190     <member name="P:System.Diagnostics.Metrics.Instrument.Description">
1191       <summary>Gets the instrument description.</summary>
1192     </member>
1193     <member name="P:System.Diagnostics.Metrics.Instrument.Enabled">
1194       <summary>Checks if there is any listeners for this instrument.</summary>
1195     </member>
1196     <member name="P:System.Diagnostics.Metrics.Instrument.IsObservable">
1197       <summary>A property tells if the instrument is an observable instrument.</summary>
1198     </member>
1199     <member name="P:System.Diagnostics.Metrics.Instrument.Meter">
1200       <summary>Gets the Meter which created the instrument.</summary>
1201     </member>
1202     <member name="P:System.Diagnostics.Metrics.Instrument.Name">
1203       <summary>Gets the instrument name.</summary>
1204     </member>
1205     <member name="P:System.Diagnostics.Metrics.Instrument.Unit">
1206       <summary>Gets the instrument unit of measurements.</summary>
1207     </member>
1208     <member name="T:System.Diagnostics.Metrics.Instrument`1">
1209       <summary>The base class for all non-observable instruments.</summary>
1210       <typeparam name="T">The type that the instrument represents.</typeparam>
1211     </member>
1212     <member name="M:System.Diagnostics.Metrics.Instrument`1.#ctor(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String)">
1213       <summary>Create the metrics instrument using the properties meter, name, description, and unit.
1214             All classes extending Instrument{T} need to call this constructor when constructing object of the extended class.</summary>
1215       <param name="meter">The meter that created the instrument.</param>
1216       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1217       <param name="unit">Optional instrument unit of measurements.</param>
1218       <param name="description">Optional instrument description.</param>
1219     </member>
1220     <member name="M:System.Diagnostics.Metrics.Instrument`1.RecordMeasurement(`0)">
1221       <summary>Record the measurement by notifying all <see cref="T:System.Diagnostics.Metrics.MeterListener" /> objects which listening to this instrument.</summary>
1222       <param name="measurement">The measurement value.</param>
1223     </member>
1224     <member name="M:System.Diagnostics.Metrics.Instrument`1.RecordMeasurement(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1225       <summary>Record the measurement by notifying all <see cref="T:System.Diagnostics.Metrics.MeterListener" /> objects which listening to this instrument.</summary>
1226       <param name="measurement">The measurement value.</param>
1227       <param name="tag">A key-value pair tag associated with the measurement.</param>
1228     </member>
1229     <member name="M:System.Diagnostics.Metrics.Instrument`1.RecordMeasurement(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1230       <summary>Record the measurement by notifying all <see cref="T:System.Diagnostics.Metrics.MeterListener" /> objects which listening to this instrument.</summary>
1231       <param name="measurement">The measurement value.</param>
1232       <param name="tag1">A first key-value pair tag associated with the measurement.</param>
1233       <param name="tag2">A second key-value pair tag associated with the measurement.</param>
1234     </member>
1235     <member name="M:System.Diagnostics.Metrics.Instrument`1.RecordMeasurement(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object},System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1236       <summary>Record the measurement by notifying all <see cref="T:System.Diagnostics.Metrics.MeterListener" /> objects which listening to this instrument.</summary>
1237       <param name="measurement">The measurement value.</param>
1238       <param name="tag1">A first key-value pair tag associated with the measurement.</param>
1239       <param name="tag2">A second key-value pair tag associated with the measurement.</param>
1240       <param name="tag3">A third key-value pair tag associated with the measurement.</param>
1241     </member>
1242     <member name="M:System.Diagnostics.Metrics.Instrument`1.RecordMeasurement(`0,System.Diagnostics.TagList@)">
1243       <summary>Records a measurement by notifying all <see cref="T:System.Diagnostics.Metrics.MeterListener" /> objects that are listening to this instrument.</summary>
1244       <param name="measurement">The measurement value.</param>
1245       <param name="tagList">The tags associated with the measurement.</param>
1246     </member>
1247     <member name="M:System.Diagnostics.Metrics.Instrument`1.RecordMeasurement(`0,System.ReadOnlySpan{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
1248       <summary>Record the measurement by notifying all <see cref="T:System.Diagnostics.Metrics.MeterListener" /> objects which listening to this instrument.</summary>
1249       <param name="measurement">The measurement value.</param>
1250       <param name="tags">A span of key-value pair tags associated with the measurement.</param>
1251     </member>
1252     <member name="T:System.Diagnostics.Metrics.Measurement`1">
1253       <summary>Stores one observed metrics value and its associated tags. This type is used by an Observable instrument's Observe() method when reporting current measurements.
1254             with the associated tags.</summary>
1255       <typeparam name="T">The type that the measurement represents.</typeparam>
1256     </member>
1257     <member name="M:System.Diagnostics.Metrics.Measurement`1.#ctor(`0)">
1258       <summary>Initializes a new instance of the Measurement using the value and the list of tags.</summary>
1259       <param name="value">The measurement value.</param>
1260     </member>
1261     <member name="M:System.Diagnostics.Metrics.Measurement`1.#ctor(`0,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
1262       <summary>Initializes a new instance of the Measurement using the value and the list of tags.</summary>
1263       <param name="value">The measurement value.</param>
1264       <param name="tags">The measurement associated tags list.</param>
1265     </member>
1266     <member name="M:System.Diagnostics.Metrics.Measurement`1.#ctor(`0,System.Collections.Generic.KeyValuePair{System.String,System.Object}[])">
1267       <summary>Initializes a new instance of the Measurement using the value and the list of tags.</summary>
1268       <param name="value">The measurement value.</param>
1269       <param name="tags">The measurement associated tags list.</param>
1270     </member>
1271     <member name="M:System.Diagnostics.Metrics.Measurement`1.#ctor(`0,System.ReadOnlySpan{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
1272       <summary>Initializes a new instance of the Measurement using the value and the list of tags.</summary>
1273       <param name="value">The measurement value.</param>
1274       <param name="tags">The measurement associated tags list.</param>
1275     </member>
1276     <member name="P:System.Diagnostics.Metrics.Measurement`1.Tags">
1277       <summary>Gets the measurement tags list.</summary>
1278     </member>
1279     <member name="P:System.Diagnostics.Metrics.Measurement`1.Value">
1280       <summary>Gets the measurement value.</summary>
1281     </member>
1282     <member name="T:System.Diagnostics.Metrics.MeasurementCallback`1">
1283       <summary>A delegate to represent the Meterlistener callbacks used in measurements recording operation.</summary>
1284       <param name="instrument">The <see cref="T:System.Diagnostics.Metrics.Instrument" /> that was responsible for sending the measurement.</param>
1285       <param name="measurement">The measurement value.</param>
1286       <param name="tags">A span of key-value pair tags associated with the measurement.</param>
1287       <param name="state">The state object originally passed to <see cref="M:System.Diagnostics.Metrics.MeterListener.EnableMeasurementEvents(System.Diagnostics.Metrics.Instrument,System.Object)" /> method.</param>
1288       <typeparam name="T">The type that the measurement represents.</typeparam>
1289     </member>
1290     <member name="T:System.Diagnostics.Metrics.Meter">
1291       <summary>Meter is the class responsible for creating and tracking the Instruments.</summary>
1292     </member>
1293     <member name="M:System.Diagnostics.Metrics.Meter.#ctor(System.String)">
1294       <summary>Initializes a new instance of the Meter using the meter name.</summary>
1295       <param name="name">The Meter name.</param>
1296     </member>
1297     <member name="M:System.Diagnostics.Metrics.Meter.#ctor(System.String,System.String)">
1298       <summary>Initializes a new instance of the Meter using the meter name and version.</summary>
1299       <param name="name">The Meter name.</param>
1300       <param name="version">The optional Meter version.</param>
1301     </member>
1302     <member name="M:System.Diagnostics.Metrics.Meter.CreateCounter``1(System.String,System.String,System.String)">
1303       <summary>Create a metrics Counter object.</summary>
1304       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1305       <param name="unit">Optional instrument unit of measurements.</param>
1306       <param name="description">Optional instrument description.</param>
1307       <typeparam name="T">The numerical type of the measurement.</typeparam>
1308       <returns>A new counter.</returns>
1309     </member>
1310     <member name="M:System.Diagnostics.Metrics.Meter.CreateHistogram``1(System.String,System.String,System.String)">
1311       <summary>Creates a Histogram, which is an instrument that can be used to report arbitrary values that are likely to be statistically meaningful. It is intended for statistics such as histograms, summaries, and percentile.</summary>
1312       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1313       <param name="unit">Optional instrument unit of measurements.</param>
1314       <param name="description">Optional instrument description.</param>
1315       <typeparam name="T">The numerical type of the measurement.</typeparam>
1316       <returns>A new histogram.</returns>
1317     </member>
1318     <member name="M:System.Diagnostics.Metrics.Meter.CreateObservableCounter``1(System.String,System.Func{``0},System.String,System.String)">
1319       <summary>Creates an ObservableCounter, which is an instrument that reports monotonically increasing values when the instrument is being observed.</summary>
1320       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1321       <param name="observeValue">The callback to call to get the measurements when <code>ObservableCounter{T}.Observe()</code> is called by <see cref="M:System.Diagnostics.Metrics.MeterListener.RecordObservableInstruments" />.</param>
1322       <param name="unit">Optional instrument unit of measurements.</param>
1323       <param name="description">Optional instrument description.</param>
1324       <typeparam name="T">The numerical type of the measurement..</typeparam>
1325       <returns>A new observable counter.</returns>
1326     </member>
1327     <member name="M:System.Diagnostics.Metrics.Meter.CreateObservableCounter``1(System.String,System.Func{System.Collections.Generic.IEnumerable{System.Diagnostics.Metrics.Measurement{``0}}},System.String,System.String)">
1328       <summary>Creates an ObservableCounter, which is an instrument that reports monotonically increasing values when the instrument is being observed.</summary>
1329       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1330       <param name="observeValues">The callback to call to get the measurements when <code>ObservableCounter{T}.Observe()</code> is called by <see cref="M:System.Diagnostics.Metrics.MeterListener.RecordObservableInstruments" />.</param>
1331       <param name="unit">Optional instrument unit of measurements.</param>
1332       <param name="description">Optional instrument description.</param>
1333       <typeparam name="T">The numerical type of the measurement.</typeparam>
1334       <returns>A new observable counter.</returns>
1335     </member>
1336     <member name="M:System.Diagnostics.Metrics.Meter.CreateObservableCounter``1(System.String,System.Func{System.Diagnostics.Metrics.Measurement{``0}},System.String,System.String)">
1337       <summary>Creates an ObservableCounter, which is an instrument that reports monotonically increasing values when the instrument is being observed.</summary>
1338       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1339       <param name="observeValue">The callback to call to get the measurements when <code>ObservableCounter{T}.Observe()</code> is called by <see cref="M:System.Diagnostics.Metrics.MeterListener.RecordObservableInstruments" /></param>
1340       <param name="unit">Optional instrument unit of measurements.</param>
1341       <param name="description">Optional instrument description.</param>
1342       <typeparam name="T">The numerical type of the measurement.</typeparam>
1343       <returns>A new observable counter.</returns>
1344     </member>
1345     <member name="M:System.Diagnostics.Metrics.Meter.CreateObservableGauge``1(System.String,System.Func{``0},System.String,System.String)">
1346       <summary>Creates an ObservableGauge, which is an asynchronous instrument that reports non-additive values when the instrument is being observed. An example of a non-additive value is the room temperature - it makes no sense to report the temperature value from multiple rooms and sum them up.</summary>
1347       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1348       <param name="observeValue">The callback to call to get the measurements when <code>ObservableCounter{T}.Observe()</code> is called by <see cref="M:System.Diagnostics.Metrics.MeterListener.RecordObservableInstruments" />.</param>
1349       <param name="unit">Optional instrument unit of measurements.</param>
1350       <param name="description">Optional instrument description.</param>
1351       <typeparam name="T">The numerical type of the measurement.</typeparam>
1352       <returns>A new observable gauge.</returns>
1353     </member>
1354     <member name="M:System.Diagnostics.Metrics.Meter.CreateObservableGauge``1(System.String,System.Func{System.Collections.Generic.IEnumerable{System.Diagnostics.Metrics.Measurement{``0}}},System.String,System.String)">
1355       <summary>Creates an ObservableGauge, which is an asynchronous instrument that reports non-additive values when the instrument is being observed. An example of a non-additive value is the room temperature - it makes no sense to report the temperature value from multiple rooms and sum them up.</summary>
1356       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1357       <param name="observeValues">The callback to call to get the measurements when <code>ObservableCounter{T}.Observe()</code> is called by <see cref="M:System.Diagnostics.Metrics.MeterListener.RecordObservableInstruments" />.</param>
1358       <param name="unit">Optional instrument unit of measurements.</param>
1359       <param name="description">Optional instrument description.</param>
1360       <typeparam name="T">The numerical type of the measurement.</typeparam>
1361       <returns>A new observable gauge.</returns>
1362     </member>
1363     <member name="M:System.Diagnostics.Metrics.Meter.CreateObservableGauge``1(System.String,System.Func{System.Diagnostics.Metrics.Measurement{``0}},System.String,System.String)">
1364       <summary>Creates an ObservableGauge, which is an asynchronous instrument that reports non-additive values when the instrument is being observed. An example of a non-additive value is the room temperature - it makes no sense to report the temperature value from multiple rooms and sum them up.</summary>
1365       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1366       <param name="observeValue">The callback to call to get the measurements when <code>ObservableCounter{T}.Observe()</code> is called by <see cref="M:System.Diagnostics.Metrics.MeterListener.RecordObservableInstruments" />.</param>
1367       <param name="unit">Optional instrument unit of measurements.</param>
1368       <param name="description">Optional instrument description.</param>
1369       <typeparam name="T">The numerical type of the measurement.</typeparam>
1370       <returns>A new observable gauge.</returns>
1371     </member>
1372     <member name="M:System.Diagnostics.Metrics.Meter.Dispose">
1373       <summary>Dispose the Meter which will disable all instruments created by this meter.</summary>
1374     </member>
1375     <member name="P:System.Diagnostics.Metrics.Meter.Name">
1376       <summary>Gets the Meter name.</summary>
1377       <returns>The Meter name</returns>
1378     </member>
1379     <member name="P:System.Diagnostics.Metrics.Meter.Version">
1380       <summary>Gets the Meter version.</summary>
1381       <returns>The Meter version.</returns>
1382     </member>
1383     <member name="T:System.Diagnostics.Metrics.MeterListener">
1384       <summary>MeterListener is class used to listen to the metrics instrument measurements recording.</summary>
1385     </member>
1386     <member name="M:System.Diagnostics.Metrics.MeterListener.#ctor">
1387       <summary>Creates a MeterListener object.</summary>
1388     </member>
1389     <member name="M:System.Diagnostics.Metrics.MeterListener.DisableMeasurementEvents(System.Diagnostics.Metrics.Instrument)">
1390       <summary>Stop listening to a specific instrument measurement recording.</summary>
1391       <param name="instrument">The instrument to stop listening to.</param>
1392       <returns>The state object originally passed to <see cref="M:System.Diagnostics.Metrics.MeterListener.EnableMeasurementEvents(System.Diagnostics.Metrics.Instrument,System.Object)" /> method.</returns>
1393     </member>
1394     <member name="M:System.Diagnostics.Metrics.MeterListener.Dispose">
1395       <summary>Disposes the listeners which will stop it from listening to any instrument.</summary>
1396     </member>
1397     <member name="M:System.Diagnostics.Metrics.MeterListener.EnableMeasurementEvents(System.Diagnostics.Metrics.Instrument,System.Object)">
1398       <summary>Start listening to a specific instrument measurement recording.</summary>
1399       <param name="instrument">The instrument to listen to.</param>
1400       <param name="state">A state object which will be passed back to the callback getting measurements events.</param>
1401     </member>
1402     <member name="M:System.Diagnostics.Metrics.MeterListener.RecordObservableInstruments">
1403       <summary>Calls all Observable instruments which the listener is listening to then calls <see cref="M:System.Diagnostics.Metrics.MeterListener.SetMeasurementEventCallback``1(System.Diagnostics.Metrics.MeasurementCallback{``0})" /> with every collected measurement.</summary>
1404     </member>
1405     <member name="M:System.Diagnostics.Metrics.MeterListener.SetMeasurementEventCallback``1(System.Diagnostics.Metrics.MeasurementCallback{``0})">
1406       <summary>Sets a callback for a specific numeric type to get the measurement recording notification from all instruments which enabled listening and was created with the same specified numeric type.
1407             If a measurement of type T is recorded and a callback of type T is registered, that callback will be used.</summary>
1408       <param name="measurementCallback">The callback which can be used to get measurement recording of numeric type T.</param>
1409       <typeparam name="T">The type of the numeric measurement.</typeparam>
1410     </member>
1411     <member name="M:System.Diagnostics.Metrics.MeterListener.Start">
1412       <summary>Enable the listener to start listening to instruments measurement recording.</summary>
1413     </member>
1414     <member name="P:System.Diagnostics.Metrics.MeterListener.InstrumentPublished">
1415       <summary>Gets or sets the callback to get notified when an instrument is published.</summary>
1416       <returns>The callback to get notified when an instrument is published.</returns>
1417     </member>
1418     <member name="P:System.Diagnostics.Metrics.MeterListener.MeasurementsCompleted">
1419       <summary>Gets or sets the callback to get notified when the measurement is stopped on some instrument.
1420             This can happen when the Meter or the Listener is disposed or calling <see cref="M:System.Diagnostics.Metrics.MeterListener.Dispose" /> on the listener.</summary>
1421       <returns>The callback to get notified when the measurement is stopped on some instrument.</returns>
1422     </member>
1423     <member name="T:System.Diagnostics.Metrics.ObservableCounter`1">
1424       <summary>ObservableCounter is a metrics observable Instrument which reports monotonically increasing value(s) when the instrument is being observed.
1425             e.g. CPU time (for different processes, threads, user mode or kernel mode).
1426             Use Meter.CreateObservableCounter methods to create the observable counter object.</summary>
1427       <typeparam name="T">The type that the observable counter represents.</typeparam>
1428     </member>
1429     <member name="T:System.Diagnostics.Metrics.ObservableGauge`1">
1430       <summary>ObservableGauge is an observable Instrument that reports non-additive value(s) when the instrument is being observed.
1431             e.g. the current room temperature Use Meter.CreateObservableGauge methods to create the observable counter object.</summary>
1432       <typeparam name="T" />
1433     </member>
1434     <member name="T:System.Diagnostics.Metrics.ObservableInstrument`1">
1435       <summary>ObservableInstrument{T} is the base class from which all metrics observable instruments will inherit from.</summary>
1436       <typeparam name="T">The type that the observable instrument represents.</typeparam>
1437     </member>
1438     <member name="M:System.Diagnostics.Metrics.ObservableInstrument`1.#ctor(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String)">
1439       <summary>Create the metrics observable instrument using the properties meter, name, description, and unit.
1440             All classes extending ObservableInstrument{T} need to call this constructor when constructing object of the extended class.</summary>
1441       <param name="meter">The meter that created the instrument.</param>
1442       <param name="name">The instrument name. cannot be <see langword="null" />.</param>
1443       <param name="unit">Optional instrument unit of measurements.</param>
1444       <param name="description">Optional instrument description.</param>
1445     </member>
1446     <member name="M:System.Diagnostics.Metrics.ObservableInstrument`1.Observe">
1447       <summary>Fetches the current measurements being tracked by this instrument. All classes extending ObservableInstrument{T} need to implement this method.</summary>
1448       <returns>The current measurements tracked by this instrument.</returns>
1449     </member>
1450     <member name="P:System.Diagnostics.Metrics.ObservableInstrument`1.IsObservable">
1451       <summary>Gets a value that indicates if the instrument is an observable instrument.</summary>
1452       <returns>
1453         <see langword="true" /> if the instrument is metrics-observable; <see langword="false" /> otherwise.</returns>
1454     </member>
1455     <member name="T:System.Diagnostics.SampleActivity`1">
1456       <summary>A delegate that defines the signature of the <see cref="T:System.Diagnostics.ActivityListener" /> callbacks used in the sampling process.</summary>
1457       <param name="options">The Activity creation options used by <see cref="T:System.Diagnostics.ActivityListener" /> callbacks to decide creating the Activity object or not.</param>
1458       <typeparam name="T">The type of the requested parent to create the Activity object with. Should be either a string or an <see cref="T:System.Diagnostics.ActivityContext" /> instance.</typeparam>
1459       <returns>An object containing the sampling results, which indicate the amount of data to collect for the related <see cref="T:System.Diagnostics.Activity" />.</returns>
1460     </member>
1461     <member name="T:System.Diagnostics.TagList">
1462       <summary>Represents a list of tags that can be accessed by index. Provides methods to search, sort, and manipulate lists.</summary>
1463     </member>
1464     <member name="M:System.Diagnostics.TagList.#ctor(System.ReadOnlySpan{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
1465       <summary>Initializes a new instance of <see cref="T:System.Diagnostics.TagList" /> using the specified <paramref name="tagList" />.</summary>
1466       <param name="tagList">A span of tags to initialize the list with.</param>
1467     </member>
1468     <member name="M:System.Diagnostics.TagList.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1469       <summary>Adds a tag to the list.</summary>
1470       <param name="tag">The key-value pair of the tag to add to the list.</param>
1471     </member>
1472     <member name="M:System.Diagnostics.TagList.Add(System.String,System.Object)">
1473       <summary>Adds a tag with the specified <paramref name="key" /> and <paramref name="value" /> to the list.</summary>
1474       <param name="key">The tag key.</param>
1475       <param name="value">The tag value.</param>
1476     </member>
1477     <member name="M:System.Diagnostics.TagList.Clear">
1478       <summary>Removes all elements from the <see cref="T:System.Diagnostics.TagList" />.</summary>
1479     </member>
1480     <member name="M:System.Diagnostics.TagList.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1481       <summary>Determines whether a tag is in the <see cref="T:System.Diagnostics.TagList" />.</summary>
1482       <param name="item">The tag to locate in the <see cref="T:System.Diagnostics.TagList" />.</param>
1483       <returns>
1484         <see langword="true" /> if item is found in the <see cref="T:System.Diagnostics.TagList" />; otherwise, <see langword="false" />.</returns>
1485     </member>
1486     <member name="M:System.Diagnostics.TagList.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
1487       <summary>Copies the entire <see cref="T:System.Diagnostics.TagList" /> to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
1488       <param name="array">The one-dimensional Array that is the destination of the elements copied from <see cref="T:System.Diagnostics.TagList" />. The Array must have zero-based indexing.</param>
1489       <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
1490       <exception cref="T:System.ArgumentNullException">
1491         <paramref name="array" /> is <see langword="null" />.</exception>
1492       <exception cref="T:System.ArgumentOutOfRangeException">
1493         <paramref name="arrayIndex " /> is less than 0 or greater than or equal to the <paramref name="array" /> length.</exception>
1494     </member>
1495     <member name="M:System.Diagnostics.TagList.CopyTo(System.Span{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
1496       <summary>Copies the contents of this <see cref="T:System.Diagnostics.TagList" /> into a destination <paramref name="tags" /> span.</summary>
1497       <param name="tags">The destination <see cref="T:System.Span`1" /> object.</param>
1498       <exception cref="T:System.ArgumentException">
1499           The number of elements in the source <see cref="T:System.Diagnostics.TagList" /> is greater than the number of elements that the destination span.</exception>
1500     </member>
1501     <member name="M:System.Diagnostics.TagList.GetEnumerator">
1502       <summary>Returns an enumerator that iterates through the <see cref="T:System.Diagnostics.TagList" />.</summary>
1503       <returns>An enumerator that iterates through the <see cref="T:System.Diagnostics.TagList" />.</returns>
1504     </member>
1505     <member name="M:System.Diagnostics.TagList.IndexOf(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1506       <summary>Searches for the specified tag and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Diagnostics.TagList" />.</summary>
1507       <param name="item">The tag to locate in the <see cref="T:System.Diagnostics.TagList" />.</param>
1508       <returns>The zero-based index of the first ocurrence of <paramref name="item" /> in the tag list.</returns>
1509     </member>
1510     <member name="M:System.Diagnostics.TagList.Insert(System.Int32,System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1511       <summary>Inserts an element into the <see cref="T:System.Diagnostics.TagList" /> at the specified index.</summary>
1512       <param name="index">The zero-based index at which the item should be inserted.</param>
1513       <param name="item">The tag to insert.</param>
1514       <exception cref="T:System.ArgumentOutOfRangeException">
1515         <paramref name="index" /> is less than 0 or <paramref name="index" /> is greater than <see cref="M:System.Diagnostics.TagList.Count" />.</exception>
1516     </member>
1517     <member name="M:System.Diagnostics.TagList.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
1518       <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Diagnostics.TagList" />.</summary>
1519       <param name="item">The tag to remove from the <see cref="T:System.Diagnostics.TagList" />.</param>
1520       <returns>
1521         <see langword="true" /> if <paramref name="item" /> is successfully removed; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> was not found in the <see cref="T:System.Diagnostics.TagList" />.</returns>
1522     </member>
1523     <member name="M:System.Diagnostics.TagList.RemoveAt(System.Int32)">
1524       <summary>Removes the element at the specified index of the <see cref="T:System.Diagnostics.TagList" />.</summary>
1525       <param name="index">The zero-based index of the element to remove.</param>
1526       <exception cref="T:System.ArgumentOutOfRangeException">
1527         <paramref name="index" /> index is less than 0 or <paramref name="index" /> is greater than <see cref="M:System.Diagnostics.TagList.Count" />.</exception>
1528     </member>
1529     <member name="M:System.Diagnostics.TagList.System#Collections#IEnumerable#GetEnumerator">
1530       <summary>Returns an enumerator that iterates through the <see cref="T:System.Diagnostics.TagList" />.</summary>
1531       <returns>An enumerator that iterates through the <see cref="T:System.Diagnostics.TagList" />.</returns>
1532     </member>
1533     <member name="P:System.Diagnostics.TagList.Count">
1534       <summary>Gets the number of tags contained in the <see cref="T:System.Diagnostics.TagList" />.</summary>
1535     </member>
1536     <member name="P:System.Diagnostics.TagList.IsReadOnly">
1537       <summary>Gets a value indicating whether the <see cref="T:System.Diagnostics.TagList" /> is read-only. This property will always return <see langword="false" />.</summary>
1538     </member>
1539     <member name="P:System.Diagnostics.TagList.Item(System.Int32)">
1540       <summary>Gets or sets the tags at the specified index.</summary>
1541       <param name="index">The item index.</param>
1542       <exception cref="T:System.ArgumentOutOfRangeException">
1543         <paramref name="index" /> is not a valid index in the <see cref="T:System.Diagnostics.TagList" />.</exception>
1544     </member>
1545     <member name="T:System.Diagnostics.TagList.Enumerator">
1546       <summary>An enumerator for traversing a tag list collection.</summary>
1547     </member>
1548     <member name="M:System.Diagnostics.TagList.Enumerator.Dispose">
1549       <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
1550     </member>
1551     <member name="M:System.Diagnostics.TagList.Enumerator.MoveNext">
1552       <summary>Advances the enumerator to the next element of the collection.</summary>
1553       <returns>
1554         <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
1555     </member>
1556     <member name="M:System.Diagnostics.TagList.Enumerator.Reset">
1557       <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
1558     </member>
1559     <member name="P:System.Diagnostics.TagList.Enumerator.Current">
1560       <summary>Gets the element in the collection at the current position of the enumerator.</summary>
1561       <returns>The element in the collection at the current position of the enumerator.</returns>
1562     </member>
1563     <member name="P:System.Diagnostics.TagList.Enumerator.System#Collections#IEnumerator#Current">
1564       <summary>Gets the element in the collection at the current position of the enumerator.</summary>
1565       <returns>The element in the collection at the current position of the enumerator.</returns>
1566     </member>
1567   </members>
1568 </doc>