CNAS取数仪器端升级
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.

1351 lines
88KB

  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><see langword="true" /> 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><see langword="true" /> 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><see langword="true" /> if the current object is equal to the other parameter; otherwise, <see langword="false" />.</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:System.String.Format(System.IFormatProvider,System.String,System.Object)"/>.
  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 whose name is used for the logger category name.</typeparam>
  164. </member>
  165. <member name="T:Microsoft.Extensions.Logging.ILoggingBuilder">
  166. <summary>
  167. An interface for configuring logging providers.
  168. </summary>
  169. </member>
  170. <member name="P:Microsoft.Extensions.Logging.ILoggingBuilder.Services">
  171. <summary>
  172. Gets the <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> where Logging services are configured.
  173. </summary>
  174. </member>
  175. <member name="T:Microsoft.Extensions.Logging.ISupportExternalScope">
  176. <summary>
  177. Represents a <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/> that is able to consume external scope information.
  178. </summary>
  179. </member>
  180. <member name="M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)">
  181. <summary>
  182. Sets external scope information source for logger provider.
  183. </summary>
  184. <param name="scopeProvider">The provider of scope data.</param>
  185. </member>
  186. <member name="T:Microsoft.Extensions.Logging.LogDefineOptions">
  187. <summary>
  188. Options for <see cref="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)"/> and its overloads
  189. </summary>
  190. </member>
  191. <member name="P:Microsoft.Extensions.Logging.LogDefineOptions.SkipEnabledCheck">
  192. <summary>
  193. Gets or sets the flag to skip IsEnabled check for the logging method.
  194. </summary>
  195. </member>
  196. <member name="T:Microsoft.Extensions.Logging.Abstractions.LogEntry`1">
  197. <summary>
  198. Holds the information for a single log entry.
  199. </summary>
  200. </member>
  201. <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})">
  202. <summary>
  203. Initializes an instance of the LogEntry struct.
  204. </summary>
  205. <param name="logLevel">The log level.</param>
  206. <param name="category">The category name for the log.</param>
  207. <param name="eventId">The log event Id.</param>
  208. <param name="state">The state for which log is being written.</param>
  209. <param name="exception">The log exception.</param>
  210. <param name="formatter">The formatter.</param>
  211. </member>
  212. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.LogLevel">
  213. <summary>
  214. Gets the LogLevel
  215. </summary>
  216. </member>
  217. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category">
  218. <summary>
  219. Gets the log category
  220. </summary>
  221. </member>
  222. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId">
  223. <summary>
  224. Gets the log EventId
  225. </summary>
  226. </member>
  227. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State">
  228. <summary>
  229. Gets the TState
  230. </summary>
  231. </member>
  232. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception">
  233. <summary>
  234. Gets the log exception
  235. </summary>
  236. </member>
  237. <member name="P:Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter">
  238. <summary>
  239. Gets the formatter
  240. </summary>
  241. </member>
  242. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger">
  243. <summary>
  244. Minimalistic logger that does nothing.
  245. </summary>
  246. </member>
  247. <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLogger.Instance">
  248. <summary>
  249. Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/>.
  250. </summary>
  251. </member>
  252. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.#ctor">
  253. <summary>
  254. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> class.
  255. </summary>
  256. </member>
  257. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)">
  258. <inheritdoc />
  259. </member>
  260. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  261. <inheritdoc />
  262. </member>
  263. <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})">
  264. <inheritdoc />
  265. </member>
  266. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory">
  267. <summary>
  268. An <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> used to create instance of
  269. <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> that logs nothing.
  270. </summary>
  271. </member>
  272. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.#ctor">
  273. <summary>
  274. Creates a new <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory"/> instance.
  275. </summary>
  276. </member>
  277. <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Instance">
  278. <summary>
  279. Returns the shared instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory"/>.
  280. </summary>
  281. </member>
  282. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)">
  283. <inheritdoc />
  284. <remarks>
  285. This returns a <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> instance which logs nothing.
  286. </remarks>
  287. </member>
  288. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
  289. <inheritdoc />
  290. <remarks>
  291. This method ignores the parameter and does nothing.
  292. </remarks>
  293. </member>
  294. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.Dispose">
  295. <inheritdoc />
  296. </member>
  297. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider">
  298. <summary>
  299. Provider for the <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/>.
  300. </summary>
  301. </member>
  302. <member name="P:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Instance">
  303. <summary>
  304. Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider"/>.
  305. </summary>
  306. </member>
  307. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)">
  308. <inheritdoc />
  309. </member>
  310. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose">
  311. <inheritdoc />
  312. </member>
  313. <member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1">
  314. <summary>
  315. Minimalistic logger that does nothing.
  316. </summary>
  317. </member>
  318. <member name="F:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Instance">
  319. <summary>
  320. Returns an instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1"/>.
  321. </summary>
  322. <returns>An instance of <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1"/>.</returns>
  323. </member>
  324. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)">
  325. <inheritdoc />
  326. </member>
  327. <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})">
  328. <inheritdoc />
  329. <remarks>
  330. This method ignores the parameters and does nothing.
  331. </remarks>
  332. </member>
  333. <member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  334. <inheritdoc />
  335. </member>
  336. <member name="T:Microsoft.Extensions.Logging.LoggerExtensions">
  337. <summary>
  338. ILogger extension methods for common scenarios.
  339. </summary>
  340. </member>
  341. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  342. <summary>
  343. Formats and writes a debug 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: <c>"User {User} logged in from {Address}"</c></param>
  349. <param name="args">An object array that contains zero or more objects to format.</param>
  350. <example>logger.LogDebug(0, exception, "Error while processing request from {Address}", address)</example>
  351. </member>
  352. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  353. <summary>
  354. Formats and writes a debug 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: <c>"User {User} logged in from {Address}"</c></param>
  359. <param name="args">An object array that contains zero or more objects to format.</param>
  360. <example>logger.LogDebug(0, "Processing request from {Address}", address)</example>
  361. </member>
  362. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  363. <summary>
  364. Formats and writes a debug 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: <c>"User {User} logged in from {Address}"</c></param>
  369. <param name="args">An object array that contains zero or more objects to format.</param>
  370. <example>logger.LogDebug(exception, "Error while processing request from {Address}", address)</example>
  371. </member>
  372. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  373. <summary>
  374. Formats and writes a debug 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: <c>"User {User} logged in from {Address}"</c></param>
  378. <param name="args">An object array that contains zero or more objects to format.</param>
  379. <example>logger.LogDebug("Processing request from {Address}", address)</example>
  380. </member>
  381. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  382. <summary>
  383. Formats and writes a trace 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: <c>"User {User} logged in from {Address}"</c></param>
  389. <param name="args">An object array that contains zero or more objects to format.</param>
  390. <example>logger.LogTrace(0, exception, "Error while processing request from {Address}", address)</example>
  391. </member>
  392. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  393. <summary>
  394. Formats and writes a trace 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: <c>"User {User} logged in from {Address}"</c></param>
  399. <param name="args">An object array that contains zero or more objects to format.</param>
  400. <example>logger.LogTrace(0, "Processing request from {Address}", address)</example>
  401. </member>
  402. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  403. <summary>
  404. Formats and writes a trace 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: <c>"User {User} logged in from {Address}"</c></param>
  409. <param name="args">An object array that contains zero or more objects to format.</param>
  410. <example>logger.LogTrace(exception, "Error while processing request from {Address}", address)</example>
  411. </member>
  412. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  413. <summary>
  414. Formats and writes a trace 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: <c>"User {User} logged in from {Address}"</c></param>
  418. <param name="args">An object array that contains zero or more objects to format.</param>
  419. <example>logger.LogTrace("Processing request from {Address}", address)</example>
  420. </member>
  421. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  422. <summary>
  423. Formats and writes an informational log message.
  424. </summary>
  425. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  426. <param name="eventId">The event id associated with the log.</param>
  427. <param name="exception">The exception to log.</param>
  428. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  429. <param name="args">An object array that contains zero or more objects to format.</param>
  430. <example>logger.LogInformation(0, exception, "Error while processing request from {Address}", address)</example>
  431. </member>
  432. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  433. <summary>
  434. Formats and writes an informational log message.
  435. </summary>
  436. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  437. <param name="eventId">The event id associated with the log.</param>
  438. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  439. <param name="args">An object array that contains zero or more objects to format.</param>
  440. <example>logger.LogInformation(0, "Processing request from {Address}", address)</example>
  441. </member>
  442. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  443. <summary>
  444. Formats and writes an informational log message.
  445. </summary>
  446. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  447. <param name="exception">The exception to log.</param>
  448. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  449. <param name="args">An object array that contains zero or more objects to format.</param>
  450. <example>logger.LogInformation(exception, "Error while processing request from {Address}", address)</example>
  451. </member>
  452. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  453. <summary>
  454. Formats and writes an informational log message.
  455. </summary>
  456. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  457. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  458. <param name="args">An object array that contains zero or more objects to format.</param>
  459. <example>logger.LogInformation("Processing request from {Address}", address)</example>
  460. </member>
  461. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  462. <summary>
  463. Formats and writes a warning log message.
  464. </summary>
  465. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  466. <param name="eventId">The event id associated with the log.</param>
  467. <param name="exception">The exception to log.</param>
  468. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  469. <param name="args">An object array that contains zero or more objects to format.</param>
  470. <example>logger.LogWarning(0, exception, "Error while processing request from {Address}", address)</example>
  471. </member>
  472. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  473. <summary>
  474. Formats and writes a warning log message.
  475. </summary>
  476. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  477. <param name="eventId">The event id associated with the log.</param>
  478. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  479. <param name="args">An object array that contains zero or more objects to format.</param>
  480. <example>logger.LogWarning(0, "Processing request from {Address}", address)</example>
  481. </member>
  482. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  483. <summary>
  484. Formats and writes a warning log message.
  485. </summary>
  486. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  487. <param name="exception">The exception to log.</param>
  488. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  489. <param name="args">An object array that contains zero or more objects to format.</param>
  490. <example>logger.LogWarning(exception, "Error while processing request from {Address}", address)</example>
  491. </member>
  492. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  493. <summary>
  494. Formats and writes a warning log message.
  495. </summary>
  496. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  497. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  498. <param name="args">An object array that contains zero or more objects to format.</param>
  499. <example>logger.LogWarning("Processing request from {Address}", address)</example>
  500. </member>
  501. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  502. <summary>
  503. Formats and writes an error log message.
  504. </summary>
  505. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  506. <param name="eventId">The event id associated with the log.</param>
  507. <param name="exception">The exception to log.</param>
  508. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  509. <param name="args">An object array that contains zero or more objects to format.</param>
  510. <example>logger.LogError(0, exception, "Error while processing request from {Address}", address)</example>
  511. </member>
  512. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  513. <summary>
  514. Formats and writes an error log message.
  515. </summary>
  516. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  517. <param name="eventId">The event id associated with the log.</param>
  518. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  519. <param name="args">An object array that contains zero or more objects to format.</param>
  520. <example>logger.LogError(0, "Processing request from {Address}", address)</example>
  521. </member>
  522. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  523. <summary>
  524. Formats and writes an error log message.
  525. </summary>
  526. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  527. <param name="exception">The exception to log.</param>
  528. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  529. <param name="args">An object array that contains zero or more objects to format.</param>
  530. <example>logger.LogError(exception, "Error while processing request from {Address}", address)</example>
  531. </member>
  532. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  533. <summary>
  534. Formats and writes an error log message.
  535. </summary>
  536. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  537. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  538. <param name="args">An object array that contains zero or more objects to format.</param>
  539. <example>logger.LogError("Processing request from {Address}", address)</example>
  540. </member>
  541. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
  542. <summary>
  543. Formats and writes a critical log message.
  544. </summary>
  545. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  546. <param name="eventId">The event id associated with the log.</param>
  547. <param name="exception">The exception to log.</param>
  548. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  549. <param name="args">An object array that contains zero or more objects to format.</param>
  550. <example>logger.LogCritical(0, exception, "Error while processing request from {Address}", address)</example>
  551. </member>
  552. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  553. <summary>
  554. Formats and writes a critical log message.
  555. </summary>
  556. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  557. <param name="eventId">The event id associated with the log.</param>
  558. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  559. <param name="args">An object array that contains zero or more objects to format.</param>
  560. <example>logger.LogCritical(0, "Processing request from {Address}", address)</example>
  561. </member>
  562. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
  563. <summary>
  564. Formats and writes a critical log message.
  565. </summary>
  566. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  567. <param name="exception">The exception to log.</param>
  568. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  569. <param name="args">An object array that contains zero or more objects to format.</param>
  570. <example>logger.LogCritical(exception, "Error while processing request from {Address}", address)</example>
  571. </member>
  572. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  573. <summary>
  574. Formats and writes a critical log message.
  575. </summary>
  576. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  577. <param name="message">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  578. <param name="args">An object array that contains zero or more objects to format.</param>
  579. <example>logger.LogCritical("Processing request from {Address}", address)</example>
  580. </member>
  581. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])">
  582. <summary>
  583. Formats and writes a log message at the specified log level.
  584. </summary>
  585. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  586. <param name="logLevel">Entry will be written on this level.</param>
  587. <param name="message">Format string of the log message.</param>
  588. <param name="args">An object array that contains zero or more objects to format.</param>
  589. </member>
  590. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
  591. <summary>
  592. Formats and writes a log message at the specified log level.
  593. </summary>
  594. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  595. <param name="logLevel">Entry will be written on this level.</param>
  596. <param name="eventId">The event id associated with the log.</param>
  597. <param name="message">Format string of the log message.</param>
  598. <param name="args">An object array that contains zero or more objects to format.</param>
  599. </member>
  600. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])">
  601. <summary>
  602. Formats and writes a log message at the specified log level.
  603. </summary>
  604. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  605. <param name="logLevel">Entry will be written on this level.</param>
  606. <param name="exception">The exception to log.</param>
  607. <param name="message">Format string of the log message.</param>
  608. <param name="args">An object array that contains zero or more objects to format.</param>
  609. </member>
  610. <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[])">
  611. <summary>
  612. Formats and writes a log message at the specified log level.
  613. </summary>
  614. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
  615. <param name="logLevel">Entry will be written on this level.</param>
  616. <param name="eventId">The event id associated with the log.</param>
  617. <param name="exception">The exception to log.</param>
  618. <param name="message">Format string of the log message.</param>
  619. <param name="args">An object array that contains zero or more objects to format.</param>
  620. </member>
  621. <member name="M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
  622. <summary>
  623. Formats the message and creates a scope.
  624. </summary>
  625. <param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to create the scope in.</param>
  626. <param name="messageFormat">Format string of the log message in message template format. Example: <c>"User {User} logged in from {Address}"</c></param>
  627. <param name="args">An object array that contains zero or more objects to format.</param>
  628. <returns>A disposable scope object. Can be null.</returns>
  629. <example>
  630. using(logger.BeginScope("Processing request from {Address}", address))
  631. {
  632. }
  633. </example>
  634. </member>
  635. <member name="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider">
  636. <summary>
  637. Default implementation of <see cref="T:Microsoft.Extensions.Logging.IExternalScopeProvider"/>
  638. </summary>
  639. </member>
  640. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.#ctor">
  641. <summary>
  642. Creates a new <see cref="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider"/>.
  643. </summary>
  644. </member>
  645. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
  646. <inheritdoc />
  647. </member>
  648. <member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)">
  649. <inheritdoc />
  650. </member>
  651. <member name="T:Microsoft.Extensions.Logging.LoggerFactoryExtensions">
  652. <summary>
  653. ILoggerFactory extension methods for common scenarios.
  654. </summary>
  655. </member>
  656. <member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)">
  657. <summary>
  658. Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given type.
  659. </summary>
  660. <param name="factory">The factory.</param>
  661. <typeparam name="T">The type.</typeparam>
  662. <returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> that was created.</returns>
  663. </member>
  664. <member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)">
  665. <summary>
  666. Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given <paramref name="type"/>.
  667. </summary>
  668. <param name="factory">The factory.</param>
  669. <param name="type">The type.</param>
  670. <returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> that was created.</returns>
  671. </member>
  672. <member name="T:Microsoft.Extensions.Logging.LoggerMessage">
  673. <summary>
  674. Creates delegates which can be later cached to log messages in a performant way.
  675. </summary>
  676. </member>
  677. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)">
  678. <summary>
  679. Creates a delegate which can be invoked to create a log scope.
  680. </summary>
  681. <param name="formatString">The named format string</param>
  682. <returns>A delegate which when invoked creates a log scope.</returns>
  683. </member>
  684. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)">
  685. <summary>
  686. Creates a delegate which can be invoked to create a log scope.
  687. </summary>
  688. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  689. <param name="formatString">The named format string</param>
  690. <returns>A delegate which when invoked creates a log scope.</returns>
  691. </member>
  692. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)">
  693. <summary>
  694. Creates a delegate which can be invoked to create a log scope.
  695. </summary>
  696. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  697. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  698. <param name="formatString">The named format string</param>
  699. <returns>A delegate which when invoked creates a log scope.</returns>
  700. </member>
  701. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)">
  702. <summary>
  703. Creates a delegate which can be invoked to create a log scope.
  704. </summary>
  705. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  706. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  707. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  708. <param name="formatString">The named format string</param>
  709. <returns>A delegate which when invoked creates a log scope.</returns>
  710. </member>
  711. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``4(System.String)">
  712. <summary>
  713. Creates a delegate which can be invoked to create a log scope.
  714. </summary>
  715. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  716. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  717. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  718. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  719. <param name="formatString">The named format string</param>
  720. <returns>A delegate which when invoked creates a log scope.</returns>
  721. </member>
  722. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``5(System.String)">
  723. <summary>
  724. Creates a delegate which can be invoked to create a log scope.
  725. </summary>
  726. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  727. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  728. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  729. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  730. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  731. <param name="formatString">The named format string</param>
  732. <returns>A delegate which when invoked creates a log scope.</returns>
  733. </member>
  734. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``6(System.String)">
  735. <summary>
  736. Creates a delegate which can be invoked to create a log scope.
  737. </summary>
  738. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  739. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  740. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  741. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  742. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  743. <typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
  744. <param name="formatString">The named format string</param>
  745. <returns>A delegate which when invoked creates a log scope.</returns>
  746. </member>
  747. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  748. <summary>
  749. Creates a delegate which can be invoked for logging a message.
  750. </summary>
  751. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  752. <param name="eventId">The event id</param>
  753. <param name="formatString">The named format string</param>
  754. <returns>A delegate which when invoked creates a log message.</returns>
  755. </member>
  756. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
  757. <summary>
  758. Creates a delegate which can be invoked for logging a message.
  759. </summary>
  760. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  761. <param name="eventId">The event id</param>
  762. <param name="formatString">The named format string</param>
  763. <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions"/></param>
  764. <returns>A delegate which when invoked creates a log message.</returns>
  765. </member>
  766. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  767. <summary>
  768. Creates a delegate which can be invoked for logging a message.
  769. </summary>
  770. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  771. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  772. <param name="eventId">The event id</param>
  773. <param name="formatString">The named format string</param>
  774. <returns>A delegate which when invoked creates a log message.</returns>
  775. </member>
  776. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
  777. <summary>
  778. Creates a delegate which can be invoked for logging a message.
  779. </summary>
  780. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  781. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  782. <param name="eventId">The event id</param>
  783. <param name="formatString">The named format string</param>
  784. <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions"/></param>
  785. <returns>A delegate which when invoked creates a log message.</returns>
  786. </member>
  787. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  788. <summary>
  789. Creates a delegate which can be invoked for logging a message.
  790. </summary>
  791. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  792. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  793. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  794. <param name="eventId">The event id</param>
  795. <param name="formatString">The named format string</param>
  796. <returns>A delegate which when invoked creates a log message.</returns>
  797. </member>
  798. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
  799. <summary>
  800. Creates a delegate which can be invoked for logging a message.
  801. </summary>
  802. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  803. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  804. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  805. <param name="eventId">The event id</param>
  806. <param name="formatString">The named format string</param>
  807. <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions"/></param>
  808. <returns>A delegate which when invoked creates a log message.</returns>
  809. </member>
  810. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  811. <summary>
  812. Creates a delegate which can be invoked for logging a message.
  813. </summary>
  814. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  815. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  816. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  817. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  818. <param name="eventId">The event id</param>
  819. <param name="formatString">The named format string</param>
  820. <returns>A delegate which when invoked creates a log message.</returns>
  821. </member>
  822. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
  823. <summary>
  824. Creates a delegate which can be invoked for logging a message.
  825. </summary>
  826. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  827. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  828. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  829. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  830. <param name="eventId">The event id</param>
  831. <param name="formatString">The named format string</param>
  832. <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions"/></param>
  833. <returns>A delegate which when invoked creates a log message.</returns>
  834. </member>
  835. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  836. <summary>
  837. Creates a delegate which can be invoked for logging a message.
  838. </summary>
  839. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  840. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  841. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  842. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  843. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  844. <param name="eventId">The event id</param>
  845. <param name="formatString">The named format string</param>
  846. <returns>A delegate which when invoked creates a log message.</returns>
  847. </member>
  848. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
  849. <summary>
  850. Creates a delegate which can be invoked for logging a message.
  851. </summary>
  852. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  853. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  854. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  855. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  856. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  857. <param name="eventId">The event id</param>
  858. <param name="formatString">The named format string</param>
  859. <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions"/></param>
  860. <returns>A delegate which when invoked creates a log message.</returns>
  861. </member>
  862. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  863. <summary>
  864. Creates a delegate which can be invoked for logging a message.
  865. </summary>
  866. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  867. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  868. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  869. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  870. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  871. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  872. <param name="eventId">The event id</param>
  873. <param name="formatString">The named format string</param>
  874. <returns>A delegate which when invoked creates a log message.</returns>
  875. </member>
  876. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
  877. <summary>
  878. Creates a delegate which can be invoked for logging a message.
  879. </summary>
  880. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  881. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  882. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  883. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  884. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  885. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  886. <param name="eventId">The event id</param>
  887. <param name="formatString">The named format string</param>
  888. <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions"/></param>
  889. <returns>A delegate which when invoked creates a log message.</returns>
  890. </member>
  891. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
  892. <summary>
  893. Creates a delegate which can be invoked for logging a message.
  894. </summary>
  895. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  896. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  897. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  898. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  899. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  900. <typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
  901. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  902. <param name="eventId">The event id</param>
  903. <param name="formatString">The named format string</param>
  904. <returns>A delegate which when invoked creates a log message.</returns>
  905. </member>
  906. <member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,Microsoft.Extensions.Logging.LogDefineOptions)">
  907. <summary>
  908. Creates a delegate which can be invoked for logging a message.
  909. </summary>
  910. <typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
  911. <typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
  912. <typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
  913. <typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
  914. <typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
  915. <typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
  916. <param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
  917. <param name="eventId">The event id</param>
  918. <param name="formatString">The named format string</param>
  919. <param name="options">The <see cref="T:Microsoft.Extensions.Logging.LogDefineOptions"/></param>
  920. <returns>A delegate which when invoked creates a log message.</returns>
  921. </member>
  922. <member name="T:Microsoft.Extensions.Logging.LoggerMessageAttribute">
  923. <summary>
  924. Provides information to guide the production of a strongly-typed logging method.
  925. </summary>
  926. <remarks>
  927. <para>The method this attribute is applied to:</para>
  928. <para> - Must be a partial method.</para>
  929. <para> - Must return <c>void</c>.</para>
  930. <para> - Must not be generic.</para>
  931. <para> - Must have an <see cref="T:Microsoft.Extensions.Logging.ILogger"/> as one of its parameters.</para>
  932. <para> - Must have a <see cref="T:Microsoft.Extensions.Logging.LogLevel"/> as one of its parameters.</para>
  933. <para> - None of the parameters can be generic.</para>
  934. </remarks>
  935. <example>
  936. <format type="text/markdown"><![CDATA[
  937. ```csharp
  938. static partial class Log
  939. {
  940. [LoggerMessage(EventId = 0, Message = "Could not open socket for {hostName}")]
  941. static partial void CouldNotOpenSocket(ILogger logger, LogLevel level, string hostName);
  942. }
  943. ```
  944. ]]></format>
  945. </example>
  946. </member>
  947. <member name="M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor">
  948. <summary>
  949. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.LoggerMessageAttribute"/> class
  950. which is used to guide the production of a strongly-typed logging method.
  951. </summary>
  952. </member>
  953. <member name="M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String)">
  954. <summary>
  955. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.LoggerMessageAttribute"/> class
  956. which is used to guide the production of a strongly-typed logging method.
  957. </summary>
  958. <param name="eventId">The log event Id.</param>
  959. <param name="level">The log level.</param>
  960. <param name="message">Format string of the log message.</param>
  961. </member>
  962. <member name="M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(Microsoft.Extensions.Logging.LogLevel,System.String)">
  963. <summary>
  964. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.LoggerMessageAttribute"/> class
  965. which is used to guide the production of a strongly-typed logging method.
  966. </summary>
  967. <param name="level">The log level.</param>
  968. <param name="message">Format string of the log message.</param>
  969. </member>
  970. <member name="M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(Microsoft.Extensions.Logging.LogLevel)">
  971. <summary>
  972. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.LoggerMessageAttribute"/> class
  973. which is used to guide the production of a strongly-typed logging method.
  974. </summary>
  975. <param name="level">The log level.</param>
  976. </member>
  977. <member name="M:Microsoft.Extensions.Logging.LoggerMessageAttribute.#ctor(System.String)">
  978. <summary>
  979. Initializes a new instance of the <see cref="T:Microsoft.Extensions.Logging.LoggerMessageAttribute"/> class
  980. which is used to guide the production of a strongly-typed logging method.
  981. </summary>
  982. <param name="message">Format string of the log message.</param>
  983. </member>
  984. <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventId">
  985. <summary>
  986. Gets the logging event id for the logging method.
  987. </summary>
  988. </member>
  989. <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.EventName">
  990. <summary>
  991. Gets or sets the logging event name for the logging method.
  992. </summary>
  993. <remarks>
  994. This will equal the method name if not specified.
  995. </remarks>
  996. </member>
  997. <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Level">
  998. <summary>
  999. Gets the logging level for the logging method.
  1000. </summary>
  1001. </member>
  1002. <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.Message">
  1003. <summary>
  1004. Gets the message text for the logging method.
  1005. </summary>
  1006. </member>
  1007. <member name="P:Microsoft.Extensions.Logging.LoggerMessageAttribute.SkipEnabledCheck">
  1008. <summary>
  1009. Gets the flag to skip IsEnabled check for the logging method.
  1010. </summary>
  1011. </member>
  1012. <member name="T:Microsoft.Extensions.Logging.Logger`1">
  1013. <summary>
  1014. Delegates to a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given type, created by the
  1015. provided <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/>.
  1016. </summary>
  1017. <typeparam name="T">The type.</typeparam>
  1018. </member>
  1019. <member name="M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)">
  1020. <summary>
  1021. Creates a new <see cref="T:Microsoft.Extensions.Logging.Logger`1"/>.
  1022. </summary>
  1023. <param name="factory">The factory.</param>
  1024. </member>
  1025. <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#BeginScope``1(``0)">
  1026. <inheritdoc />
  1027. </member>
  1028. <member name="M:Microsoft.Extensions.Logging.Logger`1.Microsoft#Extensions#Logging#ILogger#IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
  1029. <inheritdoc />
  1030. </member>
  1031. <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})">
  1032. <inheritdoc />
  1033. </member>
  1034. <member name="T:Microsoft.Extensions.Logging.LogLevel">
  1035. <summary>
  1036. Defines logging severity levels.
  1037. </summary>
  1038. </member>
  1039. <member name="F:Microsoft.Extensions.Logging.LogLevel.Trace">
  1040. <summary>
  1041. Logs that contain the most detailed messages. These messages may contain sensitive application data.
  1042. These messages are disabled by default and should never be enabled in a production environment.
  1043. </summary>
  1044. </member>
  1045. <member name="F:Microsoft.Extensions.Logging.LogLevel.Debug">
  1046. <summary>
  1047. Logs that are used for interactive investigation during development. These logs should primarily contain
  1048. information useful for debugging and have no long-term value.
  1049. </summary>
  1050. </member>
  1051. <member name="F:Microsoft.Extensions.Logging.LogLevel.Information">
  1052. <summary>
  1053. Logs that track the general flow of the application. These logs should have long-term value.
  1054. </summary>
  1055. </member>
  1056. <member name="F:Microsoft.Extensions.Logging.LogLevel.Warning">
  1057. <summary>
  1058. Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the
  1059. application execution to stop.
  1060. </summary>
  1061. </member>
  1062. <member name="F:Microsoft.Extensions.Logging.LogLevel.Error">
  1063. <summary>
  1064. Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a
  1065. failure in the current activity, not an application-wide failure.
  1066. </summary>
  1067. </member>
  1068. <member name="F:Microsoft.Extensions.Logging.LogLevel.Critical">
  1069. <summary>
  1070. Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires
  1071. immediate attention.
  1072. </summary>
  1073. </member>
  1074. <member name="F:Microsoft.Extensions.Logging.LogLevel.None">
  1075. <summary>
  1076. Not used for writing log messages. Specifies that a logging category should not write any messages.
  1077. </summary>
  1078. </member>
  1079. <member name="T:Microsoft.Extensions.Logging.LogValuesFormatter">
  1080. <summary>
  1081. Formatter to convert the named format items like {NamedformatItem} to <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object)"/> format.
  1082. </summary>
  1083. </member>
  1084. <member name="T:Microsoft.Extensions.Logging.NullExternalScopeProvider">
  1085. <summary>
  1086. Scope provider that does nothing.
  1087. </summary>
  1088. </member>
  1089. <member name="P:Microsoft.Extensions.Logging.NullExternalScopeProvider.Instance">
  1090. <summary>
  1091. Returns a cached instance of <see cref="T:Microsoft.Extensions.Logging.NullExternalScopeProvider"/>.
  1092. </summary>
  1093. </member>
  1094. <member name="M:Microsoft.Extensions.Logging.NullExternalScopeProvider.Microsoft#Extensions#Logging#IExternalScopeProvider#ForEachScope``1(System.Action{System.Object,``0},``0)">
  1095. <inheritdoc />
  1096. </member>
  1097. <member name="M:Microsoft.Extensions.Logging.NullExternalScopeProvider.Microsoft#Extensions#Logging#IExternalScopeProvider#Push(System.Object)">
  1098. <inheritdoc />
  1099. </member>
  1100. <member name="T:Microsoft.Extensions.Logging.NullScope">
  1101. <summary>
  1102. An empty scope without any logic
  1103. </summary>
  1104. </member>
  1105. <member name="M:Microsoft.Extensions.Logging.NullScope.Dispose">
  1106. <inheritdoc />
  1107. </member>
  1108. <member name="M:Microsoft.Extensions.Internal.TypeNameHelper.GetTypeDisplayName(System.Type,System.Boolean,System.Boolean,System.Boolean,System.Char)">
  1109. <summary>
  1110. Pretty print a type name.
  1111. </summary>
  1112. <param name="type">The <see cref="T:System.Type"/>.</param>
  1113. <param name="fullName"><c>true</c> to print a fully qualified name.</param>
  1114. <param name="includeGenericParameterNames"><c>true</c> to include generic parameter names.</param>
  1115. <param name="includeGenericParameters"><c>true</c> to include generic parameters.</param>
  1116. <param name="nestedTypeDelimiter">Character to use as a delimiter in nested type names</param>
  1117. <returns>The pretty printed type name.</returns>
  1118. </member>
  1119. <member name="M:System.Text.ValueStringBuilder.GetPinnableReference">
  1120. <summary>
  1121. Get a pinnable reference to the builder.
  1122. Does not ensure there is a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/>
  1123. This overload is pattern matched in the C# 7.3+ compiler so you can omit
  1124. the explicit method call, and write eg "fixed (char* c = builder)"
  1125. </summary>
  1126. </member>
  1127. <member name="M:System.Text.ValueStringBuilder.GetPinnableReference(System.Boolean)">
  1128. <summary>
  1129. Get a pinnable reference to the builder.
  1130. </summary>
  1131. <param name="terminate">Ensures that the builder has a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/></param>
  1132. </member>
  1133. <member name="P:System.Text.ValueStringBuilder.RawChars">
  1134. <summary>Returns the underlying storage of the builder.</summary>
  1135. </member>
  1136. <member name="M:System.Text.ValueStringBuilder.AsSpan(System.Boolean)">
  1137. <summary>
  1138. Returns a span around the contents of the builder.
  1139. </summary>
  1140. <param name="terminate">Ensures that the builder has a null char after <see cref="P:System.Text.ValueStringBuilder.Length"/></param>
  1141. </member>
  1142. <member name="M:System.Text.ValueStringBuilder.Grow(System.Int32)">
  1143. <summary>
  1144. Resize the internal buffer either by doubling current buffer size or
  1145. by adding <paramref name="additionalCapacityBeyondPos"/> to
  1146. <see cref="F:System.Text.ValueStringBuilder._pos"/> whichever is greater.
  1147. </summary>
  1148. <param name="additionalCapacityBeyondPos">
  1149. Number of chars requested beyond current position.
  1150. </param>
  1151. </member>
  1152. <member name="M:System.ThrowHelper.ThrowIfNull(System.Object,System.String)">
  1153. <summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
  1154. <param name="argument">The reference type argument to validate as non-null.</param>
  1155. <param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
  1156. </member>
  1157. <member name="M:System.ThrowHelper.IfNullOrWhitespace(System.String,System.String)">
  1158. <summary>
  1159. Throws either an <see cref="T:System.ArgumentNullException"/> or an <see cref="T:System.ArgumentException"/>
  1160. if the specified string is <see langword="null"/> or whitespace respectively.
  1161. </summary>
  1162. <param name="argument">String to be checked for <see langword="null"/> or whitespace.</param>
  1163. <param name="paramName">The name of the parameter being checked.</param>
  1164. <returns>The original value of <paramref name="argument"/>.</returns>
  1165. </member>
  1166. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  1167. <summary>
  1168. Attribute used to indicate a source generator should create a function for marshalling
  1169. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  1170. </summary>
  1171. <remarks>
  1172. This attribute is meaningless if the source generator associated with it is not enabled.
  1173. The current built-in source generator only supports C# and only supplies an implementation when
  1174. applied to static, partial, non-generic methods.
  1175. </remarks>
  1176. </member>
  1177. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  1178. <summary>
  1179. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  1180. </summary>
  1181. <param name="libraryName">Name of the library containing the import.</param>
  1182. </member>
  1183. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  1184. <summary>
  1185. Gets the name of the library containing the import.
  1186. </summary>
  1187. </member>
  1188. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  1189. <summary>
  1190. Gets or sets the name of the entry point to be called.
  1191. </summary>
  1192. </member>
  1193. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  1194. <summary>
  1195. Gets or sets how to marshal string arguments to the method.
  1196. </summary>
  1197. <remarks>
  1198. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  1199. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  1200. </remarks>
  1201. </member>
  1202. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  1203. <summary>
  1204. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  1205. </summary>
  1206. <remarks>
  1207. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  1208. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  1209. </remarks>
  1210. </member>
  1211. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  1212. <summary>
  1213. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  1214. on other platforms) before returning from the attributed method.
  1215. </summary>
  1216. </member>
  1217. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  1218. <summary>
  1219. Specifies how strings should be marshalled for generated p/invokes
  1220. </summary>
  1221. </member>
  1222. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  1223. <summary>
  1224. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  1225. </summary>
  1226. </member>
  1227. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  1228. <summary>
  1229. Use the platform-provided UTF-8 marshaller.
  1230. </summary>
  1231. </member>
  1232. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  1233. <summary>
  1234. Use the platform-provided UTF-16 marshaller.
  1235. </summary>
  1236. </member>
  1237. <member name="P:System.SR.UnexpectedNumberOfNamedParameters">
  1238. <summary>The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).</summary>
  1239. </member>
  1240. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  1241. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  1242. </member>
  1243. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  1244. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  1245. </member>
  1246. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  1247. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  1248. </member>
  1249. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  1250. <summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>
  1251. </member>
  1252. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  1253. <summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue"/>, the parameter may be null even if the corresponding type disallows it.</summary>
  1254. </member>
  1255. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  1256. <summary>Initializes the attribute with the specified return value condition.</summary>
  1257. <param name="returnValue">
  1258. The return value condition. If the method returns this value, the associated parameter may be null.
  1259. </param>
  1260. </member>
  1261. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  1262. <summary>Gets the return value condition.</summary>
  1263. </member>
  1264. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  1265. <summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue"/>, the parameter will not be null even if the corresponding type allows it.</summary>
  1266. </member>
  1267. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  1268. <summary>Initializes the attribute with the specified return value condition.</summary>
  1269. <param name="returnValue">
  1270. The return value condition. If the method returns this value, the associated parameter will not be null.
  1271. </param>
  1272. </member>
  1273. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  1274. <summary>Gets the return value condition.</summary>
  1275. </member>
  1276. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  1277. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  1278. </member>
  1279. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  1280. <summary>Initializes the attribute with the associated parameter name.</summary>
  1281. <param name="parameterName">
  1282. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  1283. </param>
  1284. </member>
  1285. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  1286. <summary>Gets the associated parameter name.</summary>
  1287. </member>
  1288. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  1289. <summary>Applied to a method that will never return under any circumstance.</summary>
  1290. </member>
  1291. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  1292. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  1293. </member>
  1294. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  1295. <summary>Initializes the attribute with the specified parameter value.</summary>
  1296. <param name="parameterValue">
  1297. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  1298. the associated parameter matches this value.
  1299. </param>
  1300. </member>
  1301. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  1302. <summary>Gets the condition parameter value.</summary>
  1303. </member>
  1304. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  1305. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  1306. </member>
  1307. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  1308. <summary>Initializes the attribute with a field or property member.</summary>
  1309. <param name="member">
  1310. The field or property member that is promised to be not-null.
  1311. </param>
  1312. </member>
  1313. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  1314. <summary>Initializes the attribute with the list of field and property members.</summary>
  1315. <param name="members">
  1316. The list of field and property members that are promised to be not-null.
  1317. </param>
  1318. </member>
  1319. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  1320. <summary>Gets field or property member names.</summary>
  1321. </member>
  1322. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  1323. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>
  1324. </member>
  1325. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  1326. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  1327. <param name="returnValue">
  1328. The return value condition. If the method returns this value, the associated parameter will not be null.
  1329. </param>
  1330. <param name="member">
  1331. The field or property member that is promised to be not-null.
  1332. </param>
  1333. </member>
  1334. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  1335. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  1336. <param name="returnValue">
  1337. The return value condition. If the method returns this value, the associated parameter will not be null.
  1338. </param>
  1339. <param name="members">
  1340. The list of field and property members that are promised to be not-null.
  1341. </param>
  1342. </member>
  1343. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  1344. <summary>Gets the return value condition.</summary>
  1345. </member>
  1346. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  1347. <summary>Gets field or property member names.</summary>
  1348. </member>
  1349. </members>
  1350. </doc>