Microsoft.Extensions.Logging.Abstractions.xml 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Logging.Abstractions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Logging.EventId">
  8. <summary>
  9. Identifies a logging event. The primary identifier is the "Id" property, with the "Name" property providing a short description of this type of event.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.Logging.EventId.op_Implicit(System.Int32)~Microsoft.Extensions.Logging.EventId">
  13. <summary>
  14. Implicitly creates an EventId from the given <see cref="T:System.Int32"/>.
  15. </summary>
  16. <param name="i">The <see cref="T:System.Int32"/> to convert to an EventId.</param>
  17. </member>
  18. <member name="M:Microsoft.Extensions.Logging.EventId.op_Equality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)">
  19. <summary>
  20. 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.
  21. </summary>
  22. <param name="left">The first <see cref="T:Microsoft.Extensions.Logging.EventId"/>.</param>
  23. <param name="right">The second <see cref="T:Microsoft.Extensions.Logging.EventId"/>.</param>
  24. <returns><code>true</code> if the objects are equal.</returns>
  25. </member>
  26. <member name="M:Microsoft.Extensions.Logging.EventId.op_Inequality(Microsoft.Extensions.Logging.EventId,Microsoft.Extensions.Logging.EventId)">
  27. <summary>
  28. Checks if two specified <see cref="T:Microsoft.Extensions.Logging.EventId"/> instances have different values.
  29. </summary>
  30. <param name="left">The first <see cref="T:Microsoft.Extensions.Logging.EventId"/>.</param>
  31. <param name="right">The second <see cref="T:Microsoft.Extensions.Logging.EventId"/>.</param>
  32. <returns><code>true</code> if the objects are not equal.</returns>
  33. </member>
  34. <member name="M:Microsoft.Extensions.Logging.EventId.#ctor(System.Int32,System.String)">
  35. <summary>
  36. Initializes an instance of the <see cref="T:Microsoft.Extensions.Logging.EventId"/> struct.
  37. </summary>
  38. <param name="id">The numeric identifier for this event.</param>
  39. <param name="name">The name of this event.</param>
  40. </member>
  41. <member name="P:Microsoft.Extensions.Logging.EventId.Id">
  42. <summary>
  43. Gets the numeric identifier for this event.
  44. </summary>
  45. </member>
  46. <member name="P:Microsoft.Extensions.Logging.EventId.Name">
  47. <summary>
  48. Gets the name of this event.
  49. </summary>
  50. </member>
  51. <member name="M:Microsoft.Extensions.Logging.EventId.ToString">
  52. <inheritdoc />
  53. </member>
  54. <member name="M:Microsoft.Extensions.Logging.EventId.Equals(Microsoft.Extensions.Logging.EventId)">
  55. <summary>
  56. Indicates whether the current object is equal to another object of the same type. Two events are equal if they have the same id.
  57. </summary>
  58. <param name="other">An object to compare with this object.</param>
  59. <returns><code>true</code> if the current object is equal to the other parameter; otherwise, <code>false</code>.</returns>
  60. </member>
  61. <member name="M:Microsoft.Extensions.Logging.EventId.Equals(System.Object)">
  62. <inheritdoc />
  63. </member>
  64. <member name="M:Microsoft.Extensions.Logging.EventId.GetHashCode">
  65. <inheritdoc />
  66. </member>
  67. <member name="T:Microsoft.Extensions.Logging.FormattedLogValues">
  68. <summary>
  69. LogValues to enable formatting options supported by <see cref="M:string.Format"/>.
  70. This also enables using {NamedformatItem} in the format string.
  71. </summary>
  72. </member>
  73. <member name="T:Microsoft.Extensions.Logging.IExternalScopeProvider">
  74. <summary>
  75. Represents a storage of common scope data.
  76. </summary>
  77. </member>
  78. <member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
  79. <summary>
  80. Executes callback for each currently active scope objects in order of creation.
  81. All callbacks are guaranteed to be called inline from this method.
  82. </summary>
  83. <param name="callback">The callback to be executed for every scope object</param>
  84. <param name="state">The state object to be passed into the callback</param>
  85. <typeparam name="TState">The type of state to accept.</typeparam>
  86. </member>
  87. <member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.Push(System.Object)">
  88. <summary>
  89. Adds scope object to the list
  90. </summary>
  91. <param name="state">The scope object</param>
  92. <returns>The <see cref="T:System.IDisposable"/> token that removes scope on dispose.</returns>
  93. </member>
  94. <member name="T:Microsoft.Extensions.Logging.ILogger">
  95. <summary>
  96. Represents a type used to perform logging.
  97. </summary>
  98. <remarks>Aggregates most logging patterns to a single method.</remarks>
  99. </member>
  100. <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})">
  101. <summary>
  102. Writes a log entry.
  103. </summary>
  104. <param name="logLevel">Entry will be written on this level.</param>
  105. <param name="eventId">Id of the event.</param>
  106. <param name="state">The entry to be written. Can be also an object.</param>
  107. <param name="exception">The exception related to this entry.</param>
  108. <param name="formatter">Function to create a <see cref="T:System.String"/> message of the <paramref name="state"/> and <paramref name="exception"/>.</param>
  109. <typeparam name="TState">The type of the object to be written.</typeparam>
  110. </member>
  111. <member name="M:Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  112. <summary>
  113. Checks if the given <paramref name="logLevel"/> is enabled.
  114. </summary>
  115. <param name="logLevel">level to be checked.</param>
  116. <returns><c>true</c> if enabled.</returns>
  117. </member>
  118. <member name="M:Microsoft.Extensions.Logging.ILogger.BeginScope``1(``0)">
  119. <summary>
  120. Begins a logical operation scope.
  121. </summary>
  122. <param name="state">The identifier for the scope.</param>
  123. <typeparam name="TState">The type of the state to begin scope for.</typeparam>
  124. <returns>An <see cref="T:System.IDisposable"/> that ends the logical operation scope on dispose.</returns>
  125. </member>
  126. <member name="T:Microsoft.Extensions.Logging.ILoggerFactory">
  127. <summary>
  128. Represents a type used to configure the logging system and create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger"/> from
  129. the registered <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/>s.
  130. </summary>
  131. </member>
  132. <member name="M:Microsoft.Extensions.Logging.ILoggerFactory.CreateLogger(System.String)">
  133. <summary>
  134. Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance.
  135. </summary>
  136. <param name="categoryName">The category name for messages produced by the logger.</param>
  137. <returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.</returns>
  138. </member>
  139. <member name="M:Microsoft.Extensions.Logging.ILoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
  140. <summary>
  141. Adds an <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/> to the logging system.
  142. </summary>
  143. <param name="provider">The <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/>.</param>
  144. </member>
  145. <member name="T:Microsoft.Extensions.Logging.ILoggerProvider">
  146. <summary>
  147. Represents a type that can create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.
  148. </summary>
  149. </member>
  150. <member name="M:Microsoft.Extensions.Logging.ILoggerProvider.CreateLogger(System.String)">
  151. <summary>
  152. Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance.
  153. </summary>
  154. <param name="categoryName">The category name for messages produced by the logger.</param>
  155. <returns>The instance of <see cref="T:Microsoft.Extensions.Logging.ILogger"/> that was created.</returns>
  156. </member>
  157. <member name="T:Microsoft.Extensions.Logging.ILogger`1">
  158. <summary>
  159. A generic interface for logging where the category name is derived from the specified
  160. <typeparamref name="TCategoryName"/> type name.
  161. Generally used to enable activation of a named <see cref="T:Microsoft.Extensions.Logging.ILogger"/> from dependency injection.
  162. </summary>
  163. <typeparam name="TCategoryName">The type who's name is used for the logger category name.</typeparam>
  164. </member>
  165. <member name="T:Microsoft.Extensions.Logging.ISupportExternalScope">
  166. <summary>
  167. Represents a <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/> that is able to consume external scope information.
  168. </summary>
  169. </member>
  170. <member name="M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)">
  171. <summary>
  172. Sets external scope information source for logger provider.
  173. </summary>
  174. <param name="scopeProvider">The provider of scope data.</param>
  175. </member>
  176. <member name="T:Microsoft.Extensions.Logging.LoggerExtensions">
  177. <summary>
  178. ILogger extension methods for common scenarios.
  179. </summary>
  180. </member>
  181. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  182. <summary>
  183. Formats and writes a debug log message.
  184. </summary>
  185. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  186. <param name="eventId">The event id associated with the log.</param>
  187. <param name="exception">The exception to log.</param>
  188. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  189. <param name="args">An object array that contains zero or more objects to format.</param>
  190. <example>logger.LogDebug(0, exception, "Error while processing request from {Address}", address)</example>
  191. </member>
  192. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  193. <summary>
  194. Formats and writes a debug log message.
  195. </summary>
  196. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  197. <param name="eventId">The event id associated with the log.</param>
  198. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  199. <param name="args">An object array that contains zero or more objects to format.</param>
  200. <example>logger.LogDebug(0, "Processing request from {Address}", address)</example>
  201. </member>
  202. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  203. <summary>
  204. Formats and writes a debug log message.
  205. </summary>
  206. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  207. <param name="exception">The exception to log.</param>
  208. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  209. <param name="args">An object array that contains zero or more objects to format.</param>
  210. <example>logger.LogDebug(exception, "Error while processing request from {Address}", address)</example>
  211. </member>
  212. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  213. <summary>
  214. Formats and writes a debug log message.
  215. </summary>
  216. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  217. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  218. <param name="args">An object array that contains zero or more objects to format.</param>
  219. <example>logger.LogDebug("Processing request from {Address}", address)</example>
  220. </member>
  221. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  222. <summary>
  223. Formats and writes a trace log message.
  224. </summary>
  225. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  226. <param name="eventId">The event id associated with the log.</param>
  227. <param name="exception">The exception to log.</param>
  228. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  229. <param name="args">An object array that contains zero or more objects to format.</param>
  230. <example>logger.LogTrace(0, exception, "Error while processing request from {Address}", address)</example>
  231. </member>
  232. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  233. <summary>
  234. Formats and writes a trace log message.
  235. </summary>
  236. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  237. <param name="eventId">The event id associated with the log.</param>
  238. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  239. <param name="args">An object array that contains zero or more objects to format.</param>
  240. <example>logger.LogTrace(0, "Processing request from {Address}", address)</example>
  241. </member>
  242. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  243. <summary>
  244. Formats and writes a trace log message.
  245. </summary>
  246. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  247. <param name="exception">The exception to log.</param>
  248. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  249. <param name="args">An object array that contains zero or more objects to format.</param>
  250. <example>logger.LogTrace(exception, "Error while processing request from {Address}", address)</example>
  251. </member>
  252. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  253. <summary>
  254. Formats and writes a trace log message.
  255. </summary>
  256. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  257. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  258. <param name="args">An object array that contains zero or more objects to format.</param>
  259. <example>logger.LogTrace("Processing request from {Address}", address)</example>
  260. </member>
  261. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  262. <summary>
  263. Formats and writes an informational log message.
  264. </summary>
  265. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  266. <param name="eventId">The event id associated with the log.</param>
  267. <param name="exception">The exception to log.</param>
  268. <param name="message">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. <example>logger.LogInformation(0, exception, "Error while processing request from {Address}", address)</example>
  271. </member>
  272. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  273. <summary>
  274. Formats and writes an informational log message.
  275. </summary>
  276. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  277. <param name="eventId">The event id associated with the log.</param>
  278. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  279. <param name="args">An object array that contains zero or more objects to format.</param>
  280. <example>logger.LogInformation(0, "Processing request from {Address}", address)</example>
  281. </member>
  282. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  283. <summary>
  284. Formats and writes an informational log message.
  285. </summary>
  286. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  287. <param name="exception">The exception to log.</param>
  288. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  289. <param name="args">An object array that contains zero or more objects to format.</param>
  290. <example>logger.LogInformation(exception, "Error while processing request from {Address}", address)</example>
  291. </member>
  292. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  293. <summary>
  294. Formats and writes an informational log message.
  295. </summary>
  296. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  297. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  298. <param name="args">An object array that contains zero or more objects to format.</param>
  299. <example>logger.LogInformation("Processing request from {Address}", address)</example>
  300. </member>
  301. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  302. <summary>
  303. Formats and writes a warning log message.
  304. </summary>
  305. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  306. <param name="eventId">The event id associated with the log.</param>
  307. <param name="exception">The exception to log.</param>
  308. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  309. <param name="args">An object array that contains zero or more objects to format.</param>
  310. <example>logger.LogWarning(0, exception, "Error while processing request from {Address}", address)</example>
  311. </member>
  312. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  313. <summary>
  314. Formats and writes a warning log message.
  315. </summary>
  316. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  317. <param name="eventId">The event id associated with the log.</param>
  318. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  319. <param name="args">An object array that contains zero or more objects to format.</param>
  320. <example>logger.LogWarning(0, "Processing request from {Address}", address)</example>
  321. </member>
  322. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  323. <summary>
  324. Formats and writes a warning log message.
  325. </summary>
  326. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  327. <param name="exception">The exception to log.</param>
  328. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  329. <param name="args">An object array that contains zero or more objects to format.</param>
  330. <example>logger.LogWarning(exception, "Error while processing request from {Address}", address)</example>
  331. </member>
  332. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  333. <summary>
  334. Formats and writes a warning log message.
  335. </summary>
  336. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</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. <example>logger.LogWarning("Processing request from {Address}", address)</example>
  340. </member>
  341. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  342. <summary>
  343. Formats and writes an error log message.
  344. </summary>
  345. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  346. <param name="eventId">The event id associated with the log.</param>
  347. <param name="exception">The exception to log.</param>
  348. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  349. <param name="args">An object array that contains zero or more objects to format.</param>
  350. <example>logger.LogError(0, exception, "Error while processing request from {Address}", address)</example>
  351. </member>
  352. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  353. <summary>
  354. Formats and writes an error log message.
  355. </summary>
  356. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  357. <param name="eventId">The event id associated with the log.</param>
  358. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  359. <param name="args">An object array that contains zero or more objects to format.</param>
  360. <example>logger.LogError(0, "Processing request from {Address}", address)</example>
  361. </member>
  362. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  363. <summary>
  364. Formats and writes an error log message.
  365. </summary>
  366. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  367. <param name="exception">The exception to log.</param>
  368. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  369. <param name="args">An object array that contains zero or more objects to format.</param>
  370. <example>logger.LogError(exception, "Error while processing request from {Address}", address)</example>
  371. </member>
  372. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  373. <summary>
  374. Formats and writes an error log message.
  375. </summary>
  376. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  377. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  378. <param name="args">An object array that contains zero or more objects to format.</param>
  379. <example>logger.LogError("Processing request from {Address}", address)</example>
  380. </member>
  381. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  382. <summary>
  383. Formats and writes a critical log message.
  384. </summary>
  385. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  386. <param name="eventId">The event id associated with the log.</param>
  387. <param name="exception">The exception to log.</param>
  388. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  389. <param name="args">An object array that contains zero or more objects to format.</param>
  390. <example>logger.LogCritical(0, exception, "Error while processing request from {Address}", address)</example>
  391. </member>
  392. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  393. <summary>
  394. Formats and writes a critical log message.
  395. </summary>
  396. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  397. <param name="eventId">The event id associated with the log.</param>
  398. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  399. <param name="args">An object array that contains zero or more objects to format.</param>
  400. <example>logger.LogCritical(0, "Processing request from {Address}", address)</example>
  401. </member>
  402. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  403. <summary>
  404. Formats and writes a critical log message.
  405. </summary>
  406. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  407. <param name="exception">The exception to log.</param>
  408. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  409. <param name="args">An object array that contains zero or more objects to format.</param>
  410. <example>logger.LogCritical(exception, "Error while processing request from {Address}", address)</example>
  411. </member>
  412. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  413. <summary>
  414. Formats and writes a critical log message.
  415. </summary>
  416. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  417. <param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  418. <param name="args">An object array that contains zero or more objects to format.</param>
  419. <example>logger.LogCritical("Processing request from {Address}", address)</example>
  420. </member>
  421. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])">
  422. <summary>
  423. Formats and writes a log message at the specified log level.
  424. </summary>
  425. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  426. <param name="logLevel">Entry will be written on this level.</param>
  427. <param name="message">Format string of the log message.</param>
  428. <param name="args">An object array that contains zero or more objects to format.</param>
  429. </member>
  430. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  431. <summary>
  432. Formats and writes a log message at the specified log level.
  433. </summary>
  434. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  435. <param name="logLevel">Entry will be written on this level.</param>
  436. <param name="eventId">The event id associated with the log.</param>
  437. <param name="message">Format string of the log message.</param>
  438. <param name="args">An object array that contains zero or more objects to format.</param>
  439. </member>
  440. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])">
  441. <summary>
  442. Formats and writes a log message at the specified log level.
  443. </summary>
  444. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  445. <param name="logLevel">Entry will be written on this level.</param>
  446. <param name="exception">The exception to log.</param>
  447. <param name="message">Format string of the log message.</param>
  448. <param name="args">An object array that contains zero or more objects to format.</param>
  449. </member>
  450. <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[])">
  451. <summary>
  452. Formats and writes a log message at the specified log level.
  453. </summary>
  454. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  455. <param name="logLevel">Entry will be written on this level.</param>
  456. <param name="eventId">The event id associated with the log.</param>
  457. <param name="exception">The exception to log.</param>
  458. <param name="message">Format string of the log message.</param>
  459. <param name="args">An object array that contains zero or more objects to format.</param>
  460. </member>
  461. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  462. <summary>
  463. Formats the message and creates a scope.
  464. </summary>
  465. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to create the scope in.</param>
  466. <param name="messageFormat">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
  467. <param name="args">An object array that contains zero or more objects to format.</param>
  468. <returns>A disposable scope object. Can be null.</returns>
  469. <example>
  470. using(logger.BeginScope("Processing request from {Address}", address))
  471. {
  472. }
  473. </example>
  474. </member>
  475. <member name="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider">
  476. <summary>
  477. Default implementation of <see cref="T:Microsoft.Extensions.Logging.IExternalScopeProvider"/>
  478. </summary>
  479. </member>
  480. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.#ctor">
  481. <summary>
  482. Creates a new <see cref="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider"/>.
  483. </summary>
  484. </member>
  485. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
  486. <inheritdoc />
  487. </member>
  488. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)">
  489. <inheritdoc />
  490. </member>
  491. <member name="T:Microsoft.Extensions.Logging.LoggerFactoryExtensions">
  492. <summary>
  493. ILoggerFactory extension methods for common scenarios.
  494. </summary>
  495. </member>
  496. <member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)">
  497. <summary>
  498. Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given type.
  499. </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="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)">
  505. <summary>
  506. Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given <paramref name="type"/>.
  507. </summary>
  508. <param name="factory">The factory.</param>
  509. <param name="type">The type.</param>
  510. <return>The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> that was created.</return>
  511. </member>
  512. <member name="T:Microsoft.Extensions.Logging.LoggerMessage">
  513. <summary>
  514. Creates delegates which can be later cached to log messages in a performant way.
  515. </summary>
  516. </member>
  517. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)">
  518. <summary>
  519. Creates a delegate which can be invoked to create a log scope.
  520. </summary>
  521. <param name="formatString">The named format string</param>
  522. <returns>A delegate which when invoked creates a log scope.</returns>
  523. </member>
  524. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)">
  525. <summary>
  526. Creates a delegate which can be invoked to create a log scope.
  527. </summary>
  528. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  529. <param name="formatString">The named format string</param>
  530. <returns>A delegate which when invoked creates a log scope.</returns>
  531. </member>
  532. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)">
  533. <summary>
  534. Creates a delegate which can be invoked to create a log scope.
  535. </summary>
  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. <param name="formatString">The named format string</param>
  539. <returns>A delegate which when invoked creates a log scope.</returns>
  540. </member>
  541. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)">
  542. <summary>
  543. Creates a delegate which can be invoked to create a log scope.
  544. </summary>
  545. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  546. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  547. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  548. <param name="formatString">The named format string</param>
  549. <returns>A delegate which when invoked creates a log scope.</returns>
  550. </member>
  551. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  552. <summary>
  553. Creates a delegate which can be invoked for logging a message.
  554. </summary>
  555. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  556. <param name="eventId">The event id</param>
  557. <param name="formatString">The named format string</param>
  558. <returns>A delegate which when invoked creates a log message.</returns>
  559. </member>
  560. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  561. <summary>
  562. Creates a delegate which can be invoked for logging a message.
  563. </summary>
  564. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  565. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  566. <param name="eventId">The event id</param>
  567. <param name="formatString">The named format string</param>
  568. <returns>A delegate which when invoked creates a log message.</returns>
  569. </member>
  570. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  571. <summary>
  572. Creates a delegate which can be invoked for logging a message.
  573. </summary>
  574. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  575. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  576. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  577. <param name="eventId">The event id</param>
  578. <param name="formatString">The named format string</param>
  579. <returns>A delegate which when invoked creates a log message.</returns>
  580. </member>
  581. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  582. <summary>
  583. Creates a delegate which can be invoked for logging a message.
  584. </summary>
  585. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  586. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  587. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  588. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  589. <param name="eventId">The event id</param>
  590. <param name="formatString">The named format string</param>
  591. <returns>A delegate which when invoked creates a log message.</returns>
  592. </member>
  593. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  594. <summary>
  595. Creates a delegate which can be invoked for logging a message.
  596. </summary>
  597. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  598. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  599. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  600. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  601. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  602. <param name="eventId">The event id</param>
  603. <param name="formatString">The named format string</param>
  604. <returns>A delegate which when invoked creates a log message.</returns>
  605. </member>
  606. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  607. <summary>
  608. Creates a delegate which can be invoked for logging a message.
  609. </summary>
  610. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  611. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  612. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  613. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  614. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  615. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  616. <param name="eventId">The event id</param>
  617. <param name="formatString">The named format string</param>
  618. <returns>A delegate which when invoked creates a log message.</returns>
  619. </member>
  620. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  621. <summary>
  622. Creates a delegate which can be invoked for logging a message.
  623. </summary>
  624. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  625. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  626. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  627. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  628. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  629. <typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
  630. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  631. <param name="eventId">The event id</param>
  632. <param name="formatString">The named format string</param>
  633. <returns>A delegate which when invoked creates a log message.</returns>
  634. </member>
  635. <member name="T:Microsoft.Extensions.Logging.Logger`1">
  636. <summary>
  637. Delegates to a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given type, created by the
  638. provided <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/>.
  639. </summary>
  640. <typeparam name="T">The type.</typeparam>
  641. </member>
  642. <member name="M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)">
  643. <summary>
  644. Creates a new <see cref="T:Microsoft.Extensions.Logging.Logger`1"/>.
  645. </summary>
  646. <param name="factory">The factory.</param>
  647. </member>
  648. <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#BeginScope``1(``0)">
  649. <inheritdoc />
  650. </member>
  651. <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  652. <inheritdoc />
  653. </member>
  654. <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})">
  655. <inheritdoc />
  656. </member>
  657. <member name="T:Microsoft.Extensions.Logging.LogLevel">
  658. <summary>
  659. Defines logging severity levels.
  660. </summary>
  661. </member>
  662. <member name="F:Microsoft.Extensions.Logging.LogLevel.Trace">
  663. <summary>
  664. Logs that contain the most detailed messages. These messages may contain sensitive application data.
  665. These messages are disabled by default and should never be enabled in a production environment.
  666. </summary>
  667. </member>
  668. <member name="F:Microsoft.Extensions.Logging.LogLevel.Debug">
  669. <summary>
  670. Logs that are used for interactive investigation during development. These logs should primarily contain
  671. information useful for debugging and have no long-term value.
  672. </summary>
  673. </member>
  674. <member name="F:Microsoft.Extensions.Logging.LogLevel.Information">
  675. <summary>
  676. Logs that track the general flow of the application. These logs should have long-term value.
  677. </summary>
  678. </member>
  679. <member name="F:Microsoft.Extensions.Logging.LogLevel.Warning">
  680. <summary>
  681. Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the
  682. application execution to stop.
  683. </summary>
  684. </member>
  685. <member name="F:Microsoft.Extensions.Logging.LogLevel.Error">
  686. <summary>
  687. Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a
  688. failure in the current activity, not an application-wide failure.
  689. </summary>
  690. </member>
  691. <member name="F:Microsoft.Extensions.Logging.LogLevel.Critical">
  692. <summary>
  693. Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires
  694. immediate attention.
  695. </summary>
  696. </member>
  697. <member name="F:Microsoft.Extensions.Logging.LogLevel.None">
  698. <summary>
  699. Not used for writing log messages. Specifies that a logging category should not write any messages.
  700. </summary>
  701. </member>
  702. <member name="T:Microsoft.Extensions.Logging.LogValuesFormatter">
  703. <summary>
  704. Formatter to convert the named format items like {NamedformatItem} to <see cref="M:string.Format"/> format.
  705. </summary>
  706. </member>
  707. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger">
  708. <summary>
  709. Minimalistic logger that does nothing.
  710. </summary>
  711. </member>
  712. <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLogger.Instance">
  713. <summary>
  714. Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/>.
  715. </summary>
  716. </member>
  717. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)">
  718. <inheritdoc />
  719. </member>
  720. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  721. <inheritdoc />
  722. </member>
  723. <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})">
  724. <inheritdoc />
  725. </member>
  726. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory">
  727. <summary>
  728. An <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> used to create instance of
  729. <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> that logs nothing.
  730. </summary>
  731. </member>
  732. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.#ctor">
  733. <summary>
  734. Creates a new <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory"/> instance.
  735. </summary>
  736. </member>
  737. <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Instance">
  738. <summary>
  739. Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory"/>.
  740. </summary>
  741. </member>
  742. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)">
  743. <inheritdoc />
  744. <remarks>
  745. This returns a <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> instance which logs nothing.
  746. </remarks>
  747. </member>
  748. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
  749. <inheritdoc />
  750. <remarks>
  751. This method ignores the parameter and does nothing.
  752. </remarks>
  753. </member>
  754. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Dispose">
  755. <inheritdoc />
  756. </member>
  757. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider">
  758. <summary>
  759. Provider for the <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/>.
  760. </summary>
  761. </member>
  762. <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Instance">
  763. <summary>
  764. Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider"/>.
  765. </summary>
  766. </member>
  767. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)">
  768. <inheritdoc />
  769. </member>
  770. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose">
  771. <inheritdoc />
  772. </member>
  773. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1">
  774. <summary>
  775. Minimalistic logger that does nothing.
  776. </summary>
  777. </member>
  778. <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Instance">
  779. <summary>
  780. Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1"/>.
  781. </summary>
  782. <returns>An instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1"/>.</returns>
  783. </member>
  784. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)">
  785. <inheritdoc />
  786. </member>
  787. <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})">
  788. <inheritdoc />
  789. <remarks>
  790. This method ignores the parameters and does nothing.
  791. </remarks>
  792. </member>
  793. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  794. <inheritdoc />
  795. </member>
  796. <member name="P:Microsoft.Extensions.Logging.Abstractions.Resource.UnexpectedNumberOfNamedParameters">
  797. <summary>The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).</summary>
  798. </member>
  799. <member name="M:Microsoft.Extensions.Logging.Abstractions.Resource.FormatUnexpectedNumberOfNamedParameters(System.Object,System.Object,System.Object)">
  800. <summary>The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).</summary>
  801. </member>
  802. <member name="T:Microsoft.Extensions.Logging.NullExternalScopeProvider">
  803. <summary>
  804. Scope provider that does nothing.
  805. </summary>
  806. </member>
  807. <member name="P:Microsoft.Extensions.Logging.NullExternalScopeProvider.Instance">
  808. <summary>
  809. Returns a cached instance of <see cref="T:Microsoft.Extensions.Logging.NullExternalScopeProvider"/>.
  810. </summary>
  811. </member>
  812. <member name="M:Microsoft.Extensions.Logging.NullExternalScopeProvider.Microsoft#Extensions#Logging#IExternalScopeProvider#ForEachScope``1(System.Action{System.Object,``0},``0)">
  813. <inheritdoc />
  814. </member>
  815. <member name="M:Microsoft.Extensions.Logging.NullExternalScopeProvider.Microsoft#Extensions#Logging#IExternalScopeProvider#Push(System.Object)">
  816. <inheritdoc />
  817. </member>
  818. <member name="T:Microsoft.Extensions.Logging.NullScope">
  819. <summary>
  820. An empty scope without any logic
  821. </summary>
  822. </member>
  823. <member name="M:Microsoft.Extensions.Logging.NullScope.Dispose">
  824. <inheritdoc />
  825. </member>
  826. <member name="M:Microsoft.Extensions.Internal.TypeNameHelper.GetTypeDisplayName(System.Type,System.Boolean,System.Boolean,System.Boolean,System.Char)">
  827. <summary>
  828. Pretty print a type name.
  829. </summary>
  830. <param name="type">The <see cref="T:System.Type"/>.</param>
  831. <param name="fullName"><c>true</c> to print a fully qualified name.</param>
  832. <param name="includeGenericParameterNames"><c>true</c> to include generic parameter names.</param>
  833. <param name="includeGenericParameters"><c>true</c> to include generic parameters.</param>
  834. <param name="nestedTypeDelimiter">Character to use as a delimiter in nested type names</param>
  835. <returns>The pretty printed type name.</returns>
  836. </member>
  837. </members>
  838. </doc>