Microsoft.Extensions.Configuration.Abstractions.xml 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Configuration.Abstractions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext">
  8. <summary>
  9. Provides the data about current item of the configuration.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.#ctor(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)">
  13. <summary>
  14. Initializes a new instance of <see cref="T:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext"/>.
  15. </summary>
  16. <param name="path">The path of the current item of the configuration.</param>
  17. <param name="key">The key of the current item of the configuration.</param>
  18. <param name="value">The value of the current item of the configuration.</param>
  19. <param name="configurationProvider">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" /> to use to get the value of the current item.</param>
  20. </member>
  21. <member name="P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Path">
  22. <summary>
  23. Gets the path of the current item.
  24. </summary>
  25. </member>
  26. <member name="P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Key">
  27. <summary>
  28. Gets the key of the current item.
  29. </summary>
  30. </member>
  31. <member name="P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Value">
  32. <summary>
  33. Gets the value of the current item.
  34. </summary>
  35. </member>
  36. <member name="P:Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.ConfigurationProvider">
  37. <summary>
  38. Gets the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider" /> that was used to get the value of the current item.
  39. </summary>
  40. </member>
  41. <member name="T:Microsoft.Extensions.Configuration.ConfigurationExtensions">
  42. <summary>
  43. Extension methods for configuration classes.
  44. </summary>
  45. </member>
  46. <member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Add``1(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{``0})">
  47. <summary>
  48. Adds a new configuration source.
  49. </summary>
  50. <param name="builder">The builder to add to.</param>
  51. <param name="configureSource">Configures the source secrets.</param>
  52. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  53. </member>
  54. <member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.GetConnectionString(Microsoft.Extensions.Configuration.IConfiguration,System.String)">
  55. <summary>
  56. Shorthand for GetSection("ConnectionStrings")[name].
  57. </summary>
  58. <param name="configuration">The configuration to enumerate.</param>
  59. <param name="name">The connection string key.</param>
  60. <returns>The connection string.</returns>
  61. </member>
  62. <member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration)">
  63. <summary>
  64. Get the enumeration of key value pairs within the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" />
  65. </summary>
  66. <param name="configuration">The configuration to enumerate.</param>
  67. <returns>An enumeration of key value pairs.</returns>
  68. </member>
  69. <member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.AsEnumerable(Microsoft.Extensions.Configuration.IConfiguration,System.Boolean)">
  70. <summary>
  71. Get the enumeration of key value pairs within the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" />
  72. </summary>
  73. <param name="configuration">The configuration to enumerate.</param>
  74. <param name="makePathsRelative">If true, the child keys returned will have the current configuration's Path trimmed from the front.</param>
  75. <returns>An enumeration of key value pairs.</returns>
  76. </member>
  77. <member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.Exists(Microsoft.Extensions.Configuration.IConfigurationSection)">
  78. <summary>
  79. Determines whether the section has a <see cref="P:Microsoft.Extensions.Configuration.IConfigurationSection.Value"/> or has children
  80. </summary>
  81. <param name="section">The section to enumerate.</param>
  82. <returns><see langword="true" /> if the section has values or children; otherwise, <see langword="false" />.</returns>
  83. </member>
  84. <member name="M:Microsoft.Extensions.Configuration.ConfigurationExtensions.GetRequiredSection(Microsoft.Extensions.Configuration.IConfiguration,System.String)">
  85. <summary>
  86. Gets a configuration sub-section with the specified key.
  87. </summary>
  88. <param name="configuration">The configuration to enumerate.</param>
  89. <param name="key">The key of the configuration section.</param>
  90. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/>.</returns>
  91. <remarks>
  92. If no matching sub-section is found with the specified key, an exception is raised.
  93. </remarks>
  94. <exception cref="T:System.InvalidOperationException">There is no section with key <paramref name="key"/>.</exception>
  95. </member>
  96. <member name="T:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute">
  97. <summary>
  98. Specifies the key name for a configuration property.
  99. </summary>
  100. </member>
  101. <member name="M:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.#ctor(System.String)">
  102. <summary>
  103. Initializes a new instance of <see cref="T:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute"/>.
  104. </summary>
  105. <param name="name">The key name.</param>
  106. </member>
  107. <member name="P:Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.Name">
  108. <summary>
  109. The key name for a configuration property.
  110. </summary>
  111. </member>
  112. <member name="T:Microsoft.Extensions.Configuration.ConfigurationPath">
  113. <summary>
  114. Utility methods and constants for manipulating Configuration paths
  115. </summary>
  116. </member>
  117. <member name="F:Microsoft.Extensions.Configuration.ConfigurationPath.KeyDelimiter">
  118. <summary>
  119. The delimiter ":" used to separate individual keys in a path.
  120. </summary>
  121. </member>
  122. <member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.String[])">
  123. <summary>
  124. Combines path segments into one path.
  125. </summary>
  126. <param name="pathSegments">The path segments to combine.</param>
  127. <returns>The combined path.</returns>
  128. </member>
  129. <member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.Combine(System.Collections.Generic.IEnumerable{System.String})">
  130. <summary>
  131. Combines path segments into one path.
  132. </summary>
  133. <param name="pathSegments">The path segments to combine.</param>
  134. <returns>The combined path.</returns>
  135. </member>
  136. <member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.GetSectionKey(System.String)">
  137. <summary>
  138. Extracts the last path segment from the path.
  139. </summary>
  140. <param name="path">The path.</param>
  141. <returns>The last path segment of the path.</returns>
  142. </member>
  143. <member name="M:Microsoft.Extensions.Configuration.ConfigurationPath.GetParentPath(System.String)">
  144. <summary>
  145. Extracts the path corresponding to the parent node for a given path.
  146. </summary>
  147. <param name="path">The path.</param>
  148. <returns>The original path minus the last individual segment found in it. Null if the original path corresponds to a top level node.</returns>
  149. </member>
  150. <member name="T:Microsoft.Extensions.Configuration.ConfigurationRootExtensions">
  151. <summary>
  152. Extension methods for <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>.
  153. </summary>
  154. </member>
  155. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRootExtensions.GetDebugView(Microsoft.Extensions.Configuration.IConfigurationRoot)">
  156. <summary>
  157. Generates a human-readable view of the configuration showing where each value came from.
  158. </summary>
  159. <returns> The debug view. </returns>
  160. </member>
  161. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRootExtensions.GetDebugView(Microsoft.Extensions.Configuration.IConfigurationRoot,System.Func{Microsoft.Extensions.Configuration.ConfigurationDebugViewContext,System.String})">
  162. <summary>
  163. Generates a human-readable view of the configuration showing where each value came from.
  164. </summary>
  165. <param name="root">Configuration root</param>
  166. <param name="processValue">
  167. Function for processing the value e.g. hiding secrets
  168. Parameters:
  169. ConfigurationDebugViewContext: Context of the current configuration item
  170. returns: A string value is used to assign as the Value of the configuration section
  171. </param>
  172. <returns> The debug view. </returns>
  173. </member>
  174. <member name="T:Microsoft.Extensions.Configuration.IConfiguration">
  175. <summary>
  176. Represents a set of key/value application configuration properties.
  177. </summary>
  178. </member>
  179. <member name="P:Microsoft.Extensions.Configuration.IConfiguration.Item(System.String)">
  180. <summary>
  181. Gets or sets a configuration value.
  182. </summary>
  183. <param name="key">The configuration key.</param>
  184. <returns>The configuration value.</returns>
  185. </member>
  186. <member name="M:Microsoft.Extensions.Configuration.IConfiguration.GetSection(System.String)">
  187. <summary>
  188. Gets a configuration sub-section with the specified key.
  189. </summary>
  190. <param name="key">The key of the configuration section.</param>
  191. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/>.</returns>
  192. <remarks>
  193. This method will never return <c>null</c>. If no matching sub-section is found with the specified key,
  194. an empty <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/> will be returned.
  195. </remarks>
  196. </member>
  197. <member name="M:Microsoft.Extensions.Configuration.IConfiguration.GetChildren">
  198. <summary>
  199. Gets the immediate descendant configuration sub-sections.
  200. </summary>
  201. <returns>The configuration sub-sections.</returns>
  202. </member>
  203. <member name="M:Microsoft.Extensions.Configuration.IConfiguration.GetReloadToken">
  204. <summary>
  205. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> that can be used to observe when this configuration is reloaded.
  206. </summary>
  207. <returns>A <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>.</returns>
  208. </member>
  209. <member name="T:Microsoft.Extensions.Configuration.IConfigurationBuilder">
  210. <summary>
  211. Represents a type used to build application configuration.
  212. </summary>
  213. </member>
  214. <member name="P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Properties">
  215. <summary>
  216. Gets a key/value collection that can be used to share data between the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>
  217. and the registered <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource"/>s.
  218. </summary>
  219. </member>
  220. <member name="P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Sources">
  221. <summary>
  222. Gets the sources used to obtain configuration values
  223. </summary>
  224. </member>
  225. <member name="M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Add(Microsoft.Extensions.Configuration.IConfigurationSource)">
  226. <summary>
  227. Adds a new configuration source.
  228. </summary>
  229. <param name="source">The configuration source to add.</param>
  230. <returns>The same <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  231. </member>
  232. <member name="M:Microsoft.Extensions.Configuration.IConfigurationBuilder.Build">
  233. <summary>
  234. Builds an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> with keys and values from the set of sources registered in
  235. <see cref="P:Microsoft.Extensions.Configuration.IConfigurationBuilder.Sources"/>.
  236. </summary>
  237. <returns>An <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/> with keys and values from the registered sources.</returns>
  238. </member>
  239. <member name="T:Microsoft.Extensions.Configuration.IConfigurationManager">
  240. <summary>
  241. Represents a mutable configuration object.
  242. </summary>
  243. <remarks>
  244. It is both an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> and an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/>.
  245. As sources are added, it updates its current view of configuration.
  246. </remarks>
  247. </member>
  248. <member name="T:Microsoft.Extensions.Configuration.IConfigurationProvider">
  249. <summary>
  250. Provides configuration key/values for an application.
  251. </summary>
  252. </member>
  253. <member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.TryGet(System.String,System.String@)">
  254. <summary>
  255. Tries to get a configuration value for the specified key.
  256. </summary>
  257. <param name="key">The key.</param>
  258. <param name="value">The value.</param>
  259. <returns><c>True</c> if a value for the specified key was found, otherwise <c>false</c>.</returns>
  260. </member>
  261. <member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.Set(System.String,System.String)">
  262. <summary>
  263. Sets a configuration value for the specified key.
  264. </summary>
  265. <param name="key">The key.</param>
  266. <param name="value">The value.</param>
  267. </member>
  268. <member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetReloadToken">
  269. <summary>
  270. Returns a change token if this provider supports change tracking, null otherwise.
  271. </summary>
  272. <returns>The change token.</returns>
  273. </member>
  274. <member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.Load">
  275. <summary>
  276. Loads configuration values from the source represented by this <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>.
  277. </summary>
  278. </member>
  279. <member name="M:Microsoft.Extensions.Configuration.IConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)">
  280. <summary>
  281. Returns the immediate descendant configuration keys for a given parent path based on this
  282. <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s data and the set of keys returned by all the preceding
  283. <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s.
  284. </summary>
  285. <param name="earlierKeys">The child keys returned by the preceding providers for the same parent path.</param>
  286. <param name="parentPath">The parent path.</param>
  287. <returns>The child keys.</returns>
  288. </member>
  289. <member name="T:Microsoft.Extensions.Configuration.IConfigurationRoot">
  290. <summary>
  291. Represents the root of an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> hierarchy.
  292. </summary>
  293. </member>
  294. <member name="M:Microsoft.Extensions.Configuration.IConfigurationRoot.Reload">
  295. <summary>
  296. Force the configuration values to be reloaded from the underlying <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s.
  297. </summary>
  298. </member>
  299. <member name="P:Microsoft.Extensions.Configuration.IConfigurationRoot.Providers">
  300. <summary>
  301. The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s for this configuration.
  302. </summary>
  303. </member>
  304. <member name="T:Microsoft.Extensions.Configuration.IConfigurationSection">
  305. <summary>
  306. Represents a section of application configuration values.
  307. </summary>
  308. </member>
  309. <member name="P:Microsoft.Extensions.Configuration.IConfigurationSection.Key">
  310. <summary>
  311. Gets the key this section occupies in its parent.
  312. </summary>
  313. </member>
  314. <member name="P:Microsoft.Extensions.Configuration.IConfigurationSection.Path">
  315. <summary>
  316. Gets the full path to this section within the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/>.
  317. </summary>
  318. </member>
  319. <member name="P:Microsoft.Extensions.Configuration.IConfigurationSection.Value">
  320. <summary>
  321. Gets or sets the section value.
  322. </summary>
  323. </member>
  324. <member name="T:Microsoft.Extensions.Configuration.IConfigurationSource">
  325. <summary>
  326. Represents a source of configuration key/values for an application.
  327. </summary>
  328. </member>
  329. <member name="M:Microsoft.Extensions.Configuration.IConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  330. <summary>
  331. Builds the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/> for this source.
  332. </summary>
  333. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  334. <returns>An <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/></returns>
  335. </member>
  336. <member name="M:System.ThrowHelper.ThrowIfNull(System.Object,System.String)">
  337. <summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
  338. <param name="argument">The reference type argument to validate as non-null.</param>
  339. <param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
  340. </member>
  341. <member name="M:System.ThrowHelper.IfNullOrWhitespace(System.String,System.String)">
  342. <summary>
  343. Throws either an <see cref="T:System.ArgumentNullException"/> or an <see cref="T:System.ArgumentException"/>
  344. if the specified string is <see langword="null"/> or whitespace respectively.
  345. </summary>
  346. <param name="argument">String to be checked for <see langword="null"/> or whitespace.</param>
  347. <param name="paramName">The name of the parameter being checked.</param>
  348. <returns>The original value of <paramref name="argument"/>.</returns>
  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="P:System.SR.InvalidSectionName">
  422. <summary>Section '{0}' not found in configuration.</summary>
  423. </member>
  424. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  425. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  426. </member>
  427. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  428. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  429. </member>
  430. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  431. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  432. </member>
  433. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  434. <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>
  435. </member>
  436. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  437. <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>
  438. </member>
  439. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  440. <summary>Initializes the attribute with the specified return value condition.</summary>
  441. <param name="returnValue">
  442. The return value condition. If the method returns this value, the associated parameter may be null.
  443. </param>
  444. </member>
  445. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  446. <summary>Gets the return value condition.</summary>
  447. </member>
  448. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  449. <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>
  450. </member>
  451. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  452. <summary>Initializes the attribute with the specified return value condition.</summary>
  453. <param name="returnValue">
  454. The return value condition. If the method returns this value, the associated parameter will not be null.
  455. </param>
  456. </member>
  457. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  458. <summary>Gets the return value condition.</summary>
  459. </member>
  460. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  461. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  462. </member>
  463. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  464. <summary>Initializes the attribute with the associated parameter name.</summary>
  465. <param name="parameterName">
  466. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  467. </param>
  468. </member>
  469. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  470. <summary>Gets the associated parameter name.</summary>
  471. </member>
  472. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  473. <summary>Applied to a method that will never return under any circumstance.</summary>
  474. </member>
  475. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  476. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  477. </member>
  478. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  479. <summary>Initializes the attribute with the specified parameter value.</summary>
  480. <param name="parameterValue">
  481. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  482. the associated parameter matches this value.
  483. </param>
  484. </member>
  485. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  486. <summary>Gets the condition parameter value.</summary>
  487. </member>
  488. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  489. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  490. </member>
  491. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  492. <summary>Initializes the attribute with a field or property member.</summary>
  493. <param name="member">
  494. The field or property member that is promised to be not-null.
  495. </param>
  496. </member>
  497. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  498. <summary>Initializes the attribute with the list of field and property members.</summary>
  499. <param name="members">
  500. The list of field and property members that are promised to be not-null.
  501. </param>
  502. </member>
  503. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  504. <summary>Gets field or property member names.</summary>
  505. </member>
  506. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  507. <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>
  508. </member>
  509. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  510. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  511. <param name="returnValue">
  512. The return value condition. If the method returns this value, the associated parameter will not be null.
  513. </param>
  514. <param name="member">
  515. The field or property member that is promised to be not-null.
  516. </param>
  517. </member>
  518. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  519. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  520. <param name="returnValue">
  521. The return value condition. If the method returns this value, the associated parameter will not be null.
  522. </param>
  523. <param name="members">
  524. The list of field and property members that are promised to be not-null.
  525. </param>
  526. </member>
  527. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  528. <summary>Gets the return value condition.</summary>
  529. </member>
  530. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  531. <summary>Gets field or property member names.</summary>
  532. </member>
  533. </members>
  534. </doc>