Microsoft.Extensions.Logging.Console.xml 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Logging.Console</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Logging.Console.AnsiLogConsole">
  8. <summary>
  9. For consoles which understand the ANSI escape code sequences to represent color
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.Logging.Console.AnsiParser.Parse(System.String)">
  13. <summary>
  14. Parses a subset of display attributes
  15. Set Display Attributes
  16. Set Attribute Mode [{attr1};...;{attrn}m
  17. Sets multiple display attribute settings. The following lists standard attributes that are getting parsed:
  18. 1 Bright
  19. Foreground Colours
  20. 30 Black
  21. 31 Red
  22. 32 Green
  23. 33 Yellow
  24. 34 Blue
  25. 35 Magenta
  26. 36 Cyan
  27. 37 White
  28. Background Colours
  29. 40 Black
  30. 41 Red
  31. 42 Green
  32. 43 Yellow
  33. 44 Blue
  34. 45 Magenta
  35. 46 Cyan
  36. 47 White
  37. </summary>
  38. </member>
  39. <member name="T:Microsoft.Extensions.Logging.Console.ConsoleFormatter">
  40. <summary>
  41. Allows custom log messages formatting
  42. </summary>
  43. </member>
  44. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleFormatter.Name">
  45. <summary>
  46. Gets the name associated with the console log formatter.
  47. </summary>
  48. </member>
  49. <member name="M:Microsoft.Extensions.Logging.Console.ConsoleFormatter.Write``1(Microsoft.Extensions.Logging.Abstractions.LogEntry{``0}@,Microsoft.Extensions.Logging.IExternalScopeProvider,System.IO.TextWriter)">
  50. <summary>
  51. Writes the log message to the specified TextWriter.
  52. </summary>
  53. <remarks>
  54. if the formatter wants to write colors to the console, it can do so by embedding ANSI color codes into the string
  55. </remarks>
  56. <param name="logEntry">The log entry.</param>
  57. <param name="scopeProvider">The provider of scope data.</param>
  58. <param name="textWriter">The string writer embedding ansi code for colors.</param>
  59. <typeparam name="TState">The type of the object to be written.</typeparam>
  60. </member>
  61. <member name="T:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames">
  62. <summary>
  63. Reserved formatter names for the built-in console formatters.
  64. </summary>
  65. </member>
  66. <member name="F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Simple">
  67. <summary>
  68. Reserved name for simple console formatter
  69. </summary>
  70. </member>
  71. <member name="F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Json">
  72. <summary>
  73. Reserved name for json console formatter
  74. </summary>
  75. </member>
  76. <member name="F:Microsoft.Extensions.Logging.Console.ConsoleFormatterNames.Systemd">
  77. <summary>
  78. Reserved name for systemd console formatter
  79. </summary>
  80. </member>
  81. <member name="T:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions">
  82. <summary>
  83. Options for the built-in console log formatter.
  84. </summary>
  85. </member>
  86. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.IncludeScopes">
  87. <summary>
  88. Includes scopes when <see langword="true" />.
  89. </summary>
  90. </member>
  91. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat">
  92. <summary>
  93. Gets or sets format string used to format timestamp in logging messages. Defaults to <c>null</c>.
  94. </summary>
  95. </member>
  96. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.UseUtcTimestamp">
  97. <summary>
  98. Gets or sets indication whether or not UTC timezone should be used to format timestamps in logging messages. Defaults to <c>false</c>.
  99. </summary>
  100. </member>
  101. <member name="T:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat">
  102. <summary>
  103. Format of <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger" /> messages.
  104. </summary>
  105. </member>
  106. <member name="F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.Default">
  107. <summary>
  108. Produces messages in the default console format.
  109. </summary>
  110. </member>
  111. <member name="F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.Systemd">
  112. <summary>
  113. Produces messages in a format suitable for console output to the systemd journal.
  114. </summary>
  115. </member>
  116. <member name="T:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions">
  117. <summary>
  118. Options for a <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/>.
  119. </summary>
  120. </member>
  121. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.DisableColors">
  122. <summary>
  123. Disables colors when <see langword="true" />.
  124. </summary>
  125. </member>
  126. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.Format">
  127. <summary>
  128. Gets or sets log message format. Defaults to <see cref="F:Microsoft.Extensions.Logging.Console.ConsoleLoggerFormat.Default" />.
  129. </summary>
  130. </member>
  131. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.FormatterName">
  132. <summary>
  133. Name of the log message formatter to use. Defaults to "simple" />.
  134. </summary>
  135. </member>
  136. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.IncludeScopes">
  137. <summary>
  138. Includes scopes when <see langword="true" />.
  139. </summary>
  140. </member>
  141. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.LogToStandardErrorThreshold">
  142. <summary>
  143. Gets or sets value indicating the minimum level of messages that would get written to <c>Console.Error</c>.
  144. </summary>
  145. </member>
  146. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.TimestampFormat">
  147. <summary>
  148. Gets or sets format string used to format timestamp in logging messages. Defaults to <c>null</c>.
  149. </summary>
  150. </member>
  151. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.UseUtcTimestamp">
  152. <summary>
  153. Gets or sets indication whether or not UTC timezone should be used to format timestamps in logging messages. Defaults to <c>false</c>.
  154. </summary>
  155. </member>
  156. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.QueueFullMode">
  157. <summary>
  158. Gets or sets the desired console logger behavior when the queue becomes full. Defaults to <c>Wait</c>.
  159. </summary>
  160. </member>
  161. <member name="P:Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions.MaxQueueLength">
  162. <summary>
  163. Gets or sets the maximum number of enqueued messages. Defaults to 2500.
  164. </summary>
  165. </member>
  166. <member name="T:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider">
  167. <summary>
  168. A provider of <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/> instances.
  169. </summary>
  170. </member>
  171. <member name="M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions})">
  172. <summary>
  173. Creates an instance of <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider"/>.
  174. </summary>
  175. <param name="options">The options to create <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/> instances with.</param>
  176. </member>
  177. <member name="M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.#ctor(Microsoft.Extensions.Options.IOptionsMonitor{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Logging.Console.ConsoleFormatter})">
  178. <summary>
  179. Creates an instance of <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider"/>.
  180. </summary>
  181. <param name="options">The options to create <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/> instances with.</param>
  182. <param name="formatters">Log formatters added for <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/> insteaces.</param>
  183. </member>
  184. <member name="M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.CreateLogger(System.String)">
  185. <inheritdoc />
  186. </member>
  187. <member name="M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.Dispose">
  188. <inheritdoc />
  189. </member>
  190. <member name="M:Microsoft.Extensions.Logging.Console.ConsoleLoggerProvider.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)">
  191. <inheritdoc />
  192. </member>
  193. <member name="T:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode">
  194. <summary>
  195. Determines the console logger behavior when the queue becomes full.
  196. </summary>
  197. </member>
  198. <member name="F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.Wait">
  199. <summary>
  200. Blocks the logging threads once the queue limit is reached.
  201. </summary>
  202. </member>
  203. <member name="F:Microsoft.Extensions.Logging.Console.ConsoleLoggerQueueFullMode.DropWrite">
  204. <summary>
  205. Drops new log messages when the queue is full.
  206. </summary>
  207. </member>
  208. <member name="T:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions">
  209. <summary>
  210. Options for the built-in json console log formatter.
  211. </summary>
  212. </member>
  213. <member name="P:Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions.JsonWriterOptions">
  214. <summary>
  215. Gets or sets JsonWriterOptions.
  216. </summary>
  217. </member>
  218. <member name="T:Microsoft.Extensions.Logging.Console.LoggerColorBehavior">
  219. <summary>
  220. Determines when to use color when logging messages.
  221. </summary>
  222. </member>
  223. <member name="F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Default">
  224. <summary>
  225. Use the default color behavior, enabling color except when the console output is redirected.
  226. </summary>
  227. <remarks>
  228. Enables color except when the console output is redirected.
  229. </remarks>
  230. </member>
  231. <member name="F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Enabled">
  232. <summary>
  233. Enable color for logging
  234. </summary>
  235. </member>
  236. <member name="F:Microsoft.Extensions.Logging.Console.LoggerColorBehavior.Disabled">
  237. <summary>
  238. Disable color for logging
  239. </summary>
  240. </member>
  241. <member name="T:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions">
  242. <summary>
  243. Options for the built-in default console log formatter.
  244. </summary>
  245. </member>
  246. <member name="P:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.ColorBehavior">
  247. <summary>
  248. Determines when to use color when logging messages.
  249. </summary>
  250. </member>
  251. <member name="P:Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions.SingleLine">
  252. <summary>
  253. When <see langword="true" />, the entire message gets logged in a single line.
  254. </summary>
  255. </member>
  256. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggingBuilder)">
  257. <summary>
  258. Adds a console logger named 'Console' to the factory.
  259. </summary>
  260. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  261. </member>
  262. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions})">
  263. <summary>
  264. Adds a console logger named 'Console' to the factory.
  265. </summary>
  266. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  267. <param name="configure">A delegate to configure the <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/>.</param>
  268. </member>
  269. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSimpleConsole(Microsoft.Extensions.Logging.ILoggingBuilder)">
  270. <summary>
  271. Add the default console log formatter named 'simple' to the factory with default properties.
  272. </summary>
  273. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  274. </member>
  275. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSimpleConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions})">
  276. <summary>
  277. Add and configure a console log formatter named 'simple' to the factory.
  278. </summary>
  279. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  280. <param name="configure">A delegate to configure the <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/> options for the built-in default log formatter.</param>
  281. </member>
  282. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddJsonConsole(Microsoft.Extensions.Logging.ILoggingBuilder)">
  283. <summary>
  284. Add a console log formatter named 'json' to the factory with default properties.
  285. </summary>
  286. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  287. </member>
  288. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddJsonConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions})">
  289. <summary>
  290. Add and configure a console log formatter named 'json' to the factory.
  291. </summary>
  292. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  293. <param name="configure">A delegate to configure the <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/> options for the built-in json log formatter.</param>
  294. </member>
  295. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSystemdConsole(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions})">
  296. <summary>
  297. Add and configure a console log formatter named 'systemd' to the factory.
  298. </summary>
  299. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  300. <param name="configure">A delegate to configure the <see cref="T:Microsoft.Extensions.Logging.Console.ConsoleLogger"/> options for the built-in systemd log formatter.</param>
  301. </member>
  302. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddSystemdConsole(Microsoft.Extensions.Logging.ILoggingBuilder)">
  303. <summary>
  304. Add a console log formatter named 'systemd' to the factory with default properties.
  305. </summary>
  306. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  307. </member>
  308. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsoleFormatter``2(Microsoft.Extensions.Logging.ILoggingBuilder)">
  309. <summary>
  310. Adds a custom console logger formatter 'TFormatter' to be configured with options 'TOptions'.
  311. </summary>
  312. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  313. </member>
  314. <member name="M:Microsoft.Extensions.Logging.ConsoleLoggerExtensions.AddConsoleFormatter``2(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action{``1})">
  315. <summary>
  316. Adds a custom console logger formatter 'TFormatter' to be configured with options 'TOptions'.
  317. </summary>
  318. <param name="builder">The <see cref="T:Microsoft.Extensions.Logging.ILoggingBuilder"/> to use.</param>
  319. <param name="configure">A delegate to configure options 'TOptions' for custom formatter 'TFormatter'.</param>
  320. </member>
  321. <member name="T:Microsoft.Extensions.Logging.NullExternalScopeProvider">
  322. <summary>
  323. Scope provider that does nothing.
  324. </summary>
  325. </member>
  326. <member name="P:Microsoft.Extensions.Logging.NullExternalScopeProvider.Instance">
  327. <summary>
  328. Returns a cached instance of <see cref="T:Microsoft.Extensions.Logging.NullExternalScopeProvider"/>.
  329. </summary>
  330. </member>
  331. <member name="M:Microsoft.Extensions.Logging.NullExternalScopeProvider.Microsoft#Extensions#Logging#IExternalScopeProvider#ForEachScope``1(System.Action{System.Object,``0},``0)">
  332. <inheritdoc />
  333. </member>
  334. <member name="M:Microsoft.Extensions.Logging.NullExternalScopeProvider.Microsoft#Extensions#Logging#IExternalScopeProvider#Push(System.Object)">
  335. <inheritdoc />
  336. </member>
  337. <member name="T:Microsoft.Extensions.Logging.NullScope">
  338. <summary>
  339. An empty scope without any logic
  340. </summary>
  341. </member>
  342. <member name="M:Microsoft.Extensions.Logging.NullScope.Dispose">
  343. <inheritdoc />
  344. </member>
  345. <member name="M:System.ThrowHelper.ThrowIfNull(System.Object,System.String)">
  346. <summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
  347. <param name="argument">The reference type argument to validate as non-null.</param>
  348. <param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
  349. </member>
  350. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  351. <summary>
  352. Attribute used to indicate a source generator should create a function for marshalling
  353. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  354. </summary>
  355. <remarks>
  356. This attribute is meaningless if the source generator associated with it is not enabled.
  357. The current built-in source generator only supports C# and only supplies an implementation when
  358. applied to static, partial, non-generic methods.
  359. </remarks>
  360. </member>
  361. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  362. <summary>
  363. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  364. </summary>
  365. <param name="libraryName">Name of the library containing the import.</param>
  366. </member>
  367. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  368. <summary>
  369. Gets the name of the library containing the import.
  370. </summary>
  371. </member>
  372. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  373. <summary>
  374. Gets or sets the name of the entry point to be called.
  375. </summary>
  376. </member>
  377. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  378. <summary>
  379. Gets or sets how to marshal string arguments to the method.
  380. </summary>
  381. <remarks>
  382. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  383. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  384. </remarks>
  385. </member>
  386. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  387. <summary>
  388. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  389. </summary>
  390. <remarks>
  391. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  392. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  393. </remarks>
  394. </member>
  395. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  396. <summary>
  397. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  398. on other platforms) before returning from the attributed method.
  399. </summary>
  400. </member>
  401. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  402. <summary>
  403. Specifies how strings should be marshalled for generated p/invokes
  404. </summary>
  405. </member>
  406. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  407. <summary>
  408. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  409. </summary>
  410. </member>
  411. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  412. <summary>
  413. Use the platform-provided UTF-8 marshaller.
  414. </summary>
  415. </member>
  416. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  417. <summary>
  418. Use the platform-provided UTF-16 marshaller.
  419. </summary>
  420. </member>
  421. <member name="T:System.Runtime.Versioning.OSPlatformAttribute">
  422. <summary>
  423. Base type for all platform-specific API attributes.
  424. </summary>
  425. </member>
  426. <member name="T:System.Runtime.Versioning.TargetPlatformAttribute">
  427. <summary>
  428. Records the platform that the project targeted.
  429. </summary>
  430. </member>
  431. <member name="T:System.Runtime.Versioning.SupportedOSPlatformAttribute">
  432. <summary>
  433. Records the operating system (and minimum version) that supports an API. Multiple attributes can be
  434. applied to indicate support on multiple operating systems.
  435. </summary>
  436. <remarks>
  437. Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformAttribute" />
  438. or use guards to prevent calls to APIs on unsupported operating systems.
  439. A given platform should only be specified once.
  440. </remarks>
  441. </member>
  442. <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute">
  443. <summary>
  444. Marks APIs that were removed in a given operating system version.
  445. </summary>
  446. <remarks>
  447. Primarily used by OS bindings to indicate APIs that are only available in
  448. earlier versions.
  449. </remarks>
  450. </member>
  451. <member name="T:System.Runtime.Versioning.ObsoletedOSPlatformAttribute">
  452. <summary>
  453. Marks APIs that were obsoleted in a given operating system version.
  454. </summary>
  455. <remarks>
  456. Primarily used by OS bindings to indicate APIs that should not be used anymore.
  457. </remarks>
  458. </member>
  459. <member name="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute">
  460. <summary>
  461. Annotates a custom guard field, property or method with a supported platform name and optional version.
  462. Multiple attributes can be applied to indicate guard for multiple supported platforms.
  463. </summary>
  464. <remarks>
  465. Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute" /> to a field, property or method
  466. and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.
  467. The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.
  468. </remarks>
  469. </member>
  470. <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute">
  471. <summary>
  472. Annotates the custom guard field, property or method with an unsupported platform name and optional version.
  473. Multiple attributes can be applied to indicate guard for multiple unsupported platforms.
  474. </summary>
  475. <remarks>
  476. Callers can apply a <see cref="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute" /> to a field, property or method
  477. and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.
  478. The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.
  479. </remarks>
  480. </member>
  481. <member name="F:System.ConsoleUtils.s_emitAnsiColorCodes">
  482. <summary>Whether to output ansi color strings.</summary>
  483. </member>
  484. <member name="P:System.ConsoleUtils.EmitAnsiColorCodes">
  485. <summary>Get whether to emit ANSI color codes.</summary>
  486. </member>
  487. <member name="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute">
  488. <summary>
  489. Indicates that certain members on a specified <see cref="T:System.Type"/> are accessed dynamically,
  490. for example through <see cref="N:System.Reflection"/>.
  491. </summary>
  492. <remarks>
  493. This allows tools to understand which members are being accessed during the execution
  494. of a program.
  495. This attribute is valid on members whose type is <see cref="T:System.Type"/> or <see cref="T:System.String"/>.
  496. When this attribute is applied to a location of type <see cref="T:System.String"/>, the assumption is
  497. that the string represents a fully qualified type name.
  498. When this attribute is applied to a class, interface, or struct, the members specified
  499. can be accessed dynamically on <see cref="T:System.Type"/> instances returned from calling
  500. <see cref="M:System.Object.GetType"/> on instances of that class, interface, or struct.
  501. If the attribute is applied to a method it's treated as a special case and it implies
  502. the attribute should be applied to the "this" parameter of the method. As such the attribute
  503. should only be used on instance methods of types assignable to System.Type (or string, but no methods
  504. will use it there).
  505. </remarks>
  506. </member>
  507. <member name="M:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes)">
  508. <summary>
  509. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute"/> class
  510. with the specified member types.
  511. </summary>
  512. <param name="memberTypes">The types of members dynamically accessed.</param>
  513. </member>
  514. <member name="P:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.MemberTypes">
  515. <summary>
  516. Gets the <see cref="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes"/> which specifies the type
  517. of members dynamically accessed.
  518. </summary>
  519. </member>
  520. <member name="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">
  521. <summary>
  522. Specifies the types of members that are dynamically accessed.
  523. This enumeration has a <see cref="T:System.FlagsAttribute"/> attribute that allows a
  524. bitwise combination of its member values.
  525. </summary>
  526. </member>
  527. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.None">
  528. <summary>
  529. Specifies no members.
  530. </summary>
  531. </member>
  532. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor">
  533. <summary>
  534. Specifies the default, parameterless public constructor.
  535. </summary>
  536. </member>
  537. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors">
  538. <summary>
  539. Specifies all public constructors.
  540. </summary>
  541. </member>
  542. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicConstructors">
  543. <summary>
  544. Specifies all non-public constructors.
  545. </summary>
  546. </member>
  547. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods">
  548. <summary>
  549. Specifies all public methods.
  550. </summary>
  551. </member>
  552. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicMethods">
  553. <summary>
  554. Specifies all non-public methods.
  555. </summary>
  556. </member>
  557. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields">
  558. <summary>
  559. Specifies all public fields.
  560. </summary>
  561. </member>
  562. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicFields">
  563. <summary>
  564. Specifies all non-public fields.
  565. </summary>
  566. </member>
  567. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes">
  568. <summary>
  569. Specifies all public nested types.
  570. </summary>
  571. </member>
  572. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes">
  573. <summary>
  574. Specifies all non-public nested types.
  575. </summary>
  576. </member>
  577. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties">
  578. <summary>
  579. Specifies all public properties.
  580. </summary>
  581. </member>
  582. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicProperties">
  583. <summary>
  584. Specifies all non-public properties.
  585. </summary>
  586. </member>
  587. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents">
  588. <summary>
  589. Specifies all public events.
  590. </summary>
  591. </member>
  592. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicEvents">
  593. <summary>
  594. Specifies all non-public events.
  595. </summary>
  596. </member>
  597. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.Interfaces">
  598. <summary>
  599. Specifies all interfaces implemented by the type.
  600. </summary>
  601. </member>
  602. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All">
  603. <summary>
  604. Specifies all members.
  605. </summary>
  606. </member>
  607. <member name="T:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute">
  608. <summary>
  609. Indicates that the specified method requires dynamic access to code that is not referenced
  610. statically, for example through <see cref="N:System.Reflection"/>.
  611. </summary>
  612. <remarks>
  613. This allows tools to understand which methods are unsafe to call when removing unreferenced
  614. code from an application.
  615. </remarks>
  616. </member>
  617. <member name="M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.#ctor(System.String)">
  618. <summary>
  619. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute"/> class
  620. with the specified message.
  621. </summary>
  622. <param name="message">
  623. A message that contains information about the usage of unreferenced code.
  624. </param>
  625. </member>
  626. <member name="P:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.Message">
  627. <summary>
  628. Gets a message that contains information about the usage of unreferenced code.
  629. </summary>
  630. </member>
  631. <member name="P:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.Url">
  632. <summary>
  633. Gets or sets an optional URL that contains more information about the method,
  634. why it requires unreferenced code, and what options a consumer has to deal with it.
  635. </summary>
  636. </member>
  637. <member name="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute">
  638. <summary>
  639. Suppresses reporting of a specific rule violation, allowing multiple suppressions on a
  640. single code artifact.
  641. </summary>
  642. <remarks>
  643. <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/> is different than
  644. <see cref="T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute"/> in that it doesn't have a
  645. <see cref="T:System.Diagnostics.ConditionalAttribute"/>. So it is always preserved in the compiled assembly.
  646. </remarks>
  647. </member>
  648. <member name="M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.#ctor(System.String,System.String)">
  649. <summary>
  650. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/>
  651. class, specifying the category of the tool and the identifier for an analysis rule.
  652. </summary>
  653. <param name="category">The category for the attribute.</param>
  654. <param name="checkId">The identifier of the analysis rule the attribute applies to.</param>
  655. </member>
  656. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category">
  657. <summary>
  658. Gets the category identifying the classification of the attribute.
  659. </summary>
  660. <remarks>
  661. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category"/> property describes the tool or tool analysis category
  662. for which a message suppression attribute applies.
  663. </remarks>
  664. </member>
  665. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.CheckId">
  666. <summary>
  667. Gets the identifier of the analysis tool rule to be suppressed.
  668. </summary>
  669. <remarks>
  670. Concatenated together, the <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category"/> and <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.CheckId"/>
  671. properties form a unique check identifier.
  672. </remarks>
  673. </member>
  674. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Scope">
  675. <summary>
  676. Gets or sets the scope of the code that is relevant for the attribute.
  677. </summary>
  678. <remarks>
  679. The Scope property is an optional argument that specifies the metadata scope for which
  680. the attribute is relevant.
  681. </remarks>
  682. </member>
  683. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Target">
  684. <summary>
  685. Gets or sets a fully qualified path that represents the target of the attribute.
  686. </summary>
  687. <remarks>
  688. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Target"/> property is an optional argument identifying the analysis target
  689. of the attribute. An example value is "System.IO.Stream.ctor():System.Void".
  690. Because it is fully qualified, it can be long, particularly for targets such as parameters.
  691. The analysis tool user interface should be capable of automatically formatting the parameter.
  692. </remarks>
  693. </member>
  694. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.MessageId">
  695. <summary>
  696. Gets or sets an optional argument expanding on exclusion criteria.
  697. </summary>
  698. <remarks>
  699. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.MessageId"/> property is an optional argument that specifies additional
  700. exclusion where the literal metadata target is not sufficiently precise. For example,
  701. the <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/> cannot be applied within a method,
  702. and it may be desirable to suppress a violation against a statement in the method that will
  703. give a rule violation, but not against all statements in the method.
  704. </remarks>
  705. </member>
  706. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Justification">
  707. <summary>
  708. Gets or sets the justification for suppressing the code analysis message.
  709. </summary>
  710. </member>
  711. <member name="T:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute">
  712. <summary>
  713. Indicates that the specified method requires the ability to generate new code at runtime,
  714. for example through <see cref="N:System.Reflection"/>.
  715. </summary>
  716. <remarks>
  717. This allows tools to understand which methods are unsafe to call when compiling ahead of time.
  718. </remarks>
  719. </member>
  720. <member name="M:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.#ctor(System.String)">
  721. <summary>
  722. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute"/> class
  723. with the specified message.
  724. </summary>
  725. <param name="message">
  726. A message that contains information about the usage of dynamic code.
  727. </param>
  728. </member>
  729. <member name="P:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.Message">
  730. <summary>
  731. Gets a message that contains information about the usage of dynamic code.
  732. </summary>
  733. </member>
  734. <member name="P:System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute.Url">
  735. <summary>
  736. Gets or sets an optional URL that contains more information about the method,
  737. why it requires dynamic code, and what options a consumer has to deal with it.
  738. </summary>
  739. </member>
  740. <member name="T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute">
  741. <summary>Specifies the syntax used in a string.</summary>
  742. </member>
  743. <member name="M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String)">
  744. <summary>Initializes the <see cref="T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute"/> with the identifier of the syntax used.</summary>
  745. <param name="syntax">The syntax identifier.</param>
  746. </member>
  747. <member name="M:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.#ctor(System.String,System.Object[])">
  748. <summary>Initializes the <see cref="T:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute"/> with the identifier of the syntax used.</summary>
  749. <param name="syntax">The syntax identifier.</param>
  750. <param name="arguments">Optional arguments associated with the specific syntax employed.</param>
  751. </member>
  752. <member name="P:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Syntax">
  753. <summary>Gets the identifier of the syntax used.</summary>
  754. </member>
  755. <member name="P:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Arguments">
  756. <summary>Optional arguments associated with the specific syntax employed.</summary>
  757. </member>
  758. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.CompositeFormat">
  759. <summary>The syntax identifier for strings containing composite formats for string formatting.</summary>
  760. </member>
  761. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateOnlyFormat">
  762. <summary>The syntax identifier for strings containing date format specifiers.</summary>
  763. </member>
  764. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.DateTimeFormat">
  765. <summary>The syntax identifier for strings containing date and time format specifiers.</summary>
  766. </member>
  767. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.EnumFormat">
  768. <summary>The syntax identifier for strings containing <see cref="T:System.Enum"/> format specifiers.</summary>
  769. </member>
  770. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.GuidFormat">
  771. <summary>The syntax identifier for strings containing <see cref="T:System.Guid"/> format specifiers.</summary>
  772. </member>
  773. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Json">
  774. <summary>The syntax identifier for strings containing JavaScript Object Notation (JSON).</summary>
  775. </member>
  776. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.NumericFormat">
  777. <summary>The syntax identifier for strings containing numeric format specifiers.</summary>
  778. </member>
  779. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Regex">
  780. <summary>The syntax identifier for strings containing regular expressions.</summary>
  781. </member>
  782. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeOnlyFormat">
  783. <summary>The syntax identifier for strings containing time format specifiers.</summary>
  784. </member>
  785. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.TimeSpanFormat">
  786. <summary>The syntax identifier for strings containing <see cref="T:System.TimeSpan"/> format specifiers.</summary>
  787. </member>
  788. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Uri">
  789. <summary>The syntax identifier for strings containing URIs.</summary>
  790. </member>
  791. <member name="F:System.Diagnostics.CodeAnalysis.StringSyntaxAttribute.Xml">
  792. <summary>The syntax identifier for strings containing XML.</summary>
  793. </member>
  794. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  795. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  796. </member>
  797. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  798. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  799. </member>
  800. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  801. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  802. </member>
  803. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  804. <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>
  805. </member>
  806. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  807. <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>
  808. </member>
  809. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  810. <summary>Initializes the attribute with the specified return value condition.</summary>
  811. <param name="returnValue">
  812. The return value condition. If the method returns this value, the associated parameter may be null.
  813. </param>
  814. </member>
  815. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  816. <summary>Gets the return value condition.</summary>
  817. </member>
  818. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  819. <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>
  820. </member>
  821. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  822. <summary>Initializes the attribute with the specified return value condition.</summary>
  823. <param name="returnValue">
  824. The return value condition. If the method returns this value, the associated parameter will not be null.
  825. </param>
  826. </member>
  827. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  828. <summary>Gets the return value condition.</summary>
  829. </member>
  830. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  831. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  832. </member>
  833. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  834. <summary>Initializes the attribute with the associated parameter name.</summary>
  835. <param name="parameterName">
  836. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  837. </param>
  838. </member>
  839. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  840. <summary>Gets the associated parameter name.</summary>
  841. </member>
  842. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  843. <summary>Applied to a method that will never return under any circumstance.</summary>
  844. </member>
  845. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  846. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  847. </member>
  848. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  849. <summary>Initializes the attribute with the specified parameter value.</summary>
  850. <param name="parameterValue">
  851. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  852. the associated parameter matches this value.
  853. </param>
  854. </member>
  855. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  856. <summary>Gets the condition parameter value.</summary>
  857. </member>
  858. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  859. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  860. </member>
  861. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  862. <summary>Initializes the attribute with a field or property member.</summary>
  863. <param name="member">
  864. The field or property member that is promised to be not-null.
  865. </param>
  866. </member>
  867. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  868. <summary>Initializes the attribute with the list of field and property members.</summary>
  869. <param name="members">
  870. The list of field and property members that are promised to be not-null.
  871. </param>
  872. </member>
  873. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  874. <summary>Gets field or property member names.</summary>
  875. </member>
  876. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  877. <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>
  878. </member>
  879. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  880. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  881. <param name="returnValue">
  882. The return value condition. If the method returns this value, the associated parameter will not be null.
  883. </param>
  884. <param name="member">
  885. The field or property member that is promised to be not-null.
  886. </param>
  887. </member>
  888. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  889. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  890. <param name="returnValue">
  891. The return value condition. If the method returns this value, the associated parameter will not be null.
  892. </param>
  893. <param name="members">
  894. The list of field and property members that are promised to be not-null.
  895. </param>
  896. </member>
  897. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  898. <summary>Gets the return value condition.</summary>
  899. </member>
  900. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  901. <summary>Gets field or property member names.</summary>
  902. </member>
  903. <member name="P:System.SR.BufferMaximumSizeExceeded">
  904. <summary>Cannot allocate a buffer of size {0}.</summary>
  905. </member>
  906. <member name="P:System.SR.QueueModeNotSupported">
  907. <summary>{0} is not a supported queue mode value.</summary>
  908. </member>
  909. <member name="P:System.SR.MaxQueueLengthBadValue">
  910. <summary>{0} must be larger than zero.</summary>
  911. </member>
  912. <member name="P:System.SR.WarningMessageOnDrop">
  913. <summary>{0} message(s) dropped because of queue size limit. Increase the queue size or decrease logging verbosity to avoid this. You may change `ConsoleLoggerQueueFullMode` to stop dropping messages.</summary>
  914. </member>
  915. </members>
  916. </doc>