Microsoft.Extensions.Configuration.FileExtensions.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Configuration.FileExtensions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Configuration.FileConfigurationExtensions">
  8. <summary>
  9. Extension methods for <see cref="T:Microsoft.Extensions.Configuration.FileConfigurationProvider"/>.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetFileProvider(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider)">
  13. <summary>
  14. Sets the default <see cref="T:Microsoft.Extensions.FileProviders.IFileProvider"/> to be used for file-based providers.
  15. </summary>
  16. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  17. <param name="fileProvider">The default file provider instance.</param>
  18. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  19. </member>
  20. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.GetFileProvider(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  21. <summary>
  22. Gets the default <see cref="T:Microsoft.Extensions.FileProviders.IFileProvider"/> to be used for file-based providers.
  23. </summary>
  24. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  25. <returns>The default <see cref="T:Microsoft.Extensions.FileProviders.IFileProvider"/>.</returns>
  26. </member>
  27. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetBasePath(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)">
  28. <summary>
  29. Sets the FileProvider for file-based providers to a PhysicalFileProvider with the base path.
  30. </summary>
  31. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  32. <param name="basePath">The absolute path of file-based providers.</param>
  33. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  34. </member>
  35. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.SetFileLoadExceptionHandler(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action{Microsoft.Extensions.Configuration.FileLoadExceptionContext})">
  36. <summary>
  37. Sets a default action to be invoked for file-based providers when an error occurs.
  38. </summary>
  39. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> to add to.</param>
  40. <param name="handler">The Action to be invoked on a file load exception.</param>
  41. <returns>The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</returns>
  42. </member>
  43. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationExtensions.GetFileLoadExceptionHandler(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  44. <summary>
  45. Gets a default action to be invoked for file-based providers when an error occurs.
  46. </summary>
  47. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  48. <returns>The The Action to be invoked on a file load exception, if set.</returns>
  49. </member>
  50. <member name="T:Microsoft.Extensions.Configuration.FileConfigurationProvider">
  51. <summary>
  52. Base class for file based <see cref="T:Microsoft.Extensions.Configuration.ConfigurationProvider"/>.
  53. </summary>
  54. </member>
  55. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationProvider.#ctor(Microsoft.Extensions.Configuration.FileConfigurationSource)">
  56. <summary>
  57. Initializes a new instance with the specified source.
  58. </summary>
  59. <param name="source">The source settings.</param>
  60. </member>
  61. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationProvider.Source">
  62. <summary>
  63. The source settings for this provider.
  64. </summary>
  65. </member>
  66. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationProvider.ToString">
  67. <summary>
  68. Generates a string representing this provider name and relevant details.
  69. </summary>
  70. <returns> The configuration name. </returns>
  71. </member>
  72. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Load">
  73. <summary>
  74. Loads the contents of the file at <see cref="T:System.IO.Path"/>.
  75. </summary>
  76. <exception cref="T:System.IO.DirectoryNotFoundException">Optional is <c>false</c> on the source and a
  77. directory cannot be found at the specified Path.</exception>
  78. <exception cref="T:System.IO.FileNotFoundException">Optional is <c>false</c> on the source and a
  79. file does not exist at specified Path.</exception>
  80. <exception cref="T:System.IO.InvalidDataException">An exception was thrown by the concrete implementation of the
  81. <see cref="M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Load"/> method. Use the source <see cref="P:Microsoft.Extensions.Configuration.FileConfigurationSource.OnLoadException"/> callback
  82. if you need more control over the exception.</exception>
  83. </member>
  84. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Load(System.IO.Stream)">
  85. <summary>
  86. Loads this provider's data from a stream.
  87. </summary>
  88. <param name="stream">The stream to read.</param>
  89. </member>
  90. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Dispose">
  91. <inheritdoc />
  92. </member>
  93. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationProvider.Dispose(System.Boolean)">
  94. <summary>
  95. Dispose the provider.
  96. </summary>
  97. <param name="disposing"><c>true</c> if invoked from <see cref="M:System.IDisposable.Dispose"/>.</param>
  98. </member>
  99. <member name="T:Microsoft.Extensions.Configuration.FileConfigurationSource">
  100. <summary>
  101. Represents a base class for file based <see cref="T:Microsoft.Extensions.Configuration.IConfigurationSource"/>.
  102. </summary>
  103. </member>
  104. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationSource.FileProvider">
  105. <summary>
  106. Used to access the contents of the file.
  107. </summary>
  108. </member>
  109. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationSource.OwnsFileProvider">
  110. <summary>
  111. Set to true when <see cref="P:Microsoft.Extensions.Configuration.FileConfigurationSource.FileProvider"/> was not provided by user and can be safely disposed.
  112. </summary>
  113. </member>
  114. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationSource.Path">
  115. <summary>
  116. The path to the file.
  117. </summary>
  118. </member>
  119. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationSource.Optional">
  120. <summary>
  121. Determines if loading the file is optional.
  122. </summary>
  123. </member>
  124. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationSource.ReloadOnChange">
  125. <summary>
  126. Determines whether the source will be loaded if the underlying file changes.
  127. </summary>
  128. </member>
  129. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationSource.ReloadDelay">
  130. <summary>
  131. Number of milliseconds that reload will wait before calling Load. This helps
  132. avoid triggering reload before a file is completely written. Default is 250.
  133. </summary>
  134. </member>
  135. <member name="P:Microsoft.Extensions.Configuration.FileConfigurationSource.OnLoadException">
  136. <summary>
  137. Will be called if an uncaught exception occurs in FileConfigurationProvider.Load.
  138. </summary>
  139. </member>
  140. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationSource.Build(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  141. <summary>
  142. Builds the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/> for this source.
  143. </summary>
  144. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  145. <returns>A <see cref="T:Microsoft.Extensions.Configuration.IConfigurationProvider"/></returns>
  146. </member>
  147. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationSource.EnsureDefaults(Microsoft.Extensions.Configuration.IConfigurationBuilder)">
  148. <summary>
  149. Called to use any default settings on the builder like the FileProvider or FileLoadExceptionHandler.
  150. </summary>
  151. <param name="builder">The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/>.</param>
  152. </member>
  153. <member name="M:Microsoft.Extensions.Configuration.FileConfigurationSource.ResolveFileProvider">
  154. <summary>
  155. If no file provider has been set, for absolute Path, this will creates a physical file provider
  156. for the nearest existing directory.
  157. </summary>
  158. </member>
  159. <member name="T:Microsoft.Extensions.Configuration.FileLoadExceptionContext">
  160. <summary>
  161. Contains information about a file load exception.
  162. </summary>
  163. </member>
  164. <member name="P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Provider">
  165. <summary>
  166. The <see cref="T:Microsoft.Extensions.Configuration.FileConfigurationProvider"/> that caused the exception.
  167. </summary>
  168. </member>
  169. <member name="P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Exception">
  170. <summary>
  171. The exception that occurred in Load.
  172. </summary>
  173. </member>
  174. <member name="P:Microsoft.Extensions.Configuration.FileLoadExceptionContext.Ignore">
  175. <summary>
  176. If true, the exception will not be rethrown.
  177. </summary>
  178. </member>
  179. <member name="M:System.ThrowHelper.ThrowIfNull(System.Object,System.String)">
  180. <summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
  181. <param name="argument">The reference type argument to validate as non-null.</param>
  182. <param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
  183. </member>
  184. <member name="M:System.ThrowHelper.IfNullOrWhitespace(System.String,System.String)">
  185. <summary>
  186. Throws either an <see cref="T:System.ArgumentNullException"/> or an <see cref="T:System.ArgumentException"/>
  187. if the specified string is <see langword="null"/> or whitespace respectively.
  188. </summary>
  189. <param name="argument">String to be checked for <see langword="null"/> or whitespace.</param>
  190. <param name="paramName">The name of the parameter being checked.</param>
  191. <returns>The original value of <paramref name="argument"/>.</returns>
  192. </member>
  193. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  194. <summary>
  195. Attribute used to indicate a source generator should create a function for marshalling
  196. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  197. </summary>
  198. <remarks>
  199. This attribute is meaningless if the source generator associated with it is not enabled.
  200. The current built-in source generator only supports C# and only supplies an implementation when
  201. applied to static, partial, non-generic methods.
  202. </remarks>
  203. </member>
  204. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  205. <summary>
  206. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  207. </summary>
  208. <param name="libraryName">Name of the library containing the import.</param>
  209. </member>
  210. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  211. <summary>
  212. Gets the name of the library containing the import.
  213. </summary>
  214. </member>
  215. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  216. <summary>
  217. Gets or sets the name of the entry point to be called.
  218. </summary>
  219. </member>
  220. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  221. <summary>
  222. Gets or sets how to marshal string arguments to the method.
  223. </summary>
  224. <remarks>
  225. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  226. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  227. </remarks>
  228. </member>
  229. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  230. <summary>
  231. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  232. </summary>
  233. <remarks>
  234. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  235. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  236. </remarks>
  237. </member>
  238. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  239. <summary>
  240. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  241. on other platforms) before returning from the attributed method.
  242. </summary>
  243. </member>
  244. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  245. <summary>
  246. Specifies how strings should be marshalled for generated p/invokes
  247. </summary>
  248. </member>
  249. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  250. <summary>
  251. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  252. </summary>
  253. </member>
  254. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  255. <summary>
  256. Use the platform-provided UTF-8 marshaller.
  257. </summary>
  258. </member>
  259. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  260. <summary>
  261. Use the platform-provided UTF-16 marshaller.
  262. </summary>
  263. </member>
  264. <member name="P:System.SR.Error_ExpectedPhysicalPath">
  265. <summary>The expected physical path was '{0}'.</summary>
  266. </member>
  267. <member name="P:System.SR.Error_FileNotFound">
  268. <summary>The configuration file '{0}' was not found and is not optional.</summary>
  269. </member>
  270. <member name="P:System.SR.Error_FailedToLoad">
  271. <summary>Failed to load configuration from file '{0}'.</summary>
  272. </member>
  273. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  274. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  275. </member>
  276. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  277. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  278. </member>
  279. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  280. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  281. </member>
  282. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  283. <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>
  284. </member>
  285. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  286. <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>
  287. </member>
  288. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  289. <summary>Initializes the attribute with the specified return value condition.</summary>
  290. <param name="returnValue">
  291. The return value condition. If the method returns this value, the associated parameter may be null.
  292. </param>
  293. </member>
  294. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  295. <summary>Gets the return value condition.</summary>
  296. </member>
  297. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  298. <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>
  299. </member>
  300. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  301. <summary>Initializes the attribute with the specified return value condition.</summary>
  302. <param name="returnValue">
  303. The return value condition. If the method returns this value, the associated parameter will not be null.
  304. </param>
  305. </member>
  306. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  307. <summary>Gets the return value condition.</summary>
  308. </member>
  309. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  310. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  311. </member>
  312. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  313. <summary>Initializes the attribute with the associated parameter name.</summary>
  314. <param name="parameterName">
  315. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  316. </param>
  317. </member>
  318. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  319. <summary>Gets the associated parameter name.</summary>
  320. </member>
  321. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  322. <summary>Applied to a method that will never return under any circumstance.</summary>
  323. </member>
  324. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  325. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  326. </member>
  327. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  328. <summary>Initializes the attribute with the specified parameter value.</summary>
  329. <param name="parameterValue">
  330. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  331. the associated parameter matches this value.
  332. </param>
  333. </member>
  334. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  335. <summary>Gets the condition parameter value.</summary>
  336. </member>
  337. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  338. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  339. </member>
  340. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  341. <summary>Initializes the attribute with a field or property member.</summary>
  342. <param name="member">
  343. The field or property member that is promised to be not-null.
  344. </param>
  345. </member>
  346. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  347. <summary>Initializes the attribute with the list of field and property members.</summary>
  348. <param name="members">
  349. The list of field and property members that are promised to be not-null.
  350. </param>
  351. </member>
  352. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  353. <summary>Gets field or property member names.</summary>
  354. </member>
  355. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  356. <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>
  357. </member>
  358. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  359. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  360. <param name="returnValue">
  361. The return value condition. If the method returns this value, the associated parameter will not be null.
  362. </param>
  363. <param name="member">
  364. The field or property member that is promised to be not-null.
  365. </param>
  366. </member>
  367. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  368. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  369. <param name="returnValue">
  370. The return value condition. If the method returns this value, the associated parameter will not be null.
  371. </param>
  372. <param name="members">
  373. The list of field and property members that are promised to be not-null.
  374. </param>
  375. </member>
  376. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  377. <summary>Gets the return value condition.</summary>
  378. </member>
  379. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  380. <summary>Gets field or property member names.</summary>
  381. </member>
  382. </members>
  383. </doc>