暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Microsoft.Extensions.Logging.Abstractions.xml 50KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Logging.Abstractions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Logging.Abstractions.LogEntry`1">
  8. <typeparam name="TState" />
  9. </member>
  10. <member name="M:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.#ctor(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,`0,System.Exception,System.Func{`0,System.Exception,System.String})">
  11. <param name="logLevel" />
  12. <param name="category" />
  13. <param name="eventId" />
  14. <param name="state" />
  15. <param name="exception" />
  16. <param name="formatter" />
  17. </member>
  18. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category" />
  19. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId" />
  20. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception" />
  21. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter" />
  22. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.LogLevel" />
  23. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State" />
  24. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger">
  25. <summary>Minimalistic logger that does nothing.</summary>
  26. </member>
  27. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)">
  28. <summary>Begins a logical operation scope.</summary>
  29. <param name="state" />
  30. <typeparam name="TState" />
  31. <returns>A disposable object that ends the logical operation scope on dispose.</returns>
  32. </member>
  33. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  34. <summary>Checks if the given <paramref name="logLevel" /> is enabled.</summary>
  35. <param name="logLevel" />
  36. <returns>
  37. <see langword="true" /> if enabled; <see langword="false" /> otherwise.</returns>
  38. </member>
  39. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
  40. <summary>Writes a log entry.</summary>
  41. <param name="logLevel" />
  42. <param name="eventId" />
  43. <param name="state" />
  44. <param name="exception" />
  45. <param name="formatter" />
  46. <typeparam name="TState" />
  47. </member>
  48. <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLogger.Instance">
  49. <summary>Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger" />.</summary>
  50. </member>
  51. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1">
  52. <summary>Minimalistic logger that does nothing.</summary>
  53. <typeparam name="T" />
  54. </member>
  55. <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Instance">
  56. <summary>Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1" />.</summary>
  57. </member>
  58. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.#ctor" />
  59. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)">
  60. <summary>Begins a logical operation scope.</summary>
  61. <param name="state" />
  62. <typeparam name="TState" />
  63. <returns>A disposable object that ends the logical operation scope on dispose.</returns>
  64. </member>
  65. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  66. <summary>Checks if the given <paramref name="logLevel" /> is enabled.</summary>
  67. <param name="logLevel" />
  68. <returns>
  69. <see langword="true" /> if enabled; <see langword="false" /> otherwise.</returns>
  70. </member>
  71. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
  72. <summary>Writes a log entry.</summary>
  73. <param name="logLevel" />
  74. <param name="eventId" />
  75. <param name="state" />
  76. <param name="exception" />
  77. <param name="formatter" />
  78. <typeparam name="TState" />
  79. </member>
  80. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory">
  81. <summary>An <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" /> used to create instance of
  82. <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger" /> that logs nothing.</summary>
  83. </member>
  84. <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Instance">
  85. <summary>Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory" />.</summary>
  86. </member>
  87. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.#ctor">
  88. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory" /> instance.</summary>
  89. </member>
  90. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
  91. <summary>Adds an <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" /> to the logging system.</summary>
  92. <param name="provider" />
  93. </member>
  94. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)">
  95. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</summary>
  96. <param name="name" />
  97. <returns>A new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</returns>
  98. </member>
  99. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Dispose">
  100. <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
  101. </member>
  102. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider">
  103. <summary>Provider for the <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger" />.</summary>
  104. </member>
  105. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)">
  106. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</summary>
  107. <param name="categoryName" />
  108. <returns>The instance of <see cref="T:Microsoft.Extensions.Logging.ILogger" /> that was created.</returns>
  109. </member>
  110. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose">
  111. <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
  112. </member>
  113. <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Instance">
  114. <summary>Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider" />.</summary>
  115. </member>
  116. <member name="T:Microsoft.Extensions.Logging.EventId">
  117. <summary>Identifies a logging event. The primary identifier is the "Id" property, with the "Name" property providing a short description of this type of event.</summary>
  118. </member>
  119. <member name="M:Microsoft.Extensions.Logging.EventId.#ctor(System.Int32,System.String)">
  120. <summary>Initializes an instance of the <see cref="T:Microsoft.Extensions.Logging.EventId" /> struct.</summary>
  121. <param name="id">The numeric identifier for this event.</param>
  122. <param name="name">The name of this event.</param>
  123. </member>
  124. <member name="M:Microsoft.Extensions.Logging.EventId.Equals(Microsoft.Extensions.Logging.EventId)">
  125. <summary>Indicates whether the current object is equal to another object of the same type. Two events are equal if they have the same id.</summary>
  126. <param name="other">An object to compare with this object.</param>
  127. <returns>
  128. <see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</returns>
  129. </member>
  130. <member name="M:Microsoft.Extensions.Logging.EventId.Equals(System.Object)">
  131. <param name="obj" />
  132. </member>
  133. <member name="M:Microsoft.Extensions.Logging.EventId.GetHashCode" />
  134. <member name="M:Microsoft.Extensions.Logging.EventId.op_Equality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)">
  135. <summary>Checks if two specified <see cref="T:Microsoft.Extensions.Logging.EventId" /> instances have the same value. They are equal if they have the same Id.</summary>
  136. <param name="left">The first <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
  137. <param name="right">The second <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
  138. <returns>
  139. <see langword="true" /> if the objects are equal.</returns>
  140. </member>
  141. <member name="M:Microsoft.Extensions.Logging.EventId.op_Implicit(System.Int32)~Microsoft.Extensions.Logging.EventId">
  142. <summary>Implicitly creates an EventId from the given <see cref="T:System.Int32" />.</summary>
  143. <param name="i">The <see cref="T:System.Int32" /> to convert to an EventId.</param>
  144. </member>
  145. <member name="M:Microsoft.Extensions.Logging.EventId.op_Inequality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)">
  146. <summary>Checks if two specified <see cref="T:Microsoft.Extensions.Logging.EventId" /> instances have different values.</summary>
  147. <param name="left">The first <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
  148. <param name="right">The second <see cref="T:Microsoft.Extensions.Logging.EventId" />.</param>
  149. <returns>
  150. <see langword="true" /> if the objects are not equal.</returns>
  151. </member>
  152. <member name="M:Microsoft.Extensions.Logging.EventId.ToString" />
  153. <member name="P:Microsoft.Extensions.Logging.EventId.Id">
  154. <summary>Gets the numeric identifier for this event.</summary>
  155. </member>
  156. <member name="P:Microsoft.Extensions.Logging.EventId.Name">
  157. <summary>Gets the name of this event.</summary>
  158. </member>
  159. <member name="T:Microsoft.Extensions.Logging.IExternalScopeProvider">
  160. <summary>Represents a storage of common scope data.</summary>
  161. </member>
  162. <member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
  163. <summary>Executes callback for each currently active scope objects in order of creation.
  164. All callbacks are guaranteed to be called inline from this method.</summary>
  165. <param name="callback">The callback to be executed for every scope object</param>
  166. <param name="state">The state object to be passed into the callback</param>
  167. <typeparam name="TState">The type of state to accept.</typeparam>
  168. </member>
  169. <member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.Push(System.Object)">
  170. <summary>Adds scope object to the list.</summary>
  171. <param name="state">The scope object</param>
  172. <returns>The <see cref="T:System.IDisposable" /> token that removes scope on dispose.</returns>
  173. </member>
  174. <member name="T:Microsoft.Extensions.Logging.ILogger">
  175. <summary>Represents a type used to perform logging.</summary>
  176. </member>
  177. <member name="M:Microsoft.Extensions.Logging.ILogger.BeginScope``1(``0)">
  178. <summary>Begins a logical operation scope.</summary>
  179. <param name="state">The identifier for the scope.</param>
  180. <typeparam name="TState">The type of the state to begin scope for.</typeparam>
  181. <returns>A disposable object that ends the logical operation scope on dispose.</returns>
  182. </member>
  183. <member name="M:Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  184. <summary>Checks if the given <paramref name="logLevel" /> is enabled.</summary>
  185. <param name="logLevel">level to be checked.</param>
  186. <returns>
  187. <see langword="true" /> if enabled; <see langword="false" /> otherwise.</returns>
  188. </member>
  189. <member name="M:Microsoft.Extensions.Logging.ILogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
  190. <summary>Writes a log entry.</summary>
  191. <param name="logLevel">Entry will be written on this level.</param>
  192. <param name="eventId">Id of the event.</param>
  193. <param name="state">The entry to be written. Can be also an object.</param>
  194. <param name="exception">The exception related to this entry.</param>
  195. <param name="formatter">Function to create a <see cref="T:System.String" /> message of the <paramref name="state" /> and <paramref name="exception" />.</param>
  196. <typeparam name="TState">The type of the object to be written.</typeparam>
  197. </member>
  198. <member name="T:Microsoft.Extensions.Logging.ILogger`1">
  199. <summary>A generic interface for logging where the category name is derived from the specified
  200. <typeparamref name="TCategoryName" /> type name.
  201. Generally used to enable activation of a named <see cref="T:Microsoft.Extensions.Logging.ILogger" /> from dependency injection.</summary>
  202. <typeparam name="TCategoryName">The type who's name is used for the logger category name.</typeparam>
  203. </member>
  204. <member name="T:Microsoft.Extensions.Logging.ILoggerFactory">
  205. <summary>Represents a type used to configure the logging system and create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger" /> from
  206. the registered <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" />s.</summary>
  207. </member>
  208. <member name="M:Microsoft.Extensions.Logging.ILoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
  209. <summary>Adds an <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" /> to the logging system.</summary>
  210. <param name="provider">The <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" />.</param>
  211. </member>
  212. <member name="M:Microsoft.Extensions.Logging.ILoggerFactory.CreateLogger(System.String)">
  213. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</summary>
  214. <param name="categoryName">The category name for messages produced by the logger.</param>
  215. <returns>A new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</returns>
  216. </member>
  217. <member name="T:Microsoft.Extensions.Logging.ILoggerProvider">
  218. <summary>Represents a type that can create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger" />.</summary>
  219. </member>
  220. <member name="M:Microsoft.Extensions.Logging.ILoggerProvider.CreateLogger(System.String)">
  221. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance.</summary>
  222. <param name="categoryName">The category name for messages produced by the logger.</param>
  223. <returns>The instance of <see cref="T:Microsoft.Extensions.Logging.ILogger" /> that was created.</returns>
  224. </member>
  225. <member name="T:Microsoft.Extensions.Logging.ISupportExternalScope">
  226. <summary>Represents a <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider" /> that is able to consume external scope information.</summary>
  227. </member>
  228. <member name="M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)">
  229. <summary>Sets external scope information source for logger provider.</summary>
  230. <param name="scopeProvider">The provider of scope data.</param>
  231. </member>
  232. <member name="T:Microsoft.Extensions.Logging.Logger`1">
  233. <summary>Delegates to a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance using the full name of the given type, created by the
  234. provided <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" />.</summary>
  235. <typeparam name="T">The type.</typeparam>
  236. </member>
  237. <member name="M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)">
  238. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.Logger`1" />.</summary>
  239. <param name="factory">The factory.</param>
  240. </member>
  241. <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#BeginScope``1(``0)">
  242. <summary>Begins a logical operation scope.</summary>
  243. <param name="state" />
  244. <typeparam name="TState" />
  245. <returns>A disposable object that ends the logical operation scope on dispose.</returns>
  246. </member>
  247. <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  248. <summary>Checks if the given <paramref name="logLevel" /> is enabled.</summary>
  249. <param name="logLevel" />
  250. <returns>
  251. <see langword="true" /> if enabled; <see langword="false" /> otherwise.</returns>
  252. </member>
  253. <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
  254. <summary>Writes a log entry.</summary>
  255. <param name="logLevel" />
  256. <param name="eventId" />
  257. <param name="state" />
  258. <param name="exception" />
  259. <param name="formatter" />
  260. <typeparam name="TState" />
  261. </member>
  262. <member name="T:Microsoft.Extensions.Logging.LoggerExtensions">
  263. <summary>ILogger extension methods for common scenarios.</summary>
  264. </member>
  265. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  266. <summary>Formats the message and creates a scope.</summary>
  267. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to create the scope in.</param>
  268. <param name="messageFormat">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  269. <param name="args">An object array that contains zero or more objects to format.</param>
  270. <returns>A disposable scope object. Can be null.</returns>
  271. </member>
  272. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  273. <summary>Formats and writes a log message at the specified log level.</summary>
  274. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  275. <param name="logLevel">Entry will be written on this level.</param>
  276. <param name="eventId">The event id associated with the log.</param>
  277. <param name="exception">The exception to log.</param>
  278. <param name="message">Format string of the log message.</param>
  279. <param name="args">An object array that contains zero or more objects to format.</param>
  280. </member>
  281. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  282. <summary>Formats and writes a log message at the specified log level.</summary>
  283. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  284. <param name="logLevel">Entry will be written on this level.</param>
  285. <param name="eventId">The event id associated with the log.</param>
  286. <param name="message">Format string of the log message.</param>
  287. <param name="args">An object array that contains zero or more objects to format.</param>
  288. </member>
  289. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])">
  290. <summary>Formats and writes a log message at the specified log level.</summary>
  291. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  292. <param name="logLevel">Entry will be written on this level.</param>
  293. <param name="exception">The exception to log.</param>
  294. <param name="message">Format string of the log message.</param>
  295. <param name="args">An object array that contains zero or more objects to format.</param>
  296. </member>
  297. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])">
  298. <summary>Formats and writes a log message at the specified log level.</summary>
  299. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  300. <param name="logLevel">Entry will be written on this level.</param>
  301. <param name="message">Format string of the log message.</param>
  302. <param name="args">An object array that contains zero or more objects to format.</param>
  303. </member>
  304. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  305. <summary>Formats and writes a critical log message.</summary>
  306. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  307. <param name="eventId">The event id associated with the log.</param>
  308. <param name="exception">The exception to log.</param>
  309. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  310. <param name="args">An object array that contains zero or more objects to format.</param>
  311. </member>
  312. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  313. <summary>Formats and writes a critical log message.</summary>
  314. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  315. <param name="eventId">The event id associated with the log.</param>
  316. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  317. <param name="args">An object array that contains zero or more objects to format.</param>
  318. </member>
  319. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  320. <summary>Formats and writes a critical log message.</summary>
  321. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  322. <param name="exception">The exception to log.</param>
  323. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  324. <param name="args">An object array that contains zero or more objects to format.</param>
  325. </member>
  326. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  327. <summary>Formats and writes a critical log message.</summary>
  328. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  329. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  330. <param name="args">An object array that contains zero or more objects to format.</param>
  331. </member>
  332. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  333. <summary>Formats and writes a debug log message.</summary>
  334. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  335. <param name="eventId">The event id associated with the log.</param>
  336. <param name="exception">The exception to log.</param>
  337. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  338. <param name="args">An object array that contains zero or more objects to format.</param>
  339. </member>
  340. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  341. <summary>Formats and writes a debug log message.</summary>
  342. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  343. <param name="eventId">The event id associated with the log.</param>
  344. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  345. <param name="args">An object array that contains zero or more objects to format.</param>
  346. </member>
  347. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  348. <summary>Formats and writes a debug log message.</summary>
  349. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  350. <param name="exception">The exception to log.</param>
  351. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  352. <param name="args">An object array that contains zero or more objects to format.</param>
  353. </member>
  354. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  355. <summary>Formats and writes a debug log message.</summary>
  356. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  357. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  358. <param name="args">An object array that contains zero or more objects to format.</param>
  359. </member>
  360. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  361. <summary>Formats and writes an error log message.</summary>
  362. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  363. <param name="eventId">The event id associated with the log.</param>
  364. <param name="exception">The exception to log.</param>
  365. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  366. <param name="args">An object array that contains zero or more objects to format.</param>
  367. </member>
  368. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  369. <summary>Formats and writes an error log message.</summary>
  370. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  371. <param name="eventId">The event id associated with the log.</param>
  372. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  373. <param name="args">An object array that contains zero or more objects to format.</param>
  374. </member>
  375. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  376. <summary>Formats and writes an error log message.</summary>
  377. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  378. <param name="exception">The exception to log.</param>
  379. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  380. <param name="args">An object array that contains zero or more objects to format.</param>
  381. </member>
  382. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  383. <summary>Formats and writes an error log message.</summary>
  384. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  385. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  386. <param name="args">An object array that contains zero or more objects to format.</param>
  387. </member>
  388. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  389. <summary>Formats and writes an informational log message.</summary>
  390. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  391. <param name="eventId">The event id associated with the log.</param>
  392. <param name="exception">The exception to log.</param>
  393. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  394. <param name="args">An object array that contains zero or more objects to format.</param>
  395. </member>
  396. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  397. <summary>Formats and writes an informational log message.</summary>
  398. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  399. <param name="eventId">The event id associated with the log.</param>
  400. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  401. <param name="args">An object array that contains zero or more objects to format.</param>
  402. </member>
  403. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  404. <summary>Formats and writes an informational log message.</summary>
  405. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  406. <param name="exception">The exception to log.</param>
  407. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  408. <param name="args">An object array that contains zero or more objects to format.</param>
  409. </member>
  410. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  411. <summary>Formats and writes an informational log message.</summary>
  412. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  413. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  414. <param name="args">An object array that contains zero or more objects to format.</param>
  415. </member>
  416. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  417. <summary>Formats and writes a trace log message.</summary>
  418. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  419. <param name="eventId">The event id associated with the log.</param>
  420. <param name="exception">The exception to log.</param>
  421. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  422. <param name="args">An object array that contains zero or more objects to format.</param>
  423. </member>
  424. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  425. <summary>Formats and writes a trace log message.</summary>
  426. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  427. <param name="eventId">The event id associated with the log.</param>
  428. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  429. <param name="args">An object array that contains zero or more objects to format.</param>
  430. </member>
  431. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  432. <summary>Formats and writes a trace log message.</summary>
  433. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  434. <param name="exception">The exception to log.</param>
  435. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  436. <param name="args">An object array that contains zero or more objects to format.</param>
  437. </member>
  438. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  439. <summary>Formats and writes a trace log message.</summary>
  440. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  441. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  442. <param name="args">An object array that contains zero or more objects to format.</param>
  443. </member>
  444. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  445. <summary>Formats and writes a warning log message.</summary>
  446. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  447. <param name="eventId">The event id associated with the log.</param>
  448. <param name="exception">The exception to log.</param>
  449. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  450. <param name="args">An object array that contains zero or more objects to format.</param>
  451. </member>
  452. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  453. <summary>Formats and writes a warning log message.</summary>
  454. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  455. <param name="eventId">The event id associated with the log.</param>
  456. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  457. <param name="args">An object array that contains zero or more objects to format.</param>
  458. </member>
  459. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  460. <summary>Formats and writes a warning log message.</summary>
  461. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  462. <param name="exception">The exception to log.</param>
  463. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  464. <param name="args">An object array that contains zero or more objects to format.</param>
  465. </member>
  466. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  467. <summary>Formats and writes a warning log message.</summary>
  468. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> to write to.</param>
  469. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  470. <param name="args">An object array that contains zero or more objects to format.</param>
  471. </member>
  472. <member name="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider">
  473. <summary>Default implementation of <see cref="T:Microsoft.Extensions.Logging.IExternalScopeProvider" /></summary>
  474. </member>
  475. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.#ctor">
  476. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider" />.</summary>
  477. </member>
  478. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
  479. <summary>Executes callback for each currently active scope objects in order of creation.
  480. All callbacks are guaranteed to be called inline from this method.</summary>
  481. <param name="callback" />
  482. <param name="state" />
  483. <typeparam name="TState" />
  484. </member>
  485. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)">
  486. <summary>Adds scope object to the list.</summary>
  487. <param name="state" />
  488. <returns>The <see cref="T:System.IDisposable" /> token that removes scope on dispose.</returns>
  489. </member>
  490. <member name="T:Microsoft.Extensions.Logging.LoggerFactoryExtensions">
  491. <summary>ILoggerFactory extension methods for common scenarios.</summary>
  492. </member>
  493. <member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)">
  494. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance using the full name of the given <paramref name="type" />.</summary>
  495. <param name="factory">The factory.</param>
  496. <param name="type">The type.</param>
  497. </member>
  498. <member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)">
  499. <summary>Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger" /> instance using the full name of the given type.</summary>
  500. <param name="factory">The factory.</param>
  501. <typeparam name="T">The type.</typeparam>
  502. <returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger" /> that was created.</returns>
  503. </member>
  504. <member name="T:Microsoft.Extensions.Logging.LoggerMessage">
  505. <summary>Creates delegates which can be later cached to log messages in a performant way.</summary>
  506. </member>
  507. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  508. <summary>Creates a delegate which can be invoked for logging a message.</summary>
  509. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" /></param>
  510. <param name="eventId">The event id</param>
  511. <param name="formatString">The named format string</param>
  512. <returns>A delegate which when invoked creates a log message.</returns>
  513. </member>
  514. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  515. <summary>Creates a delegate which can be invoked for logging a message.</summary>
  516. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" /></param>
  517. <param name="eventId">The event id</param>
  518. <param name="formatString">The named format string</param>
  519. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  520. <returns>A delegate which when invoked creates a log message.</returns>
  521. </member>
  522. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  523. <summary>Creates a delegate which can be invoked for logging a message.</summary>
  524. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" /></param>
  525. <param name="eventId">The event id</param>
  526. <param name="formatString">The named format string</param>
  527. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  528. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  529. <returns>A delegate which when invoked creates a log message.</returns>
  530. </member>
  531. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  532. <summary>Creates a delegate which can be invoked for logging a message.</summary>
  533. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" /></param>
  534. <param name="eventId">The event id</param>
  535. <param name="formatString">The named format string</param>
  536. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  537. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  538. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  539. <returns>A delegate which when invoked creates a log message.</returns>
  540. </member>
  541. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  542. <summary>Creates a delegate which can be invoked for logging a message.</summary>
  543. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" /></param>
  544. <param name="eventId">The event id</param>
  545. <param name="formatString">The named format string</param>
  546. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  547. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  548. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  549. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  550. <returns>A delegate which when invoked creates a log message.</returns>
  551. </member>
  552. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  553. <summary>Creates a delegate which can be invoked for logging a message.</summary>
  554. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" /></param>
  555. <param name="eventId">The event id</param>
  556. <param name="formatString">The named format string</param>
  557. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  558. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  559. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  560. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  561. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  562. <returns>A delegate which when invoked creates a log message.</returns>
  563. </member>
  564. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  565. <summary>Creates a delegate which can be invoked for logging a message.</summary>
  566. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel" /></param>
  567. <param name="eventId">The event id</param>
  568. <param name="formatString">The named format string</param>
  569. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  570. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  571. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  572. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  573. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  574. <typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
  575. <returns>A delegate which when invoked creates a log message.</returns>
  576. </member>
  577. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)">
  578. <summary>Creates a delegate which can be invoked to create a log scope.</summary>
  579. <param name="formatString">The named format string</param>
  580. <returns>A delegate which when invoked creates a log scope.</returns>
  581. </member>
  582. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)">
  583. <summary>Creates a delegate which can be invoked to create a log scope.</summary>
  584. <param name="formatString">The named format string</param>
  585. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  586. <returns>A delegate which when invoked creates a log scope.</returns>
  587. </member>
  588. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)">
  589. <summary>Creates a delegate which can be invoked to create a log scope.</summary>
  590. <param name="formatString">The named format string</param>
  591. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  592. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  593. <returns>A delegate which when invoked creates a log scope.</returns>
  594. </member>
  595. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)">
  596. <summary>Creates a delegate which can be invoked to create a log scope.</summary>
  597. <param name="formatString">The named format string</param>
  598. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  599. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  600. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  601. <returns>A delegate which when invoked creates a log scope.</returns>
  602. </member>
  603. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``4(System.String)">
  604. <param name="formatString" />
  605. <typeparam name="T1" />
  606. <typeparam name="T2" />
  607. <typeparam name="T3" />
  608. <typeparam name="T4" />
  609. </member>
  610. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``5(System.String)">
  611. <param name="formatString" />
  612. <typeparam name="T1" />
  613. <typeparam name="T2" />
  614. <typeparam name="T3" />
  615. <typeparam name="T4" />
  616. <typeparam name="T5" />
  617. </member>
  618. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``6(System.String)">
  619. <param name="formatString" />
  620. <typeparam name="T1" />
  621. <typeparam name="T2" />
  622. <typeparam name="T3" />
  623. <typeparam name="T4" />
  624. <typeparam name="T5" />
  625. <typeparam name="T6" />
  626. </member>
  627. <member name="T:Microsoft.Extensions.Logging.LogLevel">
  628. <summary>Defines logging severity levels.</summary>
  629. </member>
  630. <member name="F:Microsoft.Extensions.Logging.LogLevel.Critical">
  631. <summary>Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires
  632. immediate attention.</summary>
  633. </member>
  634. <member name="F:Microsoft.Extensions.Logging.LogLevel.Debug">
  635. <summary>Logs that are used for interactive investigation during development. These logs should primarily contain
  636. information useful for debugging and have no long-term value.</summary>
  637. </member>
  638. <member name="F:Microsoft.Extensions.Logging.LogLevel.Error">
  639. <summary>Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a
  640. failure in the current activity, not an application-wide failure.</summary>
  641. </member>
  642. <member name="F:Microsoft.Extensions.Logging.LogLevel.Information">
  643. <summary>Logs that track the general flow of the application. These logs should have long-term value.</summary>
  644. </member>
  645. <member name="F:Microsoft.Extensions.Logging.LogLevel.None">
  646. <summary>Not used for writing log messages. Specifies that a logging category should not write any messages.</summary>
  647. </member>
  648. <member name="F:Microsoft.Extensions.Logging.LogLevel.Trace">
  649. <summary>Logs that contain the most detailed messages. These messages may contain sensitive application data.
  650. These messages are disabled by default and should never be enabled in a production environment.</summary>
  651. </member>
  652. <member name="F:Microsoft.Extensions.Logging.LogLevel.Warning">
  653. <summary>Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the
  654. application execution to stop.</summary>
  655. </member>
  656. </members>
  657. </doc>