Microsoft.Extensions.Configuration.xml 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  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. ConfigurationManager is a mutable configuration object. It is both an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> and an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>.
  161. As sources are added, it updates its current view of configuration.
  162. </summary>
  163. </member>
  164. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.#ctor">
  165. <summary>
  166. 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"/>.
  167. </summary>
  168. </member>
  169. <member name="P:Microsoft.Extensions.Configuration.ConfigurationManager.Item(System.String)">
  170. <inheritdoc/>
  171. </member>
  172. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.GetSection(System.String)">
  173. <inheritdoc/>
  174. </member>
  175. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.GetChildren">
  176. <inheritdoc/>
  177. </member>
  178. <member name="P:Microsoft.Extensions.Configuration.ConfigurationManager.Sources">
  179. <inheritdoc />
  180. </member>
  181. <member name="M:Microsoft.Extensions.Configuration.ConfigurationManager.Dispose">
  182. <inheritdoc/>
  183. </member>
  184. <member name="T:Microsoft.Extensions.Configuration.ConfigurationProvider">
  185. <summary>
  186. Base helper class for implementing an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>
  187. </summary>
  188. </member>
  189. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.#ctor">
  190. <summary>
  191. Initializes a new <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>
  192. </summary>
  193. </member>
  194. <member name="P:Microsoft.Extensions.Configuration.ConfigurationProvider.Data">
  195. <summary>
  196. The configuration key value pairs for this provider.
  197. </summary>
  198. </member>
  199. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.TryGet(System.String,System.String@)">
  200. <summary>
  201. Attempts to find a value with the given key, returns true if one is found, false otherwise.
  202. </summary>
  203. <param name="key">The key to lookup.</param>
  204. <param name="value">The value found at key if one is found.</param>
  205. <returns>True if key has a value, false otherwise.</returns>
  206. </member>
  207. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.Set(System.String,System.String)">
  208. <summary>
  209. Sets a value for a given key.
  210. </summary>
  211. <param name="key">The configuration key to set.</param>
  212. <param name="value">The value to set.</param>
  213. </member>
  214. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.Load">
  215. <summary>
  216. Loads (or reloads) the data for this provider.
  217. </summary>
  218. </member>
  219. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetChildKeys(System.Collections.Generic.IEnumerable{System.String},System.String)">
  220. <summary>
  221. Returns the list of keys that this provider has.
  222. </summary>
  223. <param name="earlierKeys">The earlier keys that other providers contain.</param>
  224. <param name="parentPath">The path for the parent IConfiguration.</param>
  225. <returns>The list of keys for this provider.</returns>
  226. </member>
  227. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.GetReloadToken">
  228. <summary>
  229. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> that can be used to listen when this provider is reloaded.
  230. </summary>
  231. <returns>The <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>.</returns>
  232. </member>
  233. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.OnReload">
  234. <summary>
  235. Triggers the reload change token and creates a new one.
  236. </summary>
  237. </member>
  238. <member name="M:Microsoft.Extensions.Configuration.ConfigurationProvider.ToString">
  239. <summary>
  240. Generates a string representing this provider name and relevant details.
  241. </summary>
  242. <returns> The configuration name. </returns>
  243. </member>
  244. <member name="T:Microsoft.Extensions.Configuration.ConfigurationReloadToken">
  245. <summary>
  246. Implements <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>
  247. </summary>
  248. </member>
  249. <member name="P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.ActiveChangeCallbacks">
  250. <summary>
  251. Indicates if this token will proactively raise callbacks. Callbacks are still guaranteed to be invoked, eventually.
  252. </summary>
  253. <returns>True if the token will proactively raise callbacks.</returns>
  254. </member>
  255. <member name="P:Microsoft.Extensions.Configuration.ConfigurationReloadToken.HasChanged">
  256. <summary>
  257. Gets a value that indicates if a change has occurred.
  258. </summary>
  259. <returns>True if a change has occurred.</returns>
  260. </member>
  261. <member name="M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.RegisterChangeCallback(System.Action{System.Object},System.Object)">
  262. <summary>
  263. Registers for a callback that will be invoked when the entry has changed. <see cref="P:Microsoft.Extensions.Primitives.IChangeToken.HasChanged"/>
  264. MUST be set before the callback is invoked.
  265. </summary>
  266. <param name="callback">The callback to invoke.</param>
  267. <param name="state">State to be passed into the callback.</param>
  268. <returns>The <see cref="T:System.Threading.CancellationToken"/> registration.</returns>
  269. </member>
  270. <member name="M:Microsoft.Extensions.Configuration.ConfigurationReloadToken.OnReload">
  271. <summary>
  272. Used to trigger the change token when a reload occurs.
  273. </summary>
  274. </member>
  275. <member name="T:Microsoft.Extensions.Configuration.ConfigurationRoot">
  276. <summary>
  277. The root node for a configuration.
  278. </summary>
  279. </member>
  280. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.#ctor(System.Collections.Generic.IList{Microsoft.Extensions.Configuration.IConfigurationProvider})">
  281. <summary>
  282. Initializes a Configuration root with a list of providers.
  283. </summary>
  284. <param name="providers">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s for this configuration.</param>
  285. </member>
  286. <member name="P:Microsoft.Extensions.Configuration.ConfigurationRoot.Providers">
  287. <summary>
  288. The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>s for this configuration.
  289. </summary>
  290. </member>
  291. <member name="P:Microsoft.Extensions.Configuration.ConfigurationRoot.Item(System.String)">
  292. <summary>
  293. Gets or sets the value corresponding to a configuration key.
  294. </summary>
  295. <param name="key">The configuration key.</param>
  296. <returns>The configuration value.</returns>
  297. </member>
  298. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetChildren">
  299. <summary>
  300. Gets the immediate children sub-sections.
  301. </summary>
  302. <returns>The children.</returns>
  303. </member>
  304. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetReloadToken">
  305. <summary>
  306. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> that can be used to observe when this configuration is reloaded.
  307. </summary>
  308. <returns>The <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>.</returns>
  309. </member>
  310. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.GetSection(System.String)">
  311. <summary>
  312. Gets a configuration sub-section with the specified key.
  313. </summary>
  314. <param name="key">The key of the configuration section.</param>
  315. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/>.</returns>
  316. <remarks>
  317. This method will never return <c>null</c>. If no matching sub-section is found with the specified key,
  318. an empty <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/> will be returned.
  319. </remarks>
  320. </member>
  321. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.Reload">
  322. <summary>
  323. Force the configuration values to be reloaded from the underlying sources.
  324. </summary>
  325. </member>
  326. <member name="M:Microsoft.Extensions.Configuration.ConfigurationRoot.Dispose">
  327. <inheritdoc />
  328. </member>
  329. <member name="T:Microsoft.Extensions.Configuration.ConfigurationSection">
  330. <summary>
  331. Represents a section of application configuration values.
  332. </summary>
  333. </member>
  334. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.#ctor(Microsoft.Extensions.Configuration.IConfigurationRoot,System.String)">
  335. <summary>
  336. Initializes a new instance.
  337. </summary>
  338. <param name="root">The configuration root.</param>
  339. <param name="path">The path to this section.</param>
  340. </member>
  341. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Path">
  342. <summary>
  343. Gets the full path to this section from the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>.
  344. </summary>
  345. </member>
  346. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Key">
  347. <summary>
  348. Gets the key this section occupies in its parent.
  349. </summary>
  350. </member>
  351. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Value">
  352. <summary>
  353. Gets or sets the section value.
  354. </summary>
  355. </member>
  356. <member name="P:Microsoft.Extensions.Configuration.ConfigurationSection.Item(System.String)">
  357. <summary>
  358. Gets or sets the value corresponding to a configuration key.
  359. </summary>
  360. <param name="key">The configuration key.</param>
  361. <returns>The configuration value.</returns>
  362. </member>
  363. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.GetSection(System.String)">
  364. <summary>
  365. Gets a configuration sub-section with the specified key.
  366. </summary>
  367. <param name="key">The key of the configuration section.</param>
  368. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/>.</returns>
  369. <remarks>
  370. This method will never return <c>null</c>. If no matching sub-section is found with the specified key,
  371. an empty <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSection"/> will be returned.
  372. </remarks>
  373. </member>
  374. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.GetChildren">
  375. <summary>
  376. Gets the immediate descendant configuration sub-sections.
  377. </summary>
  378. <returns>The configuration sub-sections.</returns>
  379. </member>
  380. <member name="M:Microsoft.Extensions.Configuration.ConfigurationSection.GetReloadToken">
  381. <summary>
  382. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> that can be used to observe when this configuration is reloaded.
  383. </summary>
  384. <returns>The <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>.</returns>
  385. </member>
  386. <member name="T:Microsoft.Extensions.Configuration.InternalConfigurationRootExtensions">
  387. <summary>
  388. Extensions method for <see cref="T:Microsoft.Extensions.Configuration.IConfigurationRoot"/>
  389. </summary>
  390. </member>
  391. <member name="M:Microsoft.Extensions.Configuration.InternalConfigurationRootExtensions.GetChildrenImplementation(Microsoft.Extensions.Configuration.IConfigurationRoot,System.String)">
  392. <summary>
  393. Gets the immediate children sub-sections of configuration root based on key.
  394. </summary>
  395. <param name="root">Configuration from which to retrieve sub-sections.</param>
  396. <param name="path">Key of a section of which children to retrieve.</param>
  397. <returns>Immediate children sub-sections of section specified by key.</returns>
  398. </member>
  399. <member name="T:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions">
  400. <summary>
  401. IConfigurationBuilder extension methods for the MemoryConfigurationProvider.
  402. </summary>
  403. </member>
  404. <member name="M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  405. <summary>
  406. Adds the memory configuration provider to <paramref name="configurationBuilder"/>.
  407. </summary>
  408. <param name="configurationBuilder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  409. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  410. </member>
  411. <member name="M:Microsoft.Extensions.Configuration.MemoryConfigurationBuilderExtensions.AddInMemoryCollection(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
  412. <summary>
  413. Adds the memory configuration provider to <paramref name="configurationBuilder"/>.
  414. </summary>
  415. <param name="configurationBuilder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  416. <param name="initialData">The data to add to memory configuration provider.</param>
  417. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  418. </member>
  419. <member name="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider">
  420. <summary>
  421. In-memory implementation of <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/>
  422. </summary>
  423. </member>
  424. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource)">
  425. <summary>
  426. Initialize a new instance from the source.
  427. </summary>
  428. <param name="source">The source settings.</param>
  429. </member>
  430. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.Add(System.String,System.String)">
  431. <summary>
  432. Add a new key and value pair.
  433. </summary>
  434. <param name="key">The configuration key.</param>
  435. <param name="value">The configuration value.</param>
  436. </member>
  437. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.GetEnumerator">
  438. <summary>
  439. Returns an enumerator that iterates through the collection.
  440. </summary>
  441. <returns>An enumerator that can be used to iterate through the collection.</returns>
  442. </member>
  443. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider.System#Collections#IEnumerable#GetEnumerator">
  444. <summary>
  445. Returns an enumerator that iterates through the collection.
  446. </summary>
  447. <returns>An enumerator that can be used to iterate through the collection.</returns>
  448. </member>
  449. <member name="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource">
  450. <summary>
  451. Represents in-memory data as an <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource"/>.
  452. </summary>
  453. </member>
  454. <member name="P:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.InitialData">
  455. <summary>
  456. The initial key value configuration pairs.
  457. </summary>
  458. </member>
  459. <member name="M:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  460. <summary>
  461. Builds the <see cref="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider"/> for this source.
  462. </summary>
  463. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  464. <returns>A <see cref="T:Microsoft.Extensions.Configuration.Memory.MemoryConfigurationProvider"/></returns>
  465. </member>
  466. <member name="T:Microsoft.Extensions.Configuration.StreamConfigurationProvider">
  467. <summary>
  468. Stream based configuration provider
  469. </summary>
  470. </member>
  471. <member name="P:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Source">
  472. <summary>
  473. The source settings for this provider.
  474. </summary>
  475. </member>
  476. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.StreamConfigurationSource)">
  477. <summary>
  478. Constructor.
  479. </summary>
  480. <param name="source">The source.</param>
  481. </member>
  482. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load(System.IO.Stream)">
  483. <summary>
  484. Load the configuration data from the stream.
  485. </summary>
  486. <param name="stream">The data stream.</param>
  487. </member>
  488. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationProvider.Load">
  489. <summary>
  490. Load the configuration data from the stream. Will throw after the first call.
  491. </summary>
  492. </member>
  493. <member name="T:Microsoft.Extensions.Configuration.StreamConfigurationSource">
  494. <summary>
  495. Stream based <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource" />.
  496. </summary>
  497. </member>
  498. <member name="P:Microsoft.Extensions.Configuration.StreamConfigurationSource.Stream">
  499. <summary>
  500. The stream containing the configuration data.
  501. </summary>
  502. </member>
  503. <member name="M:Microsoft.Extensions.Configuration.StreamConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  504. <summary>
  505. Builds the <see cref="T:Microsoft.Extensions.Configuration.StreamConfigurationProvider"/> for this source.
  506. </summary>
  507. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  508. <returns>An <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/></returns>
  509. </member>
  510. <member name="M:System.ThrowHelper.ThrowIfNull(System.Object,System.String)">
  511. <summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
  512. <param name="argument">The reference type argument to validate as non-null.</param>
  513. <param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
  514. </member>
  515. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  516. <summary>
  517. Attribute used to indicate a source generator should create a function for marshalling
  518. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  519. </summary>
  520. <remarks>
  521. This attribute is meaningless if the source generator associated with it is not enabled.
  522. The current built-in source generator only supports C# and only supplies an implementation when
  523. applied to static, partial, non-generic methods.
  524. </remarks>
  525. </member>
  526. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  527. <summary>
  528. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  529. </summary>
  530. <param name="libraryName">Name of the library containing the import.</param>
  531. </member>
  532. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  533. <summary>
  534. Gets the name of the library containing the import.
  535. </summary>
  536. </member>
  537. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  538. <summary>
  539. Gets or sets the name of the entry point to be called.
  540. </summary>
  541. </member>
  542. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  543. <summary>
  544. Gets or sets how to marshal string arguments to the method.
  545. </summary>
  546. <remarks>
  547. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  548. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  549. </remarks>
  550. </member>
  551. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  552. <summary>
  553. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  554. </summary>
  555. <remarks>
  556. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  557. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  558. </remarks>
  559. </member>
  560. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  561. <summary>
  562. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  563. on other platforms) before returning from the attributed method.
  564. </summary>
  565. </member>
  566. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  567. <summary>
  568. Specifies how strings should be marshalled for generated p/invokes
  569. </summary>
  570. </member>
  571. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  572. <summary>
  573. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  574. </summary>
  575. </member>
  576. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  577. <summary>
  578. Use the platform-provided UTF-8 marshaller.
  579. </summary>
  580. </member>
  581. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  582. <summary>
  583. Use the platform-provided UTF-16 marshaller.
  584. </summary>
  585. </member>
  586. <member name="P:System.SR.Error_NoSources">
  587. <summary>A configuration source is not registered. Please register one before setting a value.</summary>
  588. </member>
  589. <member name="P:System.SR.InvalidNullArgument">
  590. <summary>Null is not a valid value for '{0}'.</summary>
  591. </member>
  592. <member name="P:System.SR.StreamConfigurationProvidersAlreadyLoaded">
  593. <summary>StreamConfigurationProviders cannot be loaded more than once.</summary>
  594. </member>
  595. <member name="P:System.SR.StreamConfigurationSourceStreamCannotBeNull">
  596. <summary>Source.Stream cannot be null.</summary>
  597. </member>
  598. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  599. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  600. </member>
  601. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  602. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  603. </member>
  604. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  605. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  606. </member>
  607. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  608. <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>
  609. </member>
  610. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  611. <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>
  612. </member>
  613. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  614. <summary>Initializes the attribute with the specified return value condition.</summary>
  615. <param name="returnValue">
  616. The return value condition. If the method returns this value, the associated parameter may be null.
  617. </param>
  618. </member>
  619. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  620. <summary>Gets the return value condition.</summary>
  621. </member>
  622. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  623. <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>
  624. </member>
  625. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  626. <summary>Initializes the attribute with the specified return value condition.</summary>
  627. <param name="returnValue">
  628. The return value condition. If the method returns this value, the associated parameter will not be null.
  629. </param>
  630. </member>
  631. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  632. <summary>Gets the return value condition.</summary>
  633. </member>
  634. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  635. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  636. </member>
  637. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  638. <summary>Initializes the attribute with the associated parameter name.</summary>
  639. <param name="parameterName">
  640. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  641. </param>
  642. </member>
  643. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  644. <summary>Gets the associated parameter name.</summary>
  645. </member>
  646. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  647. <summary>Applied to a method that will never return under any circumstance.</summary>
  648. </member>
  649. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  650. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  651. </member>
  652. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  653. <summary>Initializes the attribute with the specified parameter value.</summary>
  654. <param name="parameterValue">
  655. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  656. the associated parameter matches this value.
  657. </param>
  658. </member>
  659. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  660. <summary>Gets the condition parameter value.</summary>
  661. </member>
  662. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  663. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  664. </member>
  665. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  666. <summary>Initializes the attribute with a field or property member.</summary>
  667. <param name="member">
  668. The field or property member that is promised to be not-null.
  669. </param>
  670. </member>
  671. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  672. <summary>Initializes the attribute with the list of field and property members.</summary>
  673. <param name="members">
  674. The list of field and property members that are promised to be not-null.
  675. </param>
  676. </member>
  677. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  678. <summary>Gets field or property member names.</summary>
  679. </member>
  680. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  681. <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>
  682. </member>
  683. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  684. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  685. <param name="returnValue">
  686. The return value condition. If the method returns this value, the associated parameter will not be null.
  687. </param>
  688. <param name="member">
  689. The field or property member that is promised to be not-null.
  690. </param>
  691. </member>
  692. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  693. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  694. <param name="returnValue">
  695. The return value condition. If the method returns this value, the associated parameter will not be null.
  696. </param>
  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.MemberNotNullWhenAttribute.ReturnValue">
  702. <summary>Gets the return value condition.</summary>
  703. </member>
  704. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  705. <summary>Gets field or property member names.</summary>
  706. </member>
  707. </members>
  708. </doc>