Microsoft.Extensions.Configuration.xml 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Configuration</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Configuration.ChainedBuilderExtensions">
  8. <summary>
  9. Extension methods for adding <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> to an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.Configuration.ChainedBuilderExtensions.AddConfiguration(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration)">
  13. <summary>
  14. Adds an existing configuration to <paramref name="configurationBuilder"/>.
  15. </summary>
  16. <param name="configurationBuilder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  17. <param name="config">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> to add.</param>
  18. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  19. </member>
  20. <member name="M:Microsoft.Extensions.Configuration.ChainedBuilderExtensions.AddConfiguration(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration,System.Boolean)">
  21. <summary>
  22. Adds an existing configuration to <paramref name="configurationBuilder"/>.
  23. </summary>
  24. <param name="configurationBuilder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  25. <param name="config">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> to add.</param>
  26. <param name="shouldDisposeConfiguration">Whether the configuration should get disposed when the configuration provider is disposed.</param>
  27. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  28. </member>
  29. <member name="T:Microsoft.Extensions.Configuration.ChainedConfigurationProvider">
  30. <summary>
  31. Chained implementation of <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>
  32. </summary>
  33. </member>
  34. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.ChainedConfigurationSource)">
  35. <summary>
  36. Initialize a new instance from the source configuration.
  37. </summary>
  38. <param name="source">The source configuration.</param>
  39. </member>
  40. <member name="P:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Configuration">
  41. <summary>
  42. Gets the chained configuration.
  43. </summary>
  44. </member>
  45. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.TryGet(System.String,System.String@)">
  46. <summary>
  47. Tries to get a configuration value for the specified key.
  48. </summary>
  49. <param name="key">The key.</param>
  50. <param name="value">The value.</param>
  51. <returns><c>True</c> if a value for the specified key was found, otherwise <c>false</c>.</returns>
  52. </member>
  53. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Set(System.String,System.String)">
  54. <summary>
  55. Sets a configuration value for the specified key.
  56. </summary>
  57. <param name="key">The key.</param>
  58. <param name="value">The value.</param>
  59. </member>
  60. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.GetReloadToken">
  61. <summary>
  62. Returns a change token if this provider supports change tracking, null otherwise.
  63. </summary>
  64. <returns>The change token.</returns>
  65. </member>
  66. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Load">
  67. <summary>
  68. Loads configuration values from the source represented by this <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>.
  69. </summary>
  70. </member>
  71. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)">
  72. <summary>
  73. Returns the immediate descendant configuration keys for a given parent path based on this
  74. <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s data and the set of keys returned by all the preceding
  75. <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s.
  76. </summary>
  77. <param name="earlierKeys">The child keys returned by the preceding providers for the same parent path.</param>
  78. <param name="parentPath">The parent path.</param>
  79. <returns>The child keys.</returns>
  80. </member>
  81. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationProvider.Dispose">
  82. <inheritdoc />
  83. </member>
  84. <member name="T:Microsoft.Extensions.Configuration.ChainedConfigurationSource">
  85. <summary>
  86. Represents a chained <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> as an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource"/>.
  87. </summary>
  88. </member>
  89. <member name="P:Microsoft.Extensions.Configuration.ChainedConfigurationSource.Configuration">
  90. <summary>
  91. The chained configuration.
  92. </summary>
  93. </member>
  94. <member name="P:Microsoft.Extensions.Configuration.ChainedConfigurationSource.ShouldDisposeConfiguration">
  95. <summary>
  96. Whether the chained configuration should be disposed when the
  97. configuration provider gets disposed.
  98. </summary>
  99. </member>
  100. <member name="M:Microsoft.Extensions.Configuration.ChainedConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  101. <summary>
  102. Builds the <see cref="T:Microsoft.Extensions.Configuration.ChainedConfigurationProvider"/> for this source.
  103. </summary>
  104. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  105. <returns>A <see cref="T:Microsoft.Extensions.Configuration.ChainedConfigurationProvider"/></returns>
  106. </member>
  107. <member name="T:Microsoft.Extensions.Configuration.ConfigurationBuilder">
  108. <summary>
  109. Used to build key/value based configuration settings for use in an application.
  110. </summary>
  111. </member>
  112. <member name="P:Microsoft.Extensions.Configuration.ConfigurationBuilder.Sources">
  113. <summary>
  114. Returns the sources used to obtain configuration values.
  115. </summary>
  116. </member>
  117. <member name="P:Microsoft.Extensions.Configuration.ConfigurationBuilder.Properties">
  118. <summary>
  119. Gets a key/value collection that can be used to share data between the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>
  120. and the registered <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s.
  121. </summary>
  122. </member>
  123. <member name="M:Microsoft.Extensions.Configuration.ConfigurationBuilder.Add(Microsoft.Extensions.Configuration.IConfigurationSource)">
  124. <summary>
  125. Adds a new configuration source.
  126. </summary>
  127. <param name="source">The configuration source to add.</param>
  128. <returns>The same <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  129. </member>
  130. <member name="M:Microsoft.Extensions.Configuration.ConfigurationBuilder.Build">
  131. <summary>
  132. Builds an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> with keys and values from the set of providers registered in
  133. <see cref="P:Microsoft.Extensions.Configuration.ConfigurationBuilder.Sources"/>.
  134. </summary>
  135. <returns>An <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/> with keys and values from the registered providers.</returns>
  136. </member>
  137. <member name="T:Microsoft.Extensions.Configuration.ConfigurationKeyComparer">
  138. <summary>
  139. IComparer implementation used to order configuration keys.
  140. </summary>
  141. </member>
  142. <member name="P:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.Instance">
  143. <summary>
  144. The default instance.
  145. </summary>
  146. </member>
  147. <member name="P:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.Comparison">
  148. <summary>A comparer delegate with the default instance.</summary>
  149. </member>
  150. <member name="M:Microsoft.Extensions.Configuration.ConfigurationKeyComparer.Compare(System.String,System.String)">
  151. <summary>
  152. Compares two strings.
  153. </summary>
  154. <param name="x">First string.</param>
  155. <param name="y">Second string.</param>
  156. <returns>Less than 0 if x is less than y, 0 if x is equal to y and greater than 0 if x is greater than y.</returns>
  157. </member>
  158. <member name="T:Microsoft.Extensions.Configuration.ConfigurationManager">
  159. <summary>
  160. Represents a mutable configuration object.
  161. </summary>
  162. <remarks>
  163. It is both an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> and an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>.
  164. As sources are added, it updates its current view of configuration.
  165. </remarks>
  166. </member>
  167. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.#ctor">
  168. <summary>
  169. Creates an empty mutable configuration object that is both an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> and an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>.
  170. </summary>
  171. </member>
  172. <member name="P:Microsoft.Extensions.Configuration.ConfigurationManager.Item(System.String)">
  173. <inheritdoc/>
  174. </member>
  175. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.GetSection(System.String)">
  176. <inheritdoc/>
  177. </member>
  178. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.GetChildren">
  179. <inheritdoc/>
  180. </member>
  181. <member name="P:Microsoft.Extensions.Configuration.ConfigurationManager.Sources">
  182. <inheritdoc />
  183. </member>
  184. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.Dispose">
  185. <inheritdoc/>
  186. </member>
  187. <member name="T:Microsoft.Extensions.Configuration.ConfigurationProvider">
  188. <summary>
  189. Base helper class for implementing an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>
  190. </summary>
  191. </member>
  192. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.#ctor">
  193. <summary>
  194. Initializes a new <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>
  195. </summary>
  196. </member>
  197. <member name="P:Microsoft.Extensions.Configuration.ConfigurationProvider.Data">
  198. <summary>
  199. The configuration key value pairs for this provider.
  200. </summary>
  201. </member>
  202. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.TryGet(System.String,System.String@)">
  203. <summary>
  204. Attempts to find a value with the given key, returns true if one is found, false otherwise.
  205. </summary>
  206. <param name="key">The key to lookup.</param>
  207. <param name="value">The value found at key if one is found.</param>
  208. <returns>True if key has a value, false otherwise.</returns>
  209. </member>
  210. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.Set(System.String,System.String)">
  211. <summary>
  212. Sets a value for a given key.
  213. </summary>
  214. <param name="key">The configuration key to set.</param>
  215. <param name="value">The value to set.</param>
  216. </member>
  217. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.Load">
  218. <summary>
  219. Loads (or reloads) the data for this provider.
  220. </summary>
  221. </member>
  222. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)">
  223. <summary>
  224. Returns the list of keys that this provider has.
  225. </summary>
  226. <param name="earlierKeys">The earlier keys that other providers contain.</param>
  227. <param name="parentPath">The path for the parent IConfiguration.</param>
  228. <returns>The list of keys for this provider.</returns>
  229. </member>
  230. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetReloadToken">
  231. <summary>
  232. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> that can be used to listen when this provider is reloaded.
  233. </summary>
  234. <returns>The <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>.</returns>
  235. </member>
  236. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.OnReload">
  237. <summary>
  238. Triggers the reload change token and creates a new one.
  239. </summary>
  240. </member>
  241. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.ToString">
  242. <summary>
  243. Generates a string representing this provider name and relevant details.
  244. </summary>
  245. <returns> The configuration name. </returns>
  246. </member>
  247. <member name="T:Microsoft.Extensions.Configuration.ConfigurationReloadToken">
  248. <summary>
  249. Implements <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>
  250. </summary>
  251. </member>
  252. <member name="P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.ActiveChangeCallbacks">
  253. <summary>
  254. Indicates if this token will proactively raise callbacks. Callbacks are still guaranteed to be invoked, eventually.
  255. </summary>
  256. <returns>True if the token will proactively raise callbacks.</returns>
  257. </member>
  258. <member name="P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.HasChanged">
  259. <summary>
  260. Gets a value that indicates if a change has occurred.
  261. </summary>
  262. <returns>True if a change has occurred.</returns>
  263. </member>
  264. <member name="M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
  265. <summary>
  266. Registers for a callback that will be invoked when the entry has changed. <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"/>
  267. MUST be set before the callback is invoked.
  268. </summary>
  269. <param name="callback">The callback to invoke.</param>
  270. <param name="state">State to be passed into the callback.</param>
  271. <returns>The <see cref="T:System.Threading.CancellationToken"/> registration.</returns>
  272. </member>
  273. <member name="M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.OnReload">
  274. <summary>
  275. Used to trigger the change token when a reload occurs.
  276. </summary>
  277. </member>
  278. <member name="T:Microsoft.Extensions.Configuration.ConfigurationRoot">
  279. <summary>
  280. The root node for a configuration.
  281. </summary>
  282. </member>
  283. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.Configuration.IConfigurationProvider})">
  284. <summary>
  285. Initializes a Configuration root with a list of providers.
  286. </summary>
  287. <param name="providers">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s for this configuration.</param>
  288. </member>
  289. <member name="P:Microsoft.Extensions.Configuration.ConfigurationRoot.Providers">
  290. <summary>
  291. The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s for this configuration.
  292. </summary>
  293. </member>
  294. <member name="P:Microsoft.Extensions.Configuration.ConfigurationRoot.Item(System.String)">
  295. <summary>
  296. Gets or sets the value corresponding to a configuration key.
  297. </summary>
  298. <param name="key">The configuration key.</param>
  299. <returns>The configuration value.</returns>
  300. </member>
  301. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetChildren">
  302. <summary>
  303. Gets the immediate children sub-sections.
  304. </summary>
  305. <returns>The children.</returns>
  306. </member>
  307. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetReloadToken">
  308. <summary>
  309. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> that can be used to observe when this configuration is reloaded.
  310. </summary>
  311. <returns>The <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>.</returns>
  312. </member>
  313. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetSection(System.String)">
  314. <summary>
  315. Gets a configuration sub-section with the specified key.
  316. </summary>
  317. <param name="key">The key of the configuration section.</param>
  318. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/>.</returns>
  319. <remarks>
  320. This method will never return <c>null</c>. If no matching sub-section is found with the specified key,
  321. an empty <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/> will be returned.
  322. </remarks>
  323. </member>
  324. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.Reload">
  325. <summary>
  326. Force the configuration values to be reloaded from the underlying sources.
  327. </summary>
  328. </member>
  329. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.Dispose">
  330. <inheritdoc />
  331. </member>
  332. <member name="T:Microsoft.Extensions.Configuration.ConfigurationSection">
  333. <summary>
  334. Represents a section of application configuration values.
  335. </summary>
  336. </member>
  337. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.#ctor(Microsoft.Extensions.Configuration.IConfigurationRoot,System.String)">
  338. <summary>
  339. Initializes a new instance.
  340. </summary>
  341. <param name="root">The configuration root.</param>
  342. <param name="path">The path to this section.</param>
  343. </member>
  344. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Path">
  345. <summary>
  346. Gets the full path to this section from the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>.
  347. </summary>
  348. </member>
  349. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Key">
  350. <summary>
  351. Gets the key this section occupies in its parent.
  352. </summary>
  353. </member>
  354. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Value">
  355. <summary>
  356. Gets or sets the section value.
  357. </summary>
  358. </member>
  359. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Item(System.String)">
  360. <summary>
  361. Gets or sets the value corresponding to a configuration key.
  362. </summary>
  363. <param name="key">The configuration key.</param>
  364. <returns>The configuration value.</returns>
  365. </member>
  366. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.GetSection(System.String)">
  367. <summary>
  368. Gets a configuration sub-section with the specified key.
  369. </summary>
  370. <param name="key">The key of the configuration section.</param>
  371. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/>.</returns>
  372. <remarks>
  373. This method will never return <c>null</c>. If no matching sub-section is found with the specified key,
  374. an empty <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/> will be returned.
  375. </remarks>
  376. </member>
  377. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.GetChildren">
  378. <summary>
  379. Gets the immediate descendant configuration sub-sections.
  380. </summary>
  381. <returns>The configuration sub-sections.</returns>
  382. </member>
  383. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.GetReloadToken">
  384. <summary>
  385. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> that can be used to observe when this configuration is reloaded.
  386. </summary>
  387. <returns>The <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>.</returns>
  388. </member>
  389. <member name="T:Microsoft.Extensions.Configuration.InternalConfigurationRootExtensions">
  390. <summary>
  391. Extensions method for <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>
  392. </summary>
  393. </member>
  394. <member name="M:Microsoft.Extensions.Configuration.InternalConfigurationRootExtensions.GetChildrenImplementation(Microsoft.Extensions.Configuration.IConfigurationRoot,System.String)">
  395. <summary>
  396. Gets the immediate children sub-sections of configuration root based on key.
  397. </summary>
  398. <param name="root">Configuration from which to retrieve sub-sections.</param>
  399. <param name="path">Key of a section of which children to retrieve.</param>
  400. <returns>Immediate children sub-sections of section specified by key.</returns>
  401. </member>
  402. <member name="T:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions">
  403. <summary>
  404. IConfigurationBuilder extension methods for the MemoryConfigurationProvider.
  405. </summary>
  406. </member>
  407. <member name="M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  408. <summary>
  409. Adds the memory configuration provider to <paramref name="configurationBuilder"/>.
  410. </summary>
  411. <param name="configurationBuilder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  412. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  413. </member>
  414. <member name="M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
  415. <summary>
  416. Adds the memory configuration provider to <paramref name="configurationBuilder"/>.
  417. </summary>
  418. <param name="configurationBuilder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  419. <param name="initialData">The data to add to memory configuration provider.</param>
  420. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  421. </member>
  422. <member name="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider">
  423. <summary>
  424. In-memory implementation of <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>
  425. </summary>
  426. </member>
  427. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource)">
  428. <summary>
  429. Initialize a new instance from the source.
  430. </summary>
  431. <param name="source">The source settings.</param>
  432. </member>
  433. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.Add(System.String,System.String)">
  434. <summary>
  435. Add a new key and value pair.
  436. </summary>
  437. <param name="key">The configuration key.</param>
  438. <param name="value">The configuration value.</param>
  439. </member>
  440. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.GetEnumerator">
  441. <summary>
  442. Returns an enumerator that iterates through the collection.
  443. </summary>
  444. <returns>An enumerator that can be used to iterate through the collection.</returns>
  445. </member>
  446. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.System#Collections#IEnumerable#GetEnumerator">
  447. <summary>
  448. Returns an enumerator that iterates through the collection.
  449. </summary>
  450. <returns>An enumerator that can be used to iterate through the collection.</returns>
  451. </member>
  452. <member name="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource">
  453. <summary>
  454. Represents in-memory data as an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource"/>.
  455. </summary>
  456. </member>
  457. <member name="P:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.InitialData">
  458. <summary>
  459. The initial key value configuration pairs.
  460. </summary>
  461. </member>
  462. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  463. <summary>
  464. Builds the <see cref="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider"/> for this source.
  465. </summary>
  466. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  467. <returns>A <see cref="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider"/></returns>
  468. </member>
  469. <member name="T:Microsoft.Extensions.Configuration.StreamConfigurationProvider">
  470. <summary>
  471. Stream based configuration provider
  472. </summary>
  473. </member>
  474. <member name="P:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Source">
  475. <summary>
  476. The source settings for this provider.
  477. </summary>
  478. </member>
  479. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.StreamConfigurationSource)">
  480. <summary>
  481. Constructor.
  482. </summary>
  483. <param name="source">The source.</param>
  484. </member>
  485. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load(System.IO.Stream)">
  486. <summary>
  487. Load the configuration data from the stream.
  488. </summary>
  489. <param name="stream">The data stream.</param>
  490. </member>
  491. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load">
  492. <summary>
  493. Load the configuration data from the stream. Will throw after the first call.
  494. </summary>
  495. </member>
  496. <member name="T:Microsoft.Extensions.Configuration.StreamConfigurationSource">
  497. <summary>
  498. Stream based <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource" />.
  499. </summary>
  500. </member>
  501. <member name="P:Microsoft.Extensions.Configuration.StreamConfigurationSource.Stream">
  502. <summary>
  503. The stream containing the configuration data.
  504. </summary>
  505. </member>
  506. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  507. <summary>
  508. Builds the <see cref="T:Microsoft.Extensions.Configuration.StreamConfigurationProvider"/> for this source.
  509. </summary>
  510. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  511. <returns>An <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/></returns>
  512. </member>
  513. <member name="M:Microsoft.Extensions.Internal.ChangeCallbackRegistrar.UnsafeRegisterChangeCallback``1(System.Action{System.Object},System.Object,System.Threading.CancellationToken,System.Action{``0},``0)">
  514. <summary>
  515. Registers for a callback that will be invoked when the entry has changed. <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"/>
  516. MUST be set before the callback is invoked.
  517. </summary>
  518. <param name="callback">The callback to invoke.</param>
  519. <param name="state">State to be passed into the callback.</param>
  520. <param name="token">The <see cref="T:System.Threading.CancellationToken"/> to invoke the callback with.</param>
  521. <param name="onFailure">The action to execute when an <see cref="T:System.ObjectDisposedException"/> is thrown. Should be used to set the IChangeToken's ActiveChangeCallbacks property to false.</param>
  522. <param name="onFailureState">The state to be passed into the <paramref name="onFailure"/> action.</param>
  523. <returns>The <see cref="T:System.Threading.CancellationToken"/> registration.</returns>
  524. </member>
  525. <member name="M:System.ThrowHelper.ThrowIfNull(System.Object,System.String)">
  526. <summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
  527. <param name="argument">The reference type argument to validate as non-null.</param>
  528. <param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
  529. </member>
  530. <member name="M:System.ThrowHelper.IfNullOrWhitespace(System.String,System.String)">
  531. <summary>
  532. Throws either an <see cref="T:System.ArgumentNullException"/> or an <see cref="T:System.ArgumentException"/>
  533. if the specified string is <see langword="null"/> or whitespace respectively.
  534. </summary>
  535. <param name="argument">String to be checked for <see langword="null"/> or whitespace.</param>
  536. <param name="paramName">The name of the parameter being checked.</param>
  537. <returns>The original value of <paramref name="argument"/>.</returns>
  538. </member>
  539. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  540. <summary>
  541. Attribute used to indicate a source generator should create a function for marshalling
  542. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  543. </summary>
  544. <remarks>
  545. This attribute is meaningless if the source generator associated with it is not enabled.
  546. The current built-in source generator only supports C# and only supplies an implementation when
  547. applied to static, partial, non-generic methods.
  548. </remarks>
  549. </member>
  550. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  551. <summary>
  552. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  553. </summary>
  554. <param name="libraryName">Name of the library containing the import.</param>
  555. </member>
  556. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  557. <summary>
  558. Gets the name of the library containing the import.
  559. </summary>
  560. </member>
  561. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  562. <summary>
  563. Gets or sets the name of the entry point to be called.
  564. </summary>
  565. </member>
  566. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  567. <summary>
  568. Gets or sets how to marshal string arguments to the method.
  569. </summary>
  570. <remarks>
  571. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  572. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  573. </remarks>
  574. </member>
  575. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  576. <summary>
  577. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  578. </summary>
  579. <remarks>
  580. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  581. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  582. </remarks>
  583. </member>
  584. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  585. <summary>
  586. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  587. on other platforms) before returning from the attributed method.
  588. </summary>
  589. </member>
  590. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  591. <summary>
  592. Specifies how strings should be marshalled for generated p/invokes
  593. </summary>
  594. </member>
  595. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  596. <summary>
  597. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  598. </summary>
  599. </member>
  600. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  601. <summary>
  602. Use the platform-provided UTF-8 marshaller.
  603. </summary>
  604. </member>
  605. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  606. <summary>
  607. Use the platform-provided UTF-16 marshaller.
  608. </summary>
  609. </member>
  610. <member name="P:System.SR.Error_NoSources">
  611. <summary>A configuration source is not registered. Please register one before setting a value.</summary>
  612. </member>
  613. <member name="P:System.SR.InvalidNullArgument">
  614. <summary>Null is not a valid value for '{0}'.</summary>
  615. </member>
  616. <member name="P:System.SR.StreamConfigurationProvidersAlreadyLoaded">
  617. <summary>StreamConfigurationProviders cannot be loaded more than once.</summary>
  618. </member>
  619. <member name="P:System.SR.StreamConfigurationSourceStreamCannotBeNull">
  620. <summary>Source.Stream cannot be null.</summary>
  621. </member>
  622. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  623. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  624. </member>
  625. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  626. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  627. </member>
  628. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  629. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  630. </member>
  631. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  632. <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>
  633. </member>
  634. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  635. <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>
  636. </member>
  637. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  638. <summary>Initializes the attribute with the specified return value condition.</summary>
  639. <param name="returnValue">
  640. The return value condition. If the method returns this value, the associated parameter may be null.
  641. </param>
  642. </member>
  643. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  644. <summary>Gets the return value condition.</summary>
  645. </member>
  646. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  647. <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>
  648. </member>
  649. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  650. <summary>Initializes the attribute with the specified return value condition.</summary>
  651. <param name="returnValue">
  652. The return value condition. If the method returns this value, the associated parameter will not be null.
  653. </param>
  654. </member>
  655. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  656. <summary>Gets the return value condition.</summary>
  657. </member>
  658. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  659. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  660. </member>
  661. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  662. <summary>Initializes the attribute with the associated parameter name.</summary>
  663. <param name="parameterName">
  664. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  665. </param>
  666. </member>
  667. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  668. <summary>Gets the associated parameter name.</summary>
  669. </member>
  670. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  671. <summary>Applied to a method that will never return under any circumstance.</summary>
  672. </member>
  673. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  674. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  675. </member>
  676. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  677. <summary>Initializes the attribute with the specified parameter value.</summary>
  678. <param name="parameterValue">
  679. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  680. the associated parameter matches this value.
  681. </param>
  682. </member>
  683. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  684. <summary>Gets the condition parameter value.</summary>
  685. </member>
  686. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  687. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  688. </member>
  689. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  690. <summary>Initializes the attribute with a field or property member.</summary>
  691. <param name="member">
  692. The field or property member that is promised to be not-null.
  693. </param>
  694. </member>
  695. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  696. <summary>Initializes the attribute with the list of field and property members.</summary>
  697. <param name="members">
  698. The list of field and property members that are promised to be not-null.
  699. </param>
  700. </member>
  701. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  702. <summary>Gets field or property member names.</summary>
  703. </member>
  704. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  705. <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>
  706. </member>
  707. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  708. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  709. <param name="returnValue">
  710. The return value condition. If the method returns this value, the associated parameter will not be null.
  711. </param>
  712. <param name="member">
  713. The field or property member that is promised to be not-null.
  714. </param>
  715. </member>
  716. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  717. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  718. <param name="returnValue">
  719. The return value condition. If the method returns this value, the associated parameter will not be null.
  720. </param>
  721. <param name="members">
  722. The list of field and property members that are promised to be not-null.
  723. </param>
  724. </member>
  725. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  726. <summary>Gets the return value condition.</summary>
  727. </member>
  728. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  729. <summary>Gets field or property member names.</summary>
  730. </member>
  731. </members>
  732. </doc>