您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

System.Diagnostics.Tracing.xml 60 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Diagnostics.Tracing</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Diagnostics.Tracing.EventActivityOptions">
  8. <summary>Specifies the tracking of activity start and stop events. </summary>
  9. </member>
  10. <member name="F:System.Diagnostics.Tracing.EventActivityOptions.Detachable">
  11. <summary>Allow overlapping activities. By default, activity starts and stops must be property nested. That is, a sequence of Start A, Start B, Stop A, Stop B is not allowed will result in B stopping at the same time as A.</summary>
  12. </member>
  13. <member name="F:System.Diagnostics.Tracing.EventActivityOptions.Disable">
  14. <summary>Turn off start and stop tracking. </summary>
  15. </member>
  16. <member name="F:System.Diagnostics.Tracing.EventActivityOptions.None">
  17. <summary>Use the default behavior for start and stop tracking.</summary>
  18. </member>
  19. <member name="F:System.Diagnostics.Tracing.EventActivityOptions.Recursive">
  20. <summary>Allow recursive activity starts. By default, an activity cannot be recursive. That is, a sequence of Start A, Start A, Stop A, Stop A is not allowed. Unintentional recursive activities can occur if the app executes and for some the stop is not reached before another start is called. </summary>
  21. </member>
  22. <member name="T:System.Diagnostics.Tracing.EventAttribute">
  23. <summary>Specifies additional event schema information for an event.</summary>
  24. </member>
  25. <member name="M:System.Diagnostics.Tracing.EventAttribute.#ctor(System.Int32)">
  26. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventAttribute" /> class with the specified event identifier.</summary>
  27. <param name="eventId">The event identifier for the event.</param>
  28. </member>
  29. <member name="P:System.Diagnostics.Tracing.EventAttribute.ActivityOptions">
  30. <summary>Specifies the behavior of the start and stop events of an activity. An activity is the region of time in an app between the start and the stop.</summary>
  31. <returns>Returns <see cref="T:System.Diagnostics.Tracing.EventActivityOptions" />.</returns>
  32. </member>
  33. <member name="P:System.Diagnostics.Tracing.EventAttribute.Channel">
  34. <summary>Gets or sets an additional event log where the event should be written.</summary>
  35. <returns>An additional event log where the event should be written.</returns>
  36. </member>
  37. <member name="P:System.Diagnostics.Tracing.EventAttribute.EventId">
  38. <summary>Gets or sets the identifier for the event.</summary>
  39. <returns>The event identifier. This value should be between 0 and 65535.</returns>
  40. </member>
  41. <member name="P:System.Diagnostics.Tracing.EventAttribute.Keywords">
  42. <summary>Gets or sets the keywords for the event.</summary>
  43. <returns>A bitwise combination of the enumeration values.</returns>
  44. </member>
  45. <member name="P:System.Diagnostics.Tracing.EventAttribute.Level">
  46. <summary>Gets or sets the level for the event.</summary>
  47. <returns>One of the enumeration values that specifies the level for the event.</returns>
  48. </member>
  49. <member name="P:System.Diagnostics.Tracing.EventAttribute.Message">
  50. <summary>Gets or sets the message for the event.</summary>
  51. <returns>The message for the event.</returns>
  52. </member>
  53. <member name="P:System.Diagnostics.Tracing.EventAttribute.Opcode">
  54. <summary>Gets or sets the operation code for the event.</summary>
  55. <returns>One of the enumeration values that specifies the operation code.</returns>
  56. </member>
  57. <member name="P:System.Diagnostics.Tracing.EventAttribute.Tags">
  58. <summary>Gets and sets the <see cref="T:System.Diagnostics.Tracing.EventTags" /> value for this <see cref="T:System.Diagnostics.Tracing.EventAttribute" /> object. An event tag is a user-defined value that is passed through when the event is logged. </summary>
  59. <returns>Returns the <see cref="T:System.Diagnostics.Tracing.EventTags" /> value.</returns>
  60. </member>
  61. <member name="P:System.Diagnostics.Tracing.EventAttribute.Task">
  62. <summary>Gets or sets the task for the event.</summary>
  63. <returns>The task for the event.</returns>
  64. </member>
  65. <member name="P:System.Diagnostics.Tracing.EventAttribute.Version">
  66. <summary>Gets or sets the version of the event.</summary>
  67. <returns>The version of the event.</returns>
  68. </member>
  69. <member name="T:System.Diagnostics.Tracing.EventChannel">
  70. <summary>Specifies the event log channel for the event.</summary>
  71. </member>
  72. <member name="F:System.Diagnostics.Tracing.EventChannel.Admin">
  73. <summary>The administrator log channel.</summary>
  74. </member>
  75. <member name="F:System.Diagnostics.Tracing.EventChannel.Analytic">
  76. <summary>The analytic channel.</summary>
  77. </member>
  78. <member name="F:System.Diagnostics.Tracing.EventChannel.Debug">
  79. <summary>The debug channel.</summary>
  80. </member>
  81. <member name="F:System.Diagnostics.Tracing.EventChannel.None">
  82. <summary>No channel specified.</summary>
  83. </member>
  84. <member name="F:System.Diagnostics.Tracing.EventChannel.Operational">
  85. <summary>The operational channel. </summary>
  86. </member>
  87. <member name="T:System.Diagnostics.Tracing.EventCommand">
  88. <summary>Describes the command (<see cref="P:System.Diagnostics.Tracing.EventCommandEventArgs.Command" /> property) that is passed to the <see cref="M:System.Diagnostics.Tracing.EventSource.OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs)" /> callback.</summary>
  89. </member>
  90. <member name="F:System.Diagnostics.Tracing.EventCommand.Disable">
  91. <summary>Disable the event.</summary>
  92. </member>
  93. <member name="F:System.Diagnostics.Tracing.EventCommand.Enable">
  94. <summary>Enable the event.</summary>
  95. </member>
  96. <member name="F:System.Diagnostics.Tracing.EventCommand.SendManifest">
  97. <summary>Send the manifest.</summary>
  98. </member>
  99. <member name="F:System.Diagnostics.Tracing.EventCommand.Update">
  100. <summary>Update the event.</summary>
  101. </member>
  102. <member name="T:System.Diagnostics.Tracing.EventCommandEventArgs">
  103. <summary>Provides the arguments for the <see cref="M:System.Diagnostics.Tracing.EventSource.OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs)" /> callback.</summary>
  104. </member>
  105. <member name="P:System.Diagnostics.Tracing.EventCommandEventArgs.Arguments">
  106. <summary>Gets the array of arguments for the callback.</summary>
  107. <returns>An array of callback arguments.</returns>
  108. </member>
  109. <member name="P:System.Diagnostics.Tracing.EventCommandEventArgs.Command">
  110. <summary>Gets the command for the callback.</summary>
  111. <returns>The callback command.</returns>
  112. </member>
  113. <member name="M:System.Diagnostics.Tracing.EventCommandEventArgs.DisableEvent(System.Int32)">
  114. <summary>Disables the event that have the specified identifier.</summary>
  115. <returns>true if <paramref name="eventId" /> is in range; otherwise, false.</returns>
  116. <param name="eventId">The identifier of the event to disable.</param>
  117. </member>
  118. <member name="M:System.Diagnostics.Tracing.EventCommandEventArgs.EnableEvent(System.Int32)">
  119. <summary>Enables the event that has the specified identifier.</summary>
  120. <returns>true if <paramref name="eventId" /> is in range; otherwise, false.</returns>
  121. <param name="eventId">The identifier of the event to enable.</param>
  122. </member>
  123. <member name="T:System.Diagnostics.Tracing.EventDataAttribute">
  124. <summary>Specifies a type to be passed to the <see cref="M:System.Diagnostics.Tracing.EventSource.Write``1(System.String,System.Diagnostics.Tracing.EventSourceOptions,``0)" /> method.</summary>
  125. </member>
  126. <member name="M:System.Diagnostics.Tracing.EventDataAttribute.#ctor">
  127. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventDataAttribute" /> class. </summary>
  128. </member>
  129. <member name="P:System.Diagnostics.Tracing.EventDataAttribute.Name">
  130. <summary>Gets or set the name to apply to an event if the event type or property is not explicitly named.</summary>
  131. <returns>The name to apply to the event or property.</returns>
  132. </member>
  133. <member name="T:System.Diagnostics.Tracing.EventFieldAttribute">
  134. <summary>The <see cref="T:System.Diagnostics.Tracing.EventFieldAttribute" /> is placed on fields of user-defined types that are passed as <see cref="T:System.Diagnostics.Tracing.EventSource" /> payloads. </summary>
  135. </member>
  136. <member name="M:System.Diagnostics.Tracing.EventFieldAttribute.#ctor">
  137. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventFieldAttribute" /> class.</summary>
  138. </member>
  139. <member name="P:System.Diagnostics.Tracing.EventFieldAttribute.Format">
  140. <summary>Gets and sets the value that specifies how to format the value of a user-defined type.</summary>
  141. <returns>Returns a<see cref="T:System.Diagnostics.Tracing.EventFieldFormat" /> value.</returns>
  142. </member>
  143. <member name="P:System.Diagnostics.Tracing.EventFieldAttribute.Tags">
  144. <summary>Gets and sets the user-defined <see cref="T:System.Diagnostics.Tracing.EventFieldTags" /> value that is required for fields that contain data that isn't one of the supported types. </summary>
  145. <returns>Returns <see cref="T:System.Diagnostics.Tracing.EventFieldTags" />.</returns>
  146. </member>
  147. <member name="T:System.Diagnostics.Tracing.EventFieldFormat">
  148. <summary>Specifies how to format the value of a user-defined type and can be used to override the default formatting for a field.</summary>
  149. </member>
  150. <member name="F:System.Diagnostics.Tracing.EventFieldFormat.Boolean">
  151. <summary>Boolean</summary>
  152. </member>
  153. <member name="F:System.Diagnostics.Tracing.EventFieldFormat.Default">
  154. <summary>Default.</summary>
  155. </member>
  156. <member name="F:System.Diagnostics.Tracing.EventFieldFormat.Hexadecimal">
  157. <summary>Hexadecimal.</summary>
  158. </member>
  159. <member name="F:System.Diagnostics.Tracing.EventFieldFormat.HResult">
  160. <summary>HResult.</summary>
  161. </member>
  162. <member name="F:System.Diagnostics.Tracing.EventFieldFormat.Json">
  163. <summary>JSON.</summary>
  164. </member>
  165. <member name="F:System.Diagnostics.Tracing.EventFieldFormat.String">
  166. <summary>String.</summary>
  167. </member>
  168. <member name="F:System.Diagnostics.Tracing.EventFieldFormat.Xml">
  169. <summary>XML.</summary>
  170. </member>
  171. <member name="T:System.Diagnostics.Tracing.EventFieldTags">
  172. <summary>Specifies the user-defined tag that is placed on fields of user-defined types that are passed as <see cref="T:System.Diagnostics.Tracing.EventSource" /> payloads through the <see cref="T:System.Diagnostics.Tracing.EventFieldAttribute" />. </summary>
  173. </member>
  174. <member name="F:System.Diagnostics.Tracing.EventFieldTags.None">
  175. <summary>Specifies no tag and is equal to zero.</summary>
  176. </member>
  177. <member name="T:System.Diagnostics.Tracing.EventIgnoreAttribute">
  178. <summary>Specifies a property should be ignored when writing an event type with the <see cref="M:System.Diagnostics.Tracing.EventSource.Write``1(System.String,System.Diagnostics.Tracing.EventSourceOptions@,``0@)" /> method.</summary>
  179. </member>
  180. <member name="M:System.Diagnostics.Tracing.EventIgnoreAttribute.#ctor">
  181. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventIgnoreAttribute" /> class.</summary>
  182. </member>
  183. <member name="T:System.Diagnostics.Tracing.EventKeywords">
  184. <summary>Defines the standard keywords that apply to events.</summary>
  185. </member>
  186. <member name="F:System.Diagnostics.Tracing.EventKeywords.All">
  187. <summary>All the bits are set to 1, representing every possible group of events.</summary>
  188. </member>
  189. <member name="F:System.Diagnostics.Tracing.EventKeywords.AuditFailure">
  190. <summary>Attached to all failed security audit events. Use this keyword only for events in the security log.</summary>
  191. </member>
  192. <member name="F:System.Diagnostics.Tracing.EventKeywords.AuditSuccess">
  193. <summary>Attached to all successful security audit events. Use this keyword only for events in the security log.</summary>
  194. </member>
  195. <member name="F:System.Diagnostics.Tracing.EventKeywords.CorrelationHint">
  196. <summary>Attached to transfer events where the related activity ID (correlation ID) is a computed value and is not guaranteed to be unique (that is, it is not a real GUID).</summary>
  197. </member>
  198. <member name="F:System.Diagnostics.Tracing.EventKeywords.EventLogClassic">
  199. <summary>Attached to events that are raised by using the RaiseEvent function.</summary>
  200. </member>
  201. <member name="F:System.Diagnostics.Tracing.EventKeywords.None">
  202. <summary>No filtering on keywords is performed when the event is published.</summary>
  203. </member>
  204. <member name="F:System.Diagnostics.Tracing.EventKeywords.Sqm">
  205. <summary>Attached to all Service Quality Mechanism (SQM) events.</summary>
  206. </member>
  207. <member name="F:System.Diagnostics.Tracing.EventKeywords.WdiContext">
  208. <summary>Attached to all Windows Diagnostics Infrastructure (WDI) context events.</summary>
  209. </member>
  210. <member name="F:System.Diagnostics.Tracing.EventKeywords.WdiDiagnostic">
  211. <summary>Attached to all Windows Diagnostics Infrastructure (WDI) diagnostic events.</summary>
  212. </member>
  213. <member name="T:System.Diagnostics.Tracing.EventLevel">
  214. <summary>Identifies the level of an event.</summary>
  215. </member>
  216. <member name="F:System.Diagnostics.Tracing.EventLevel.Critical">
  217. <summary>This level corresponds to a critical error, which is a serious error that has caused a major failure.</summary>
  218. </member>
  219. <member name="F:System.Diagnostics.Tracing.EventLevel.Error">
  220. <summary>This level adds standard errors that signify a problem.</summary>
  221. </member>
  222. <member name="F:System.Diagnostics.Tracing.EventLevel.Informational">
  223. <summary>This level adds informational events or messages that are not errors. These events can help trace the progress or state of an application.</summary>
  224. </member>
  225. <member name="F:System.Diagnostics.Tracing.EventLevel.LogAlways">
  226. <summary>No level filtering is done on the event.</summary>
  227. </member>
  228. <member name="F:System.Diagnostics.Tracing.EventLevel.Verbose">
  229. <summary>This level adds lengthy events or messages. It causes all events to be logged.</summary>
  230. </member>
  231. <member name="F:System.Diagnostics.Tracing.EventLevel.Warning">
  232. <summary>This level adds warning events (for example, events that are published because a disk is nearing full capacity).</summary>
  233. </member>
  234. <member name="T:System.Diagnostics.Tracing.EventListener">
  235. <summary>Provides methods for enabling and disabling events from event sources.</summary>
  236. </member>
  237. <member name="M:System.Diagnostics.Tracing.EventListener.#ctor">
  238. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.EventListener" /> class.</summary>
  239. </member>
  240. <member name="M:System.Diagnostics.Tracing.EventListener.DisableEvents(System.Diagnostics.Tracing.EventSource)">
  241. <summary>Disables all events for the specified event source.</summary>
  242. <param name="eventSource">The event source to disable events for.</param>
  243. </member>
  244. <member name="M:System.Diagnostics.Tracing.EventListener.Dispose">
  245. <summary>Releases the resources used by the current instance of the <see cref="T:System.Diagnostics.Tracing.EventListener" /> class.</summary>
  246. </member>
  247. <member name="M:System.Diagnostics.Tracing.EventListener.EnableEvents(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel)">
  248. <summary>Enables events for the specified event source that has the specified verbosity level or lower.</summary>
  249. <param name="eventSource">The event source to enable events for.</param>
  250. <param name="level">The level of events to enable.</param>
  251. </member>
  252. <member name="M:System.Diagnostics.Tracing.EventListener.EnableEvents(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords)">
  253. <summary>Enables events for the specified event source that has the specified verbosity level or lower, and matching keyword flags.</summary>
  254. <param name="eventSource">The event source to enable events for.</param>
  255. <param name="level">The level of events to enable.</param>
  256. <param name="matchAnyKeyword">The keyword flags necessary to enable the events.</param>
  257. </member>
  258. <member name="M:System.Diagnostics.Tracing.EventListener.EnableEvents(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary{System.String,System.String})">
  259. <summary>Enables events for the specified event source that has the specified verbosity level or lower, matching event keyword flag, and matching arguments.</summary>
  260. <param name="eventSource">The event source to enable events for.</param>
  261. <param name="level">The level of events to enable.</param>
  262. <param name="matchAnyKeyword">The keyword flags necessary to enable the events.</param>
  263. <param name="arguments">The arguments to be matched to enable the events.</param>
  264. </member>
  265. <member name="M:System.Diagnostics.Tracing.EventListener.EventSourceIndex(System.Diagnostics.Tracing.EventSource)">
  266. <summary>Gets a small non-negative number that represents the specified event source.</summary>
  267. <returns>A small non-negative number that represents the specified event source.</returns>
  268. <param name="eventSource">The event source to find the index for.</param>
  269. </member>
  270. <member name="M:System.Diagnostics.Tracing.EventListener.OnEventSourceCreated(System.Diagnostics.Tracing.EventSource)">
  271. <summary>Called for all existing event sources when the event listener is created and when a new event source is attached to the listener.</summary>
  272. <param name="eventSource">The event source.</param>
  273. </member>
  274. <member name="M:System.Diagnostics.Tracing.EventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)">
  275. <summary>Called whenever an event has been written by an event source for which the event listener has enabled events.</summary>
  276. <param name="eventData">The event arguments that describe the event.</param>
  277. </member>
  278. <member name="T:System.Diagnostics.Tracing.EventManifestOptions">
  279. <summary>Specifies how the ETW manifest for the event source is generated.</summary>
  280. </member>
  281. <member name="F:System.Diagnostics.Tracing.EventManifestOptions.AllCultures">
  282. <summary>Generates a resources node under the localization folder for every satellite assembly provided.</summary>
  283. </member>
  284. <member name="F:System.Diagnostics.Tracing.EventManifestOptions.AllowEventSourceOverride">
  285. <summary>Overrides the default behavior that the current <see cref="T:System.Diagnostics.Tracing.EventSource" /> must be the base class of the user-defined type passed to the write method. This enables the validation of .NET event sources.</summary>
  286. </member>
  287. <member name="F:System.Diagnostics.Tracing.EventManifestOptions.None">
  288. <summary>No options are specified.</summary>
  289. </member>
  290. <member name="F:System.Diagnostics.Tracing.EventManifestOptions.OnlyIfNeededForRegistration">
  291. <summary>A manifest is generated only the event source must be registered on the host computer.</summary>
  292. </member>
  293. <member name="F:System.Diagnostics.Tracing.EventManifestOptions.Strict">
  294. <summary>Causes an exception to be raised if any inconsistencies occur when writing the manifest file.</summary>
  295. </member>
  296. <member name="T:System.Diagnostics.Tracing.EventOpcode">
  297. <summary>Defines the standard operation codes that the event source attaches to events.</summary>
  298. </member>
  299. <member name="F:System.Diagnostics.Tracing.EventOpcode.DataCollectionStart">
  300. <summary>A trace collection start event.</summary>
  301. </member>
  302. <member name="F:System.Diagnostics.Tracing.EventOpcode.DataCollectionStop">
  303. <summary>A trace collection stop event.</summary>
  304. </member>
  305. <member name="F:System.Diagnostics.Tracing.EventOpcode.Extension">
  306. <summary>An extension event.</summary>
  307. </member>
  308. <member name="F:System.Diagnostics.Tracing.EventOpcode.Info">
  309. <summary>An informational event.</summary>
  310. </member>
  311. <member name="F:System.Diagnostics.Tracing.EventOpcode.Receive">
  312. <summary>An event that is published when one activity in an application receives data.</summary>
  313. </member>
  314. <member name="F:System.Diagnostics.Tracing.EventOpcode.Reply">
  315. <summary>An event that is published after an activity in an application replies to an event.</summary>
  316. </member>
  317. <member name="F:System.Diagnostics.Tracing.EventOpcode.Resume">
  318. <summary>An event that is published after an activity in an application resumes from a suspended state. The event should follow an event that has the <see cref="F:System.Diagnostics.Tracing.EventOpcode.Suspend" /> operation code.</summary>
  319. </member>
  320. <member name="F:System.Diagnostics.Tracing.EventOpcode.Send">
  321. <summary>An event that is published when one activity in an application transfers data or system resources to another activity.</summary>
  322. </member>
  323. <member name="F:System.Diagnostics.Tracing.EventOpcode.Start">
  324. <summary>An event that is published when an application starts a new transaction or activity. This operation code can be embedded within another transaction or activity when multiple events that have the <see cref="F:System.Diagnostics.Tracing.EventOpcode.Start" /> code follow each other without an intervening event that has a <see cref="F:System.Diagnostics.Tracing.EventOpcode.Stop" /> code.</summary>
  325. </member>
  326. <member name="F:System.Diagnostics.Tracing.EventOpcode.Stop">
  327. <summary>An event that is published when an activity or a transaction in an application ends. The event corresponds to the last unpaired event that has a <see cref="F:System.Diagnostics.Tracing.EventOpcode.Start" /> operation code.</summary>
  328. </member>
  329. <member name="F:System.Diagnostics.Tracing.EventOpcode.Suspend">
  330. <summary>An event that is published when an activity in an application is suspended.</summary>
  331. </member>
  332. <member name="T:System.Diagnostics.Tracing.EventSource">
  333. <summary>Provides the ability to create events for event tracing for Windows (ETW).</summary>
  334. </member>
  335. <member name="M:System.Diagnostics.Tracing.EventSource.#ctor">
  336. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class.</summary>
  337. </member>
  338. <member name="M:System.Diagnostics.Tracing.EventSource.#ctor(System.Boolean)">
  339. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class and specifies whether to throw an exception when an error occurs in the underlying Windows code.</summary>
  340. <param name="throwOnEventWriteErrors">true to throw an exception when an error occurs in the underlying Windows code; otherwise, false.</param>
  341. </member>
  342. <member name="M:System.Diagnostics.Tracing.EventSource.#ctor(System.Diagnostics.Tracing.EventSourceSettings)">
  343. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class with the specified configuration settings.</summary>
  344. <param name="settings">A bitwise combination of the enumeration values that specify the configuration settings to apply to the event source.</param>
  345. </member>
  346. <member name="M:System.Diagnostics.Tracing.EventSource.#ctor(System.Diagnostics.Tracing.EventSourceSettings,System.String[])">
  347. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> to be used with non-contract events that contains the specified settings and traits.</summary>
  348. <param name="settings">A bitwise combination of the enumeration values that specify the configuration settings to apply to the event source.</param>
  349. <param name="traits">The key-value pairs that specify traits for the event source.</param>
  350. <exception cref="T:System.ArgumentException">
  351. <paramref name="traits" /> is not specified in key-value pairs.</exception>
  352. </member>
  353. <member name="M:System.Diagnostics.Tracing.EventSource.#ctor(System.String)">
  354. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class with the specified name.</summary>
  355. <param name="eventSourceName">The name to apply to the event source. Must not be null.</param>
  356. <exception cref="T:System.ArgumentNullException">
  357. <paramref name="eventSourceName" /> is null.</exception>
  358. </member>
  359. <member name="M:System.Diagnostics.Tracing.EventSource.#ctor(System.String,System.Diagnostics.Tracing.EventSourceSettings)">
  360. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class with the specified name and settings.</summary>
  361. <param name="eventSourceName">The name to apply to the event source. Must not be null.</param>
  362. <param name="config">A bitwise combination of the enumeration values that specify the configuration settings to apply to the event source.</param>
  363. <exception cref="T:System.ArgumentNullException">
  364. <paramref name="eventSourceName" /> is null.</exception>
  365. <exception cref="T:System.ArgumentNullException">
  366. <paramref name="eventSourceName" /> is null.</exception>
  367. </member>
  368. <member name="M:System.Diagnostics.Tracing.EventSource.#ctor(System.String,System.Diagnostics.Tracing.EventSourceSettings,System.String[])">
  369. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class with the specified configuration settings.</summary>
  370. <param name="eventSourceName">The name to apply to the event source. Must not be null.</param>
  371. <param name="config">A bitwise combination of the enumeration values that specify the configuration settings to apply to the event source.</param>
  372. <param name="traits">The key-value pairs that specify traits for the event source.</param>
  373. <exception cref="T:System.ArgumentNullException">
  374. <paramref name="eventSourceName" /> is null.</exception>
  375. <exception cref="T:System.ArgumentException">
  376. <paramref name="traits" /> is not specified in key-value pairs.</exception>
  377. </member>
  378. <member name="P:System.Diagnostics.Tracing.EventSource.ConstructionException">
  379. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Gets any exception that was thrown during the construction of the event source.</summary>
  380. <returns>The exception that was thrown during the construction of the event source, or null if no exception was thrown. </returns>
  381. </member>
  382. <member name="P:System.Diagnostics.Tracing.EventSource.CurrentThreadActivityId">
  383. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Gets the activity ID of the current thread. </summary>
  384. <returns>The activity ID of the current thread. </returns>
  385. </member>
  386. <member name="M:System.Diagnostics.Tracing.EventSource.Dispose">
  387. <summary>Releases all resources used by the current instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class.</summary>
  388. </member>
  389. <member name="M:System.Diagnostics.Tracing.EventSource.Dispose(System.Boolean)">
  390. <summary>Releases the unmanaged resources used by the <see cref="T:System.Diagnostics.Tracing.EventSource" /> class and optionally releases the managed resources.</summary>
  391. <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param>
  392. </member>
  393. <member name="M:System.Diagnostics.Tracing.EventSource.Finalize">
  394. <summary>Allows the <see cref="T:System.Diagnostics.Tracing.EventSource" /> object to attempt to free resources and perform other cleanup operations before the object is reclaimed by garbage collection.</summary>
  395. </member>
  396. <member name="M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String)">
  397. <summary>Returns a string of the XML manifest that is associated with the current event source.</summary>
  398. <returns>The XML data string.</returns>
  399. <param name="eventSourceType">The type of the event source.</param>
  400. <param name="assemblyPathToIncludeInManifest">The path to the assembly file (.dll) to include in the provider element of the manifest. </param>
  401. </member>
  402. <member name="M:System.Diagnostics.Tracing.EventSource.GenerateManifest(System.Type,System.String,System.Diagnostics.Tracing.EventManifestOptions)">
  403. <summary>Returns a string of the XML manifest that is associated with the current event source.</summary>
  404. <returns>The XML data string or null (see remarks).</returns>
  405. <param name="eventSourceType">The type of the event source.</param>
  406. <param name="assemblyPathToIncludeInManifest">The path to the assembly file (.dll) file to include in the provider element of the manifest. </param>
  407. <param name="flags">A bitwise combination of the enumeration values that specify how the manifest is generated.</param>
  408. </member>
  409. <member name="M:System.Diagnostics.Tracing.EventSource.GetGuid(System.Type)">
  410. <summary>Gets the unique identifier for this implementation of the event source.</summary>
  411. <returns>A unique identifier for this event source type.</returns>
  412. <param name="eventSourceType">The type of the event source.</param>
  413. </member>
  414. <member name="M:System.Diagnostics.Tracing.EventSource.GetName(System.Type)">
  415. <summary>Gets the friendly name of the event source.</summary>
  416. <returns>The friendly name of the event source. The default is the simple name of the class.</returns>
  417. <param name="eventSourceType">The type of the event source.</param>
  418. </member>
  419. <member name="M:System.Diagnostics.Tracing.EventSource.GetSources">
  420. <summary>Gets a snapshot of all the event sources for the application domain.</summary>
  421. <returns>An enumeration of all the event sources in the application domain.</returns>
  422. </member>
  423. <member name="M:System.Diagnostics.Tracing.EventSource.GetTrait(System.String)">
  424. <summary>Gets the trait value associated with the specified key.</summary>
  425. <returns>The trait value associated with the specified key. If the key is not found, returns null.</returns>
  426. <param name="key">The key of the trait to get.</param>
  427. </member>
  428. <member name="P:System.Diagnostics.Tracing.EventSource.Guid">
  429. <summary>The unique identifier for the event source.</summary>
  430. <returns>A unique identifier for the event source.</returns>
  431. </member>
  432. <member name="M:System.Diagnostics.Tracing.EventSource.IsEnabled">
  433. <summary>Determines whether the current event source is enabled.</summary>
  434. <returns>true if the current event source is enabled; otherwise, false.</returns>
  435. </member>
  436. <member name="M:System.Diagnostics.Tracing.EventSource.IsEnabled(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords)">
  437. <summary>Determines whether the current event source that has the specified level and keyword is enabled.</summary>
  438. <returns>true if the event source is enabled; otherwise, false.</returns>
  439. <param name="level">The level of the event source.</param>
  440. <param name="keywords">The keyword of the event source.</param>
  441. </member>
  442. <member name="M:System.Diagnostics.Tracing.EventSource.IsEnabled(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Diagnostics.Tracing.EventChannel)">
  443. <summary>Determines whether the current event source is enabled for events with the specified level, keywords and channel.</summary>
  444. <returns>true if the event source is enabled for the specified event level, keywords and channel; otherwise, false.The result of this method is only an approximation of whether a particular event is active. Use it to avoid expensive computation for logging when logging is disabled. Event sources may have additional filtering that determines their activity..</returns>
  445. <param name="level">The event level to check. An event source will be considered enabled when its level is greater than or equal to <paramref name="level" />.</param>
  446. <param name="keywords">The event keywords to check.</param>
  447. <param name="channel">The event channel to check.</param>
  448. </member>
  449. <member name="P:System.Diagnostics.Tracing.EventSource.Name">
  450. <summary>The friendly name of the class that is derived from the event source.</summary>
  451. <returns>The friendly name of the derived class. The default is the simple name of the class.</returns>
  452. </member>
  453. <member name="M:System.Diagnostics.Tracing.EventSource.OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs)">
  454. <summary>Called when the current event source is updated by the controller.</summary>
  455. <param name="command">The arguments for the event.</param>
  456. </member>
  457. <member name="M:System.Diagnostics.Tracing.EventSource.SendCommand(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventCommand,System.Collections.Generic.IDictionary{System.String,System.String})">
  458. <summary>Sends a command to a specified event source.</summary>
  459. <param name="eventSource">The event source to send the command to.</param>
  460. <param name="command">The event command to send.</param>
  461. <param name="commandArguments">The arguments for the event command.</param>
  462. </member>
  463. <member name="M:System.Diagnostics.Tracing.EventSource.SetCurrentThreadActivityId(System.Guid)">
  464. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Sets the activity ID on the current thread.</summary>
  465. <param name="activityId">The current thread's new activity ID, or <see cref="F:System.Guid.Empty" /> to indicate that work on the current thread is not associated with any activity. </param>
  466. </member>
  467. <member name="M:System.Diagnostics.Tracing.EventSource.SetCurrentThreadActivityId(System.Guid,System.Guid@)">
  468. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Sets the activity ID on the current thread, and returns the previous activity ID.</summary>
  469. <param name="activityId">The current thread's new activity ID, or <see cref="F:System.Guid.Empty" /> to indicate that work on the current thread is not associated with any activity.</param>
  470. <param name="oldActivityThatWillContinue">When this method returns, contains the previous activity ID on the current thread. </param>
  471. </member>
  472. <member name="P:System.Diagnostics.Tracing.EventSource.Settings">
  473. <summary>Gets the settings applied to this event source.</summary>
  474. <returns>The settings applied to this event source.</returns>
  475. </member>
  476. <member name="M:System.Diagnostics.Tracing.EventSource.ToString">
  477. <summary>Obtains a string representation of the current event source instance.</summary>
  478. <returns>The name and unique identifier that identify the current event source.</returns>
  479. </member>
  480. <member name="M:System.Diagnostics.Tracing.EventSource.Write(System.String)">
  481. <summary>Writes an event without fields, but with the specified name and default options.</summary>
  482. <param name="eventName">The name of the event to write.</param>
  483. <exception cref="T:System.ArgumentNullException">
  484. <paramref name="eventName" /> is null.</exception>
  485. </member>
  486. <member name="M:System.Diagnostics.Tracing.EventSource.Write(System.String,System.Diagnostics.Tracing.EventSourceOptions)">
  487. <summary>Writes an event without fields, but with the specified name and options.</summary>
  488. <param name="eventName">The name of the event to write.</param>
  489. <param name="options">The options such as level, keywords and operation code for the event.</param>
  490. <exception cref="T:System.ArgumentNullException">
  491. <paramref name="eventName" /> is null.</exception>
  492. </member>
  493. <member name="M:System.Diagnostics.Tracing.EventSource.Write``1(System.String,System.Diagnostics.Tracing.EventSourceOptions,``0)">
  494. <summary>Writes an event with the specified name, event data and options.</summary>
  495. <param name="eventName">The name of the event.</param>
  496. <param name="options">The event options.</param>
  497. <param name="data">The event data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventDataAttribute" /> attribute.</param>
  498. <typeparam name="T">The type that defines the event and its associated data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventSourceAttribute" /> attribute.</typeparam>
  499. </member>
  500. <member name="M:System.Diagnostics.Tracing.EventSource.Write``1(System.String,System.Diagnostics.Tracing.EventSourceOptions@,System.Guid@,System.Guid@,``0@)">
  501. <summary>Writes an event with the specified name, options, related activity and event data.</summary>
  502. <param name="eventName">The name of the event.</param>
  503. <param name="options">The event options.</param>
  504. <param name="activityId">The ID of the activity associated with the event.</param>
  505. <param name="relatedActivityId">The ID of an associated activity, or <see cref="F:System.Guid.Empty" /> if there is no associated activity.</param>
  506. <param name="data">The event data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventDataAttribute" /> attribute.</param>
  507. <typeparam name="T">The type that defines the event and its associated data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventSourceAttribute" /> attribute.</typeparam>
  508. </member>
  509. <member name="M:System.Diagnostics.Tracing.EventSource.Write``1(System.String,System.Diagnostics.Tracing.EventSourceOptions@,``0@)">
  510. <summary>Writes an event with the specified name, options and event data.</summary>
  511. <param name="eventName">The name of the event.</param>
  512. <param name="options">The event options.</param>
  513. <param name="data">The event data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventDataAttribute" /> attribute.</param>
  514. <typeparam name="T">The type that defines the event and its associated data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventSourceAttribute" /> attribute.</typeparam>
  515. </member>
  516. <member name="M:System.Diagnostics.Tracing.EventSource.Write``1(System.String,``0)">
  517. <summary>Writes an event with the specified name and data.</summary>
  518. <param name="eventName">The name of the event.</param>
  519. <param name="data">The event data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventDataAttribute" /> attribute.</param>
  520. <typeparam name="T">The type that defines the event and its associated data. This type must be an anonymous type or marked with the <see cref="T:System.Diagnostics.Tracing.EventSourceAttribute" /> attribute.</typeparam>
  521. </member>
  522. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32)">
  523. <summary>Writes an event by using the provided event identifier.</summary>
  524. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  525. </member>
  526. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Byte[])">
  527. <summary>Writes an event by using the provided event identifier and byte array argument.</summary>
  528. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  529. <param name="arg1">A byte array argument.</param>
  530. </member>
  531. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int32)">
  532. <summary>Writes an event by using the provided event identifier and 32-bit integer argument.</summary>
  533. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  534. <param name="arg1">An integer argument.</param>
  535. </member>
  536. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int32,System.Int32)">
  537. <summary>Writes an event by using the provided event identifier and 32-bit integer arguments.</summary>
  538. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  539. <param name="arg1">An integer argument.</param>
  540. <param name="arg2">An integer argument.</param>
  541. </member>
  542. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int32,System.Int32,System.Int32)">
  543. <summary>Writes an event by using the provided event identifier and 32-bit integer arguments.</summary>
  544. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  545. <param name="arg1">An integer argument.</param>
  546. <param name="arg2">An integer argument.</param>
  547. <param name="arg3">An integer argument.</param>
  548. </member>
  549. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int32,System.String)">
  550. <summary>Writes an event by using the provided event identifier and 32-bit integer and string arguments.</summary>
  551. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  552. <param name="arg1">A 32-bit integer argument.</param>
  553. <param name="arg2">A string argument.</param>
  554. </member>
  555. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int64)">
  556. <summary>Writes an event by using the provided event identifier and 64-bit integer argument.</summary>
  557. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  558. <param name="arg1">A 64 bit integer argument.</param>
  559. </member>
  560. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int64,System.Byte[])">
  561. <summary>Writes the event data using the specified indentifier and 64-bit integer and byte array arguments.</summary>
  562. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  563. <param name="arg1">A 64-bit integer argument.</param>
  564. <param name="arg2">A byte array argument.</param>
  565. </member>
  566. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int64,System.Int64)">
  567. <summary>Writes an event by using the provided event identifier and 64-bit arguments.</summary>
  568. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  569. <param name="arg1">A 64 bit integer argument.</param>
  570. <param name="arg2">A 64 bit integer argument.</param>
  571. </member>
  572. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int64,System.Int64,System.Int64)">
  573. <summary>Writes an event by using the provided event identifier and 64-bit arguments.</summary>
  574. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  575. <param name="arg1">A 64 bit integer argument.</param>
  576. <param name="arg2">A 64 bit integer argument.</param>
  577. <param name="arg3">A 64 bit integer argument.</param>
  578. </member>
  579. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Int64,System.String)">
  580. <summary>Writes an event by using the provided event identifier and 64-bit integer, and string arguments.</summary>
  581. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  582. <param name="arg1">A 64-bit integer argument.</param>
  583. <param name="arg2">A string argument.</param>
  584. </member>
  585. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.Object[])">
  586. <summary>Writes an event by using the provided event identifier and array of arguments.</summary>
  587. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  588. <param name="args">An array of objects.</param>
  589. </member>
  590. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.String)">
  591. <summary>Writes an event by using the provided event identifier and string argument.</summary>
  592. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  593. <param name="arg1">A string argument.</param>
  594. </member>
  595. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.String,System.Int32)">
  596. <summary>Writes an event by using the provided event identifier and arguments.</summary>
  597. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  598. <param name="arg1">A string argument.</param>
  599. <param name="arg2">A 32 bit integer argument.</param>
  600. </member>
  601. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.String,System.Int32,System.Int32)">
  602. <summary>Writes an event by using the provided event identifier and arguments.</summary>
  603. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  604. <param name="arg1">A string argument.</param>
  605. <param name="arg2">A 32 bit integer argument.</param>
  606. <param name="arg3">A 32 bit integer argument.</param>
  607. </member>
  608. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.String,System.Int64)">
  609. <summary>Writes an event by using the provided event identifier and arguments.</summary>
  610. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  611. <param name="arg1">A string argument.</param>
  612. <param name="arg2">A 64 bit integer argument.</param>
  613. </member>
  614. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.String,System.String)">
  615. <summary>Writes an event by using the provided event identifier and string arguments.</summary>
  616. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  617. <param name="arg1">A string argument.</param>
  618. <param name="arg2">A string argument.</param>
  619. </member>
  620. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEvent(System.Int32,System.String,System.String,System.String)">
  621. <summary>Writes an event by using the provided event identifier and string arguments.</summary>
  622. <param name="eventId">The event identifier. This value should be between 0 and 65535.</param>
  623. <param name="arg1">A string argument.</param>
  624. <param name="arg2">A string argument.</param>
  625. <param name="arg3">A string argument.</param>
  626. </member>
  627. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEventCore(System.Int32,System.Int32,System.Diagnostics.Tracing.EventSource.EventData*)">
  628. <summary>Creates a new <see cref="Overload:System.Diagnostics.Tracing.EventSource.WriteEvent" /> overload by using the provided event identifier and event data.</summary>
  629. <param name="eventId">The event identifier.</param>
  630. <param name="eventDataCount">The number of event data items.</param>
  631. <param name="data">The structure that contains the event data.</param>
  632. </member>
  633. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEventWithRelatedActivityId(System.Int32,System.Guid,System.Object[])">
  634. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Writes an event that indicates that the current activity is related to another activity. </summary>
  635. <param name="eventId">An identifier that uniquely identifies this event within the <see cref="T:System.Diagnostics.Tracing.EventSource" />. </param>
  636. <param name="relatedActivityId">The related activity identifier. </param>
  637. <param name="args">An array of objects that contain data about the event. </param>
  638. </member>
  639. <member name="M:System.Diagnostics.Tracing.EventSource.WriteEventWithRelatedActivityIdCore(System.Int32,System.Guid*,System.Int32,System.Diagnostics.Tracing.EventSource.EventData*)">
  640. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Writes an event that indicates that the current activity is related to another activity.</summary>
  641. <param name="eventId">An identifier that uniquely identifies this event within the <see cref="T:System.Diagnostics.Tracing.EventSource" />.</param>
  642. <param name="relatedActivityId">A pointer to the GUID of the related activity ID. </param>
  643. <param name="eventDataCount">The number of items in the <paramref name="data" /> field. </param>
  644. <param name="data">A pointer to the first item in the event data field. </param>
  645. </member>
  646. <member name="T:System.Diagnostics.Tracing.EventSource.EventData">
  647. <summary>Provides the event data for creating fast <see cref="Overload:System.Diagnostics.Tracing.EventSource.WriteEvent" /> overloads by using the <see cref="M:System.Diagnostics.Tracing.EventSource.WriteEventCore(System.Int32,System.Int32,System.Diagnostics.Tracing.EventSource.EventData*)" /> method.</summary>
  648. </member>
  649. <member name="P:System.Diagnostics.Tracing.EventSource.EventData.DataPointer">
  650. <summary>Gets or sets the pointer to the data for the new <see cref="Overload:System.Diagnostics.Tracing.EventSource.WriteEvent" /> overload.</summary>
  651. <returns>The pointer to the data.</returns>
  652. </member>
  653. <member name="P:System.Diagnostics.Tracing.EventSource.EventData.Size">
  654. <summary>Gets or sets the number of payload items in the new <see cref="Overload:System.Diagnostics.Tracing.EventSource.WriteEvent" /> overload.</summary>
  655. <returns>The number of payload items in the new overload.</returns>
  656. </member>
  657. <member name="T:System.Diagnostics.Tracing.EventSourceAttribute">
  658. <summary>Allows the event tracing for Windows (ETW) name to be defined independently of the name of the event source class. </summary>
  659. </member>
  660. <member name="M:System.Diagnostics.Tracing.EventSourceAttribute.#ctor">
  661. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceAttribute" /> class.</summary>
  662. </member>
  663. <member name="P:System.Diagnostics.Tracing.EventSourceAttribute.Guid">
  664. <summary>Gets or sets the event source identifier.</summary>
  665. <returns>The event source identifier.</returns>
  666. </member>
  667. <member name="P:System.Diagnostics.Tracing.EventSourceAttribute.LocalizationResources">
  668. <summary>Gets or sets the name of the localization resource file.</summary>
  669. <returns>The name of the localization resource file, or null if the localization resource file does not exist.</returns>
  670. </member>
  671. <member name="P:System.Diagnostics.Tracing.EventSourceAttribute.Name">
  672. <summary>Gets or sets the name of the event source.</summary>
  673. <returns>The name of the event source.</returns>
  674. </member>
  675. <member name="T:System.Diagnostics.Tracing.EventSourceException">
  676. <summary>The exception that is thrown when an error occurs during event tracing for Windows (ETW).</summary>
  677. </member>
  678. <member name="M:System.Diagnostics.Tracing.EventSourceException.#ctor">
  679. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class.</summary>
  680. </member>
  681. <member name="M:System.Diagnostics.Tracing.EventSourceException.#ctor(System.String)">
  682. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class with a specified error message.</summary>
  683. <param name="message">The message that describes the error.</param>
  684. </member>
  685. <member name="M:System.Diagnostics.Tracing.EventSourceException.#ctor(System.String,System.Exception)">
  686. <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
  687. <param name="message">The error message that explains the reason for the exception. </param>
  688. <param name="innerException">The exception that is the cause of the current exception, or null if no inner exception is specified. </param>
  689. </member>
  690. <member name="T:System.Diagnostics.Tracing.EventSourceOptions">
  691. <summary>Specifies overrides of default event settings such as the log level, keywords and operation code when the <see cref="M:System.Diagnostics.Tracing.EventSource.Write``1(System.String,System.Diagnostics.Tracing.EventSourceOptions,``0)" /> method is called.</summary>
  692. </member>
  693. <member name="P:System.Diagnostics.Tracing.EventSourceOptions.ActivityOptions">
  694. <summary>The activity options defined for this event source.</summary>
  695. <returns>Returns <see cref="T:System.Diagnostics.Tracing.EventActivityOptions" />.</returns>
  696. </member>
  697. <member name="P:System.Diagnostics.Tracing.EventSourceOptions.Keywords">
  698. <summary>Gets or sets the keywords applied to the event. If this property is not set, the event’s keywords will be None.</summary>
  699. <returns>The keywords applied to the event, or None if no keywords are set.</returns>
  700. </member>
  701. <member name="P:System.Diagnostics.Tracing.EventSourceOptions.Level">
  702. <summary>Gets or sets the event level applied to the event. </summary>
  703. <returns>The event level for the event. If not set, the default is Verbose (5).</returns>
  704. </member>
  705. <member name="P:System.Diagnostics.Tracing.EventSourceOptions.Opcode">
  706. <summary>Gets or sets the operation code to use for the specified event. </summary>
  707. <returns>The operation code to use for the specified event. If not set, the default is Info (0).</returns>
  708. </member>
  709. <member name="P:System.Diagnostics.Tracing.EventSourceOptions.Tags">
  710. <summary>The event tags defined for this event source.</summary>
  711. <returns>Returns <see cref="T:System.Diagnostics.Tracing.EventTags" />.</returns>
  712. </member>
  713. <member name="T:System.Diagnostics.Tracing.EventSourceSettings">
  714. <summary>Specifies configuration options for an event source.</summary>
  715. </member>
  716. <member name="F:System.Diagnostics.Tracing.EventSourceSettings.Default">
  717. <summary>None of the special configuration options are enabled.</summary>
  718. </member>
  719. <member name="F:System.Diagnostics.Tracing.EventSourceSettings.EtwManifestEventFormat">
  720. <summary>The ETW listener should use a manifest-based format when raising events. Setting this option is a directive to the ETW listener should use manifest-based format when raising events. This is the default option when defining a type derived from <see cref="T:System.Diagnostics.Tracing.EventSource" /> using one of the protected <see cref="T:System.Diagnostics.Tracing.EventSource" /> constructors.</summary>
  721. </member>
  722. <member name="F:System.Diagnostics.Tracing.EventSourceSettings.EtwSelfDescribingEventFormat">
  723. <summary>The ETW listener should use self-describing event format. This is the default option when creating a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSource" /> using one of the public <see cref="T:System.Diagnostics.Tracing.EventSource" /> constructors. </summary>
  724. </member>
  725. <member name="F:System.Diagnostics.Tracing.EventSourceSettings.ThrowOnEventWriteErrors">
  726. <summary>The event source throws an exception when an error occurs. </summary>
  727. </member>
  728. <member name="T:System.Diagnostics.Tracing.EventTags">
  729. <summary>Specifies the tracking of activity start and stop events. You should only use the lower 24 bits. For more information, see <see cref="T:System.Diagnostics.Tracing.EventSourceOptions" /> and <see cref="M:System.Diagnostics.Tracing.EventSource.Write(System.String,System.Diagnostics.Tracing.EventSourceOptions)" />.</summary>
  730. </member>
  731. <member name="F:System.Diagnostics.Tracing.EventTags.None">
  732. <summary>Specifies no tag and is equal to zero.</summary>
  733. </member>
  734. <member name="T:System.Diagnostics.Tracing.EventTask">
  735. <summary>Defines the tasks that apply to events.</summary>
  736. </member>
  737. <member name="F:System.Diagnostics.Tracing.EventTask.None">
  738. <summary>Undefined task.</summary>
  739. </member>
  740. <member name="T:System.Diagnostics.Tracing.EventWrittenEventArgs">
  741. <summary>Provides data for the <see cref="M:System.Diagnostics.Tracing.EventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)" /> callback.</summary>
  742. </member>
  743. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.ActivityId">
  744. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Gets the activity ID on the thread that the event was written to. </summary>
  745. <returns>The activity ID on the thread that the event was written to. </returns>
  746. </member>
  747. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Channel">
  748. <summary>Gets the channel for the event.</summary>
  749. <returns>The channel for the event.</returns>
  750. </member>
  751. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.EventId">
  752. <summary>Gets the event identifier.</summary>
  753. <returns>The event identifier.</returns>
  754. </member>
  755. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.EventName">
  756. <summary>Gets the name of the event.</summary>
  757. <returns>The name of the event.</returns>
  758. </member>
  759. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.EventSource">
  760. <summary>Gets the event source object.</summary>
  761. <returns>The event source object.</returns>
  762. </member>
  763. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Keywords">
  764. <summary>Gets the keywords for the event.</summary>
  765. <returns>The keywords for the event.</returns>
  766. </member>
  767. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Level">
  768. <summary>Gets the level of the event.</summary>
  769. <returns>The level of the event.</returns>
  770. </member>
  771. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Message">
  772. <summary>Gets the message for the event.</summary>
  773. <returns>The message for the event.</returns>
  774. </member>
  775. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Opcode">
  776. <summary>Gets the operation code for the event.</summary>
  777. <returns>The operation code for the event.</returns>
  778. </member>
  779. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Payload">
  780. <summary>Gets the payload for the event.</summary>
  781. <returns>The payload for the event.</returns>
  782. </member>
  783. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.PayloadNames">
  784. <summary>Returns a list of strings that represent the property names of the event.</summary>
  785. <returns>Returns <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />.</returns>
  786. </member>
  787. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.RelatedActivityId">
  788. <summary>[Supported in the .NET Framework 4.5.1 and later versions] Gets the identifier of an activity that is related to the activity represented by the current instance. </summary>
  789. <returns>The identifier of the related activity, or <see cref="F:System.Guid.Empty" /> if there is no related activity.</returns>
  790. </member>
  791. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Tags">
  792. <summary>Returns the tags specified in the call to the <see cref="M:System.Diagnostics.Tracing.EventSource.Write(System.String,System.Diagnostics.Tracing.EventSourceOptions)" /> method.</summary>
  793. <returns>Returns <see cref="T:System.Diagnostics.Tracing.EventTags" />.</returns>
  794. </member>
  795. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Task">
  796. <summary>Gets the task for the event.</summary>
  797. <returns>The task for the event.</returns>
  798. </member>
  799. <member name="P:System.Diagnostics.Tracing.EventWrittenEventArgs.Version">
  800. <summary>Gets the version of the event.</summary>
  801. <returns>The version of the event.</returns>
  802. </member>
  803. <member name="T:System.Diagnostics.Tracing.NonEventAttribute">
  804. <summary>Identifies a method that is not generating an event.</summary>
  805. </member>
  806. <member name="M:System.Diagnostics.Tracing.NonEventAttribute.#ctor">
  807. <summary>Creates a new instance of the <see cref="T:System.Diagnostics.Tracing.NonEventAttribute" /> class.</summary>
  808. </member>
  809. </members>
  810. </doc>