Microsoft.Extensions.Options.xml 77 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Options</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Options.ConfigureNamedOptions`1">
  8. <summary>
  9. Implementation of IConfigureNamedOptions.
  10. </summary>
  11. <typeparam name="TOptions"></typeparam>
  12. </member>
  13. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.#ctor(System.String,System.Action{`0})">
  14. <summary>
  15. Constructor.
  16. </summary>
  17. <param name="name">The name of the options.</param>
  18. <param name="action">The action to register.</param>
  19. </member>
  20. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name">
  21. <summary>
  22. The options name.
  23. </summary>
  24. </member>
  25. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action">
  26. <summary>
  27. The configuration action.
  28. </summary>
  29. </member>
  30. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Configure(System.String,`0)">
  31. <summary>
  32. Invokes the registered configure Action if the name matches.
  33. </summary>
  34. <param name="name">The name of the options instance being configured.</param>
  35. <param name="options">The options instance to configure.</param>
  36. </member>
  37. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Configure(`0)">
  38. <summary>
  39. Invoked to configure a TOptions instance with the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  40. </summary>
  41. <param name="options">The options instance to configure.</param>
  42. </member>
  43. <member name="T:Microsoft.Extensions.Options.ConfigureNamedOptions`2">
  44. <summary>
  45. Implementation of IConfigureNamedOptions.
  46. </summary>
  47. <typeparam name="TOptions"></typeparam>
  48. <typeparam name="TDep"></typeparam>
  49. </member>
  50. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.#ctor(System.String,`1,System.Action{`0,`1})">
  51. <summary>
  52. Constructor.
  53. </summary>
  54. <param name="name">The name of the options.</param>
  55. <param name="dependency">A dependency.</param>
  56. <param name="action">The action to register.</param>
  57. </member>
  58. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name">
  59. <summary>
  60. The options name.
  61. </summary>
  62. </member>
  63. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action">
  64. <summary>
  65. The configuration action.
  66. </summary>
  67. </member>
  68. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency">
  69. <summary>
  70. The dependency.
  71. </summary>
  72. </member>
  73. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Configure(System.String,`0)">
  74. <summary>
  75. Invokes the registered configure Action if the name matches.
  76. </summary>
  77. <param name="name">The name of the options instance being configured.</param>
  78. <param name="options">The options instance to configure.</param>
  79. </member>
  80. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Configure(`0)">
  81. <summary>
  82. Invoked to configure a TOptions instance with the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  83. </summary>
  84. <param name="options">The options instance to configure.</param>
  85. </member>
  86. <member name="T:Microsoft.Extensions.Options.ConfigureNamedOptions`3">
  87. <summary>
  88. Implementation of IConfigureNamedOptions.
  89. </summary>
  90. <typeparam name="TOptions"></typeparam>
  91. <typeparam name="TDep1"></typeparam>
  92. <typeparam name="TDep2"></typeparam>
  93. </member>
  94. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.#ctor(System.String,`1,`2,System.Action{`0,`1,`2})">
  95. <summary>
  96. Constructor.
  97. </summary>
  98. <param name="name">The name of the options.</param>
  99. <param name="dependency">A dependency.</param>
  100. <param name="dependency2">A second dependency.</param>
  101. <param name="action">The action to register.</param>
  102. </member>
  103. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name">
  104. <summary>
  105. The options name.
  106. </summary>
  107. </member>
  108. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action">
  109. <summary>
  110. The configuration action.
  111. </summary>
  112. </member>
  113. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1">
  114. <summary>
  115. The first dependency.
  116. </summary>
  117. </member>
  118. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2">
  119. <summary>
  120. The second dependency.
  121. </summary>
  122. </member>
  123. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Configure(System.String,`0)">
  124. <summary>
  125. Invokes the registered configure Action if the name matches.
  126. </summary>
  127. <param name="name">The name of the options instance being configured.</param>
  128. <param name="options">The options instance to configure.</param>
  129. </member>
  130. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Configure(`0)">
  131. <summary>
  132. Invoked to configure a TOptions instance with the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  133. </summary>
  134. <param name="options">The options instance to configure.</param>
  135. </member>
  136. <member name="T:Microsoft.Extensions.Options.ConfigureNamedOptions`4">
  137. <summary>
  138. Implementation of IConfigureNamedOptions.
  139. </summary>
  140. <typeparam name="TOptions"></typeparam>
  141. <typeparam name="TDep1"></typeparam>
  142. <typeparam name="TDep2"></typeparam>
  143. <typeparam name="TDep3"></typeparam>
  144. </member>
  145. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.#ctor(System.String,`1,`2,`3,System.Action{`0,`1,`2,`3})">
  146. <summary>
  147. Constructor.
  148. </summary>
  149. <param name="name">The name of the options.</param>
  150. <param name="dependency">A dependency.</param>
  151. <param name="dependency2">A second dependency.</param>
  152. <param name="dependency3">A third dependency.</param>
  153. <param name="action">The action to register.</param>
  154. </member>
  155. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name">
  156. <summary>
  157. The options name.
  158. </summary>
  159. </member>
  160. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action">
  161. <summary>
  162. The configuration action.
  163. </summary>
  164. </member>
  165. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1">
  166. <summary>
  167. The first dependency.
  168. </summary>
  169. </member>
  170. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2">
  171. <summary>
  172. The second dependency.
  173. </summary>
  174. </member>
  175. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3">
  176. <summary>
  177. The third dependency.
  178. </summary>
  179. </member>
  180. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Configure(System.String,`0)">
  181. <summary>
  182. Invokes the registered configure Action if the name matches.
  183. </summary>
  184. <param name="name">The name of the options instance being configured.</param>
  185. <param name="options">The options instance to configure.</param>
  186. </member>
  187. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Configure(`0)">
  188. <summary>
  189. Invoked to configure a TOptions instance with the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  190. </summary>
  191. <param name="options">The options instance to configure.</param>
  192. </member>
  193. <member name="T:Microsoft.Extensions.Options.ConfigureNamedOptions`5">
  194. <summary>
  195. Implementation of IConfigureNamedOptions.
  196. </summary>
  197. <typeparam name="TOptions"></typeparam>
  198. <typeparam name="TDep1"></typeparam>
  199. <typeparam name="TDep2"></typeparam>
  200. <typeparam name="TDep3"></typeparam>
  201. <typeparam name="TDep4"></typeparam>
  202. </member>
  203. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Action{`0,`1,`2,`3,`4})">
  204. <summary>
  205. Constructor.
  206. </summary>
  207. <param name="name">The name of the options.</param>
  208. <param name="dependency1">A dependency.</param>
  209. <param name="dependency2">A second dependency.</param>
  210. <param name="dependency3">A third dependency.</param>
  211. <param name="dependency4">A fourth dependency.</param>
  212. <param name="action">The action to register.</param>
  213. </member>
  214. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name">
  215. <summary>
  216. The options name.
  217. </summary>
  218. </member>
  219. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action">
  220. <summary>
  221. The configuration action.
  222. </summary>
  223. </member>
  224. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1">
  225. <summary>
  226. The first dependency.
  227. </summary>
  228. </member>
  229. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2">
  230. <summary>
  231. The second dependency.
  232. </summary>
  233. </member>
  234. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3">
  235. <summary>
  236. The third dependency.
  237. </summary>
  238. </member>
  239. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4">
  240. <summary>
  241. The fourth dependency.
  242. </summary>
  243. </member>
  244. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Configure(System.String,`0)">
  245. <summary>
  246. Invokes the registered configure Action if the name matches.
  247. </summary>
  248. <param name="name">The name of the options instance being configured.</param>
  249. <param name="options">The options instance to configure.</param>
  250. </member>
  251. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Configure(`0)">
  252. <summary>
  253. Invoked to configure a TOptions instance with the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  254. </summary>
  255. <param name="options">The options instance to configure.</param>
  256. </member>
  257. <member name="T:Microsoft.Extensions.Options.ConfigureNamedOptions`6">
  258. <summary>
  259. Implementation of IConfigureNamedOptions.
  260. </summary>
  261. <typeparam name="TOptions"></typeparam>
  262. <typeparam name="TDep1"></typeparam>
  263. <typeparam name="TDep2"></typeparam>
  264. <typeparam name="TDep3"></typeparam>
  265. <typeparam name="TDep4"></typeparam>
  266. <typeparam name="TDep5"></typeparam>
  267. </member>
  268. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Action{`0,`1,`2,`3,`4,`5})">
  269. <summary>
  270. Constructor.
  271. </summary>
  272. <param name="name">The name of the options.</param>
  273. <param name="dependency1">A dependency.</param>
  274. <param name="dependency2">A second dependency.</param>
  275. <param name="dependency3">A third dependency.</param>
  276. <param name="dependency4">A fourth dependency.</param>
  277. <param name="dependency5">A fifth dependency.</param>
  278. <param name="action">The action to register.</param>
  279. </member>
  280. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name">
  281. <summary>
  282. The options name.
  283. </summary>
  284. </member>
  285. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action">
  286. <summary>
  287. The configuration action.
  288. </summary>
  289. </member>
  290. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1">
  291. <summary>
  292. The first dependency.
  293. </summary>
  294. </member>
  295. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2">
  296. <summary>
  297. The second dependency.
  298. </summary>
  299. </member>
  300. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3">
  301. <summary>
  302. The third dependency.
  303. </summary>
  304. </member>
  305. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4">
  306. <summary>
  307. The fourth dependency.
  308. </summary>
  309. </member>
  310. <member name="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5">
  311. <summary>
  312. The fifth dependency.
  313. </summary>
  314. </member>
  315. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Configure(System.String,`0)">
  316. <summary>
  317. Invokes the registered configure Action if the name matches.
  318. </summary>
  319. <param name="name">The name of the options instance being configured.</param>
  320. <param name="options">The options instance to configure.</param>
  321. </member>
  322. <member name="M:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Configure(`0)">
  323. <summary>
  324. Invoked to configure a TOptions instance with the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  325. </summary>
  326. <param name="options">The options instance to configure.</param>
  327. </member>
  328. <member name="T:Microsoft.Extensions.Options.ConfigureOptions`1">
  329. <summary>
  330. Implementation of IConfigureOptions.
  331. </summary>
  332. <typeparam name="TOptions"></typeparam>
  333. </member>
  334. <member name="M:Microsoft.Extensions.Options.ConfigureOptions`1.#ctor(System.Action{`0})">
  335. <summary>
  336. Constructor.
  337. </summary>
  338. <param name="action">The action to register.</param>
  339. </member>
  340. <member name="P:Microsoft.Extensions.Options.ConfigureOptions`1.Action">
  341. <summary>
  342. The configuration action.
  343. </summary>
  344. </member>
  345. <member name="M:Microsoft.Extensions.Options.ConfigureOptions`1.Configure(`0)">
  346. <summary>
  347. Invokes the registered configure Action if the name matches.
  348. </summary>
  349. <param name="options"></param>
  350. </member>
  351. <member name="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1">
  352. <summary>
  353. Represents something that configures the TOptions type.
  354. </summary>
  355. <typeparam name="TOptions"></typeparam>
  356. </member>
  357. <member name="M:Microsoft.Extensions.Options.IConfigureNamedOptions`1.Configure(System.String,`0)">
  358. <summary>
  359. Invoked to configure a TOptions instance.
  360. </summary>
  361. <param name="name">The name of the options instance being configured.</param>
  362. <param name="options">The options instance to configure.</param>
  363. </member>
  364. <member name="T:Microsoft.Extensions.Options.IConfigureOptions`1">
  365. <summary>
  366. Represents something that configures the TOptions type.
  367. Note: These are run before all <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  368. </summary>
  369. <typeparam name="TOptions"></typeparam>
  370. </member>
  371. <member name="M:Microsoft.Extensions.Options.IConfigureOptions`1.Configure(`0)">
  372. <summary>
  373. Invoked to configure a TOptions instance.
  374. </summary>
  375. <param name="options">The options instance to configure.</param>
  376. </member>
  377. <member name="T:Microsoft.Extensions.Options.IOptions`1">
  378. <summary>
  379. Used to retrieve configured TOptions instances.
  380. </summary>
  381. <typeparam name="TOptions">The type of options being requested.</typeparam>
  382. </member>
  383. <member name="P:Microsoft.Extensions.Options.IOptions`1.Value">
  384. <summary>
  385. The default configured TOptions instance
  386. </summary>
  387. </member>
  388. <member name="T:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1">
  389. <summary>
  390. Used to fetch IChangeTokens used for tracking options changes.
  391. </summary>
  392. <typeparam name="TOptions"></typeparam>
  393. </member>
  394. <member name="M:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1.GetChangeToken">
  395. <summary>
  396. Returns a IChangeToken which can be used to register a change notification callback.
  397. </summary>
  398. <returns></returns>
  399. </member>
  400. <member name="P:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1.Name">
  401. <summary>
  402. The name of the option instance being changed.
  403. </summary>
  404. </member>
  405. <member name="T:Microsoft.Extensions.Options.IOptionsFactory`1">
  406. <summary>
  407. Used to create TOptions instances.
  408. </summary>
  409. <typeparam name="TOptions">The type of options being requested.</typeparam>
  410. </member>
  411. <member name="M:Microsoft.Extensions.Options.IOptionsFactory`1.Create(System.String)">
  412. <summary>
  413. Returns a configured TOptions instance with the given name.
  414. </summary>
  415. </member>
  416. <member name="T:Microsoft.Extensions.Options.IOptionsMonitor`1">
  417. <summary>
  418. Used for notifications when TOptions instances change.
  419. </summary>
  420. <typeparam name="TOptions">The options type.</typeparam>
  421. </member>
  422. <member name="P:Microsoft.Extensions.Options.IOptionsMonitor`1.CurrentValue">
  423. <summary>
  424. Returns the current TOptions instance with the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  425. </summary>
  426. </member>
  427. <member name="M:Microsoft.Extensions.Options.IOptionsMonitor`1.Get(System.String)">
  428. <summary>
  429. Returns a configured TOptions instance with the given name.
  430. </summary>
  431. </member>
  432. <member name="M:Microsoft.Extensions.Options.IOptionsMonitor`1.OnChange(System.Action{`0,System.String})">
  433. <summary>
  434. Registers a listener to be called whenever a named TOptions changes.
  435. </summary>
  436. <param name="listener">The action to be invoked when TOptions has changed.</param>
  437. <returns>An IDisposable which should be disposed to stop listening for changes.</returns>
  438. </member>
  439. <member name="T:Microsoft.Extensions.Options.IOptionsMonitorCache`1">
  440. <summary>
  441. Used by <see cref="T:Microsoft.Extensions.Options.IOptionsMonitor`1"/> to cache TOptions instances.
  442. </summary>
  443. <typeparam name="TOptions">The type of options being requested.</typeparam>
  444. </member>
  445. <member name="M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.GetOrAdd(System.String,System.Func{`0})">
  446. <summary>
  447. Gets a named options instance, or adds a new instance created with createOptions.
  448. </summary>
  449. <param name="name">The name of the options instance.</param>
  450. <param name="createOptions">The func used to create the new instance.</param>
  451. <returns>The options instance.</returns>
  452. </member>
  453. <member name="M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.TryAdd(System.String,`0)">
  454. <summary>
  455. Tries to adds a new option to the cache, will return false if the name already exists.
  456. </summary>
  457. <param name="name">The name of the options instance.</param>
  458. <param name="options">The options instance.</param>
  459. <returns>Whether anything was added.</returns>
  460. </member>
  461. <member name="M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.TryRemove(System.String)">
  462. <summary>
  463. Try to remove an options instance.
  464. </summary>
  465. <param name="name">The name of the options instance.</param>
  466. <returns>Whether anything was removed.</returns>
  467. </member>
  468. <member name="M:Microsoft.Extensions.Options.IOptionsMonitorCache`1.Clear">
  469. <summary>
  470. Clears all options instances from the cache.
  471. </summary>
  472. </member>
  473. <member name="T:Microsoft.Extensions.Options.IOptionsSnapshot`1">
  474. <summary>
  475. Used to access the value of TOptions for the lifetime of a request.
  476. </summary>
  477. <typeparam name="TOptions"></typeparam>
  478. </member>
  479. <member name="M:Microsoft.Extensions.Options.IOptionsSnapshot`1.Get(System.String)">
  480. <summary>
  481. Returns a configured TOptions instance with the given name.
  482. </summary>
  483. </member>
  484. <member name="T:Microsoft.Extensions.Options.IPostConfigureOptions`1">
  485. <summary>
  486. Represents something that configures the TOptions type.
  487. Note: These are run after all <see cref="T:Microsoft.Extensions.Options.IConfigureOptions`1"/>.
  488. </summary>
  489. <typeparam name="TOptions"></typeparam>
  490. </member>
  491. <member name="M:Microsoft.Extensions.Options.IPostConfigureOptions`1.PostConfigure(System.String,`0)">
  492. <summary>
  493. Invoked to configure a TOptions instance.
  494. </summary>
  495. <param name="name">The name of the options instance being configured.</param>
  496. <param name="options">The options instance to configured.</param>
  497. </member>
  498. <member name="T:Microsoft.Extensions.Options.IValidateOptions`1">
  499. <summary>
  500. Interface used to validate options.
  501. </summary>
  502. <typeparam name="TOptions">The options type to validate.</typeparam>
  503. </member>
  504. <member name="M:Microsoft.Extensions.Options.IValidateOptions`1.Validate(System.String,`0)">
  505. <summary>
  506. Validates a specific named options instance (or all when name is null).
  507. </summary>
  508. <param name="name">The name of the options instance being validated.</param>
  509. <param name="options">The options instance.</param>
  510. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  511. </member>
  512. <member name="T:Microsoft.Extensions.Options.Options">
  513. <summary>
  514. Helper class.
  515. </summary>
  516. </member>
  517. <member name="F:Microsoft.Extensions.Options.Options.DefaultName">
  518. <summary>
  519. The default name used for options instances: "".
  520. </summary>
  521. </member>
  522. <member name="M:Microsoft.Extensions.Options.Options.Create``1(``0)">
  523. <summary>
  524. Creates a wrapper around an instance of TOptions to return itself as an IOptions.
  525. </summary>
  526. <typeparam name="TOptions"></typeparam>
  527. <param name="options"></param>
  528. <returns></returns>
  529. </member>
  530. <member name="T:Microsoft.Extensions.Options.OptionsBuilder`1">
  531. <summary>
  532. Used to configure TOptions instances.
  533. </summary>
  534. <typeparam name="TOptions">The type of options being requested.</typeparam>
  535. </member>
  536. <member name="P:Microsoft.Extensions.Options.OptionsBuilder`1.Name">
  537. <summary>
  538. The default name of the TOptions instance.
  539. </summary>
  540. </member>
  541. <member name="P:Microsoft.Extensions.Options.OptionsBuilder`1.Services">
  542. <summary>
  543. The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> for the options being configured.
  544. </summary>
  545. </member>
  546. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.#ctor(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)">
  547. <summary>
  548. Constructor.
  549. </summary>
  550. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> for the options being configured.</param>
  551. <param name="name">The default name of the TOptions instance, if null Options.DefaultName is used.</param>
  552. </member>
  553. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})">
  554. <summary>
  555. Registers an action used to configure a particular type of options.
  556. Note: These are run before all <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})"/>.
  557. </summary>
  558. <param name="configureOptions">The action used to configure the options.</param>
  559. <returns>The current OptionsBuilder.</returns>
  560. </member>
  561. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``1(System.Action{`0,``0})">
  562. <summary>
  563. Registers an action used to configure a particular type of options.
  564. Note: These are run before all <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})"/>.
  565. </summary>
  566. <typeparam name="TDep">A dependency used by the action.</typeparam>
  567. <param name="configureOptions">The action used to configure the options.</param>
  568. <returns>The current OptionsBuilder.</returns>
  569. </member>
  570. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``2(System.Action{`0,``0,``1})">
  571. <summary>
  572. Registers an action used to configure a particular type of options.
  573. Note: These are run before all <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})"/>.
  574. </summary>
  575. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  576. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  577. <param name="configureOptions">The action used to configure the options.</param>
  578. <returns>The current OptionsBuilder.</returns>
  579. </member>
  580. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``3(System.Action{`0,``0,``1,``2})">
  581. <summary>
  582. Registers an action used to configure a particular type of options.
  583. Note: These are run before all <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})"/>.
  584. </summary>
  585. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  586. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  587. <typeparam name="TDep3">The third dependency used by the action.</typeparam>
  588. <param name="configureOptions">The action used to configure the options.</param>
  589. <returns>The current OptionsBuilder.</returns>
  590. </member>
  591. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``4(System.Action{`0,``0,``1,``2,``3})">
  592. <summary>
  593. Registers an action used to configure a particular type of options.
  594. Note: These are run before all <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})"/>.
  595. </summary>
  596. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  597. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  598. <typeparam name="TDep3">The third dependency used by the action.</typeparam>
  599. <typeparam name="TDep4">The fourth dependency used by the action.</typeparam>
  600. <param name="configureOptions">The action used to configure the options.</param>
  601. <returns>The current OptionsBuilder.</returns>
  602. </member>
  603. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure``5(System.Action{`0,``0,``1,``2,``3,``4})">
  604. <summary>
  605. Registers an action used to configure a particular type of options.
  606. Note: These are run before all <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})"/>.
  607. </summary>
  608. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  609. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  610. <typeparam name="TDep3">The third dependency used by the action.</typeparam>
  611. <typeparam name="TDep4">The fourth dependency used by the action.</typeparam>
  612. <typeparam name="TDep5">The fifth dependency used by the action.</typeparam>
  613. <param name="configureOptions">The action used to configure the options.</param>
  614. <returns>The current OptionsBuilder.</returns>
  615. </member>
  616. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure(System.Action{`0})">
  617. <summary>
  618. Registers an action used to configure a particular type of options.
  619. Note: These are run after all <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})"/>.
  620. </summary>
  621. <param name="configureOptions">The action used to configure the options.</param>
  622. </member>
  623. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``1(System.Action{`0,``0})">
  624. <summary>
  625. Registers an action used to post configure a particular type of options.
  626. Note: These are run before after <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})"/>.
  627. </summary>
  628. <typeparam name="TDep">The dependency used by the action.</typeparam>
  629. <param name="configureOptions">The action used to configure the options.</param>
  630. <returns>The current OptionsBuilder.</returns>
  631. </member>
  632. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``2(System.Action{`0,``0,``1})">
  633. <summary>
  634. Registers an action used to post configure a particular type of options.
  635. Note: These are run before after <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})"/>.
  636. </summary>
  637. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  638. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  639. <param name="configureOptions">The action used to configure the options.</param>
  640. <returns>The current OptionsBuilder.</returns>
  641. </member>
  642. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``3(System.Action{`0,``0,``1,``2})">
  643. <summary>
  644. Registers an action used to post configure a particular type of options.
  645. Note: These are run before after <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})"/>.
  646. </summary>
  647. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  648. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  649. <typeparam name="TDep3">The third dependency used by the action.</typeparam>
  650. <param name="configureOptions">The action used to configure the options.</param>
  651. <returns>The current OptionsBuilder.</returns>
  652. </member>
  653. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``4(System.Action{`0,``0,``1,``2,``3})">
  654. <summary>
  655. Registers an action used to post configure a particular type of options.
  656. Note: These are run before after <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})"/>.
  657. </summary>
  658. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  659. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  660. <typeparam name="TDep3">The third dependency used by the action.</typeparam>
  661. <typeparam name="TDep4">The fourth dependency used by the action.</typeparam>
  662. <param name="configureOptions">The action used to configure the options.</param>
  663. <returns>The current OptionsBuilder.</returns>
  664. </member>
  665. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.PostConfigure``5(System.Action{`0,``0,``1,``2,``3,``4})">
  666. <summary>
  667. Registers an action used to post configure a particular type of options.
  668. Note: These are run before after <seealso cref="M:Microsoft.Extensions.Options.OptionsBuilder`1.Configure(System.Action{`0})"/>.
  669. </summary>
  670. <typeparam name="TDep1">The first dependency used by the action.</typeparam>
  671. <typeparam name="TDep2">The second dependency used by the action.</typeparam>
  672. <typeparam name="TDep3">The third dependency used by the action.</typeparam>
  673. <typeparam name="TDep4">The fourth dependency used by the action.</typeparam>
  674. <typeparam name="TDep5">The fifth dependency used by the action.</typeparam>
  675. <param name="configureOptions">The action used to configure the options.</param>
  676. <returns>The current OptionsBuilder.</returns>
  677. </member>
  678. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate(System.Func{`0,System.Boolean})">
  679. <summary>
  680. Register a validation action for an options type using a default failure message..
  681. </summary>
  682. <param name="validation">The validation function.</param>
  683. <returns>The current OptionsBuilder.</returns>
  684. </member>
  685. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate(System.Func{`0,System.Boolean},System.String)">
  686. <summary>
  687. Register a validation action for an options type.
  688. </summary>
  689. <param name="validation">The validation function.</param>
  690. <param name="failureMessage">The failure message to use when validation fails.</param>
  691. <returns>The current OptionsBuilder.</returns>
  692. </member>
  693. <member name="T:Microsoft.Extensions.Options.OptionsCache`1">
  694. <summary>
  695. Used to cache TOptions instances.
  696. </summary>
  697. <typeparam name="TOptions">The type of options being requested.</typeparam>
  698. </member>
  699. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.Clear">
  700. <summary>
  701. Clears all options instances from the cache.
  702. </summary>
  703. </member>
  704. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.GetOrAdd(System.String,System.Func{`0})">
  705. <summary>
  706. Gets a named options instance, or adds a new instance created with createOptions.
  707. </summary>
  708. <param name="name">The name of the options instance.</param>
  709. <param name="createOptions">The func used to create the new instance.</param>
  710. <returns>The options instance.</returns>
  711. </member>
  712. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.TryAdd(System.String,`0)">
  713. <summary>
  714. Tries to adds a new option to the cache, will return false if the name already exists.
  715. </summary>
  716. <param name="name">The name of the options instance.</param>
  717. <param name="options">The options instance.</param>
  718. <returns>Whether anything was added.</returns>
  719. </member>
  720. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.TryRemove(System.String)">
  721. <summary>
  722. Try to remove an options instance.
  723. </summary>
  724. <param name="name">The name of the options instance.</param>
  725. <returns>Whether anything was removed.</returns>
  726. </member>
  727. <member name="T:Microsoft.Extensions.Options.OptionsFactory`1">
  728. <summary>
  729. Implementation of IOptionsFactory.
  730. </summary>
  731. <typeparam name="TOptions">The type of options being requested.</typeparam>
  732. </member>
  733. <member name="M:Microsoft.Extensions.Options.OptionsFactory`1.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IPostConfigureOptions{`0}})">
  734. <summary>
  735. Initializes a new instance with the specified options configurations.
  736. </summary>
  737. <param name="setups">The configuration actions to run.</param>
  738. <param name="postConfigures">The initialization actions to run.</param>
  739. </member>
  740. <member name="M:Microsoft.Extensions.Options.OptionsFactory`1.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IPostConfigureOptions{`0}},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IValidateOptions{`0}})">
  741. <summary>
  742. Initializes a new instance with the specified options configurations.
  743. </summary>
  744. <param name="setups">The configuration actions to run.</param>
  745. <param name="postConfigures">The initialization actions to run.</param>
  746. <param name="validations">The validations to run.</param>
  747. </member>
  748. <member name="M:Microsoft.Extensions.Options.OptionsFactory`1.Create(System.String)">
  749. <summary>
  750. Returns a configured TOptions instance with the given name.
  751. </summary>
  752. </member>
  753. <member name="T:Microsoft.Extensions.Options.OptionsManager`1">
  754. <summary>
  755. Implementation of IOptions and IOptionsSnapshot.
  756. </summary>
  757. <typeparam name="TOptions"></typeparam>
  758. </member>
  759. <member name="M:Microsoft.Extensions.Options.OptionsManager`1.#ctor(Microsoft.Extensions.Options.IOptionsFactory{`0})">
  760. <summary>
  761. Initializes a new instance with the specified options configurations.
  762. </summary>
  763. <param name="factory">The factory to use to create options.</param>
  764. </member>
  765. <member name="P:Microsoft.Extensions.Options.OptionsManager`1.Value">
  766. <summary>
  767. The default configured TOptions instance, equivalent to Get(Options.DefaultName).
  768. </summary>
  769. </member>
  770. <member name="M:Microsoft.Extensions.Options.OptionsManager`1.Get(System.String)">
  771. <summary>
  772. Returns a configured TOptions instance with the given name.
  773. </summary>
  774. </member>
  775. <member name="T:Microsoft.Extensions.Options.OptionsMonitor`1">
  776. <summary>
  777. Implementation of IOptionsMonitor.
  778. </summary>
  779. <typeparam name="TOptions"></typeparam>
  780. </member>
  781. <member name="M:Microsoft.Extensions.Options.OptionsMonitor`1.#ctor(Microsoft.Extensions.Options.IOptionsFactory{`0},System.Collections.Generic.IEnumerable{Microsoft.Extensions.Options.IOptionsChangeTokenSource{`0}},Microsoft.Extensions.Options.IOptionsMonitorCache{`0})">
  782. <summary>
  783. Constructor.
  784. </summary>
  785. <param name="factory">The factory to use to create options.</param>
  786. <param name="sources">The sources used to listen for changes to the options instance.</param>
  787. <param name="cache">The cache used to store options.</param>
  788. </member>
  789. <member name="P:Microsoft.Extensions.Options.OptionsMonitor`1.CurrentValue">
  790. <summary>
  791. The present value of the options.
  792. </summary>
  793. </member>
  794. <member name="M:Microsoft.Extensions.Options.OptionsMonitor`1.Get(System.String)">
  795. <summary>
  796. Returns a configured TOptions instance with the given name.
  797. </summary>
  798. </member>
  799. <member name="M:Microsoft.Extensions.Options.OptionsMonitor`1.OnChange(System.Action{`0,System.String})">
  800. <summary>
  801. Registers a listener to be called whenever TOptions changes.
  802. </summary>
  803. <param name="listener">The action to be invoked when TOptions has changed.</param>
  804. <returns>An IDisposable which should be disposed to stop listening for changes.</returns>
  805. </member>
  806. <member name="T:Microsoft.Extensions.Options.OptionsMonitorExtensions">
  807. <summary>
  808. Extension methods for IOptionsMonitor.
  809. </summary>
  810. </member>
  811. <member name="M:Microsoft.Extensions.Options.OptionsMonitorExtensions.OnChange``1(Microsoft.Extensions.Options.IOptionsMonitor{``0},System.Action{``0})">
  812. <summary>
  813. Registers a listener to be called whenever TOptions changes.
  814. </summary>
  815. <param name="monitor">The IOptionsMonitor.</param>
  816. <param name="listener">The action to be invoked when TOptions has changed.</param>
  817. <returns>An IDisposable which should be disposed to stop listening for changes.</returns>
  818. </member>
  819. <member name="T:Microsoft.Extensions.Options.OptionsValidationException">
  820. <summary>
  821. Thrown when options validation fails.
  822. </summary>
  823. </member>
  824. <member name="M:Microsoft.Extensions.Options.OptionsValidationException.#ctor(System.String,System.Type,System.Collections.Generic.IEnumerable{System.String})">
  825. <summary>
  826. Constructor.
  827. </summary>
  828. <param name="optionsName">The name of the options instance that failed.</param>
  829. <param name="optionsType">The options type that failed.</param>
  830. <param name="failureMessages">The validation failure messages.</param>
  831. </member>
  832. <member name="P:Microsoft.Extensions.Options.OptionsValidationException.OptionsName">
  833. <summary>
  834. The name of the options instance that failed.
  835. </summary>
  836. </member>
  837. <member name="P:Microsoft.Extensions.Options.OptionsValidationException.OptionsType">
  838. <summary>
  839. The type of the options that failed.
  840. </summary>
  841. </member>
  842. <member name="P:Microsoft.Extensions.Options.OptionsValidationException.Failures">
  843. <summary>
  844. The validation failures.
  845. </summary>
  846. </member>
  847. <member name="T:Microsoft.Extensions.Options.OptionsWrapper`1">
  848. <summary>
  849. IOptions wrapper that returns the options instance.
  850. </summary>
  851. <typeparam name="TOptions"></typeparam>
  852. </member>
  853. <member name="M:Microsoft.Extensions.Options.OptionsWrapper`1.#ctor(`0)">
  854. <summary>
  855. Intializes the wrapper with the options instance to return.
  856. </summary>
  857. <param name="options">The options instance to return.</param>
  858. </member>
  859. <member name="P:Microsoft.Extensions.Options.OptionsWrapper`1.Value">
  860. <summary>
  861. The options instance.
  862. </summary>
  863. </member>
  864. <member name="M:Microsoft.Extensions.Options.OptionsWrapper`1.Add(System.String,`0)">
  865. <summary>
  866. This method is obsolete and will be removed in a future version.
  867. </summary>
  868. </member>
  869. <member name="M:Microsoft.Extensions.Options.OptionsWrapper`1.Get(System.String)">
  870. <summary>
  871. This method is obsolete and will be removed in a future version.
  872. </summary>
  873. <param name="name">This parameter is ignored.</param>
  874. <returns>The <see cref="P:Microsoft.Extensions.Options.OptionsWrapper`1.Value"/>.</returns>
  875. </member>
  876. <member name="M:Microsoft.Extensions.Options.OptionsWrapper`1.Remove(System.String)">
  877. <summary>
  878. This method is obsolete and will be removed in a future version.
  879. </summary>
  880. </member>
  881. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`1">
  882. <summary>
  883. Implementation of <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  884. </summary>
  885. <typeparam name="TOptions"></typeparam>
  886. </member>
  887. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`1.#ctor(System.String,System.Action{`0})">
  888. <summary>
  889. Creates a new instance of <see cref="T:Microsoft.Extensions.Options.PostConfigureOptions`1"/>.
  890. </summary>
  891. <param name="name">The name of the options.</param>
  892. <param name="action">The action to register.</param>
  893. </member>
  894. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`1.Name">
  895. <summary>
  896. The options name.
  897. </summary>
  898. </member>
  899. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`1.Action">
  900. <summary>
  901. The initialization action.
  902. </summary>
  903. </member>
  904. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`1.PostConfigure(System.String,`0)">
  905. <summary>
  906. Invokes the registered initialization Action if the name matches.
  907. </summary>
  908. <param name="name"></param>
  909. <param name="options"></param>
  910. </member>
  911. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`2">
  912. <summary>
  913. Implementation of IPostConfigureOptions.
  914. </summary>
  915. <typeparam name="TOptions"></typeparam>
  916. <typeparam name="TDep"></typeparam>
  917. </member>
  918. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`2.#ctor(System.String,`1,System.Action{`0,`1})">
  919. <summary>
  920. Constructor.
  921. </summary>
  922. <param name="name">The name of the options.</param>
  923. <param name="dependency">A dependency.</param>
  924. <param name="action">The action to register.</param>
  925. </member>
  926. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`2.Name">
  927. <summary>
  928. The options name.
  929. </summary>
  930. </member>
  931. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`2.Action">
  932. <summary>
  933. The configuration action.
  934. </summary>
  935. </member>
  936. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency">
  937. <summary>
  938. The dependency.
  939. </summary>
  940. </member>
  941. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(System.String,`0)">
  942. <summary>
  943. Invoked to configure a TOptions instance.
  944. </summary>
  945. <param name="name">The name of the options instance being configured.</param>
  946. <param name="options">The options instance to configured.</param>
  947. </member>
  948. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(`0)">
  949. <summary>
  950. Invoked to configure a TOptions instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  951. </summary>
  952. <param name="options">The options instance to configured.</param>
  953. </member>
  954. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`3">
  955. <summary>
  956. Implementation of IPostConfigureOptions.
  957. </summary>
  958. <typeparam name="TOptions"></typeparam>
  959. <typeparam name="TDep1"></typeparam>
  960. <typeparam name="TDep2"></typeparam>
  961. </member>
  962. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`3.#ctor(System.String,`1,`2,System.Action{`0,`1,`2})">
  963. <summary>
  964. Constructor.
  965. </summary>
  966. <param name="name">The name of the options.</param>
  967. <param name="dependency">A dependency.</param>
  968. <param name="dependency2">A second dependency.</param>
  969. <param name="action">The action to register.</param>
  970. </member>
  971. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Name">
  972. <summary>
  973. The options name.
  974. </summary>
  975. </member>
  976. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Action">
  977. <summary>
  978. The configuration action.
  979. </summary>
  980. </member>
  981. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1">
  982. <summary>
  983. The first dependency.
  984. </summary>
  985. </member>
  986. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2">
  987. <summary>
  988. The second dependency.
  989. </summary>
  990. </member>
  991. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(System.String,`0)">
  992. <summary>
  993. Invoked to configure a TOptions instance.
  994. </summary>
  995. <param name="name">The name of the options instance being configured.</param>
  996. <param name="options">The options instance to configured.</param>
  997. </member>
  998. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(`0)">
  999. <summary>
  1000. Invoked to configure a TOptions instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1001. </summary>
  1002. <param name="options">The options instance to configured.</param>
  1003. </member>
  1004. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`4">
  1005. <summary>
  1006. Implementation of IPostConfigureOptions.
  1007. </summary>
  1008. <typeparam name="TOptions"></typeparam>
  1009. <typeparam name="TDep1"></typeparam>
  1010. <typeparam name="TDep2"></typeparam>
  1011. <typeparam name="TDep3"></typeparam>
  1012. </member>
  1013. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`4.#ctor(System.String,`1,`2,`3,System.Action{`0,`1,`2,`3})">
  1014. <summary>
  1015. Constructor.
  1016. </summary>
  1017. <param name="name">The name of the options.</param>
  1018. <param name="dependency">A dependency.</param>
  1019. <param name="dependency2">A second dependency.</param>
  1020. <param name="dependency3">A third dependency.</param>
  1021. <param name="action">The action to register.</param>
  1022. </member>
  1023. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Name">
  1024. <summary>
  1025. The options name.
  1026. </summary>
  1027. </member>
  1028. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Action">
  1029. <summary>
  1030. The configuration action.
  1031. </summary>
  1032. </member>
  1033. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1">
  1034. <summary>
  1035. The first dependency.
  1036. </summary>
  1037. </member>
  1038. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2">
  1039. <summary>
  1040. The second dependency.
  1041. </summary>
  1042. </member>
  1043. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3">
  1044. <summary>
  1045. The third dependency.
  1046. </summary>
  1047. </member>
  1048. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(System.String,`0)">
  1049. <summary>
  1050. Invoked to configure a TOptions instance.
  1051. </summary>
  1052. <param name="name">The name of the options instance being configured.</param>
  1053. <param name="options">The options instance to configured.</param>
  1054. </member>
  1055. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(`0)">
  1056. <summary>
  1057. Invoked to configure a TOptions instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1058. </summary>
  1059. <param name="options">The options instance to configured.</param>
  1060. </member>
  1061. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`5">
  1062. <summary>
  1063. Implementation of IPostConfigureOptions.
  1064. </summary>
  1065. <typeparam name="TOptions"></typeparam>
  1066. <typeparam name="TDep1"></typeparam>
  1067. <typeparam name="TDep2"></typeparam>
  1068. <typeparam name="TDep3"></typeparam>
  1069. <typeparam name="TDep4"></typeparam>
  1070. </member>
  1071. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Action{`0,`1,`2,`3,`4})">
  1072. <summary>
  1073. Constructor.
  1074. </summary>
  1075. <param name="name">The name of the options.</param>
  1076. <param name="dependency1">A dependency.</param>
  1077. <param name="dependency2">A second dependency.</param>
  1078. <param name="dependency3">A third dependency.</param>
  1079. <param name="dependency4">A fourth dependency.</param>
  1080. <param name="action">The action to register.</param>
  1081. </member>
  1082. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Name">
  1083. <summary>
  1084. The options name.
  1085. </summary>
  1086. </member>
  1087. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Action">
  1088. <summary>
  1089. The configuration action.
  1090. </summary>
  1091. </member>
  1092. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1">
  1093. <summary>
  1094. The first dependency.
  1095. </summary>
  1096. </member>
  1097. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2">
  1098. <summary>
  1099. The second dependency.
  1100. </summary>
  1101. </member>
  1102. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3">
  1103. <summary>
  1104. The third dependency.
  1105. </summary>
  1106. </member>
  1107. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4">
  1108. <summary>
  1109. The fourth dependency.
  1110. </summary>
  1111. </member>
  1112. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(System.String,`0)">
  1113. <summary>
  1114. Invoked to configure a TOptions instance.
  1115. </summary>
  1116. <param name="name">The name of the options instance being configured.</param>
  1117. <param name="options">The options instance to configured.</param>
  1118. </member>
  1119. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(`0)">
  1120. <summary>
  1121. Invoked to configure a TOptions instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1122. </summary>
  1123. <param name="options">The options instance to configured.</param>
  1124. </member>
  1125. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`6">
  1126. <summary>
  1127. Implementation of IPostConfigureOptions.
  1128. </summary>
  1129. <typeparam name="TOptions"></typeparam>
  1130. <typeparam name="TDep1"></typeparam>
  1131. <typeparam name="TDep2"></typeparam>
  1132. <typeparam name="TDep3"></typeparam>
  1133. <typeparam name="TDep4"></typeparam>
  1134. <typeparam name="TDep5"></typeparam>
  1135. </member>
  1136. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Action{`0,`1,`2,`3,`4,`5})">
  1137. <summary>
  1138. Constructor.
  1139. </summary>
  1140. <param name="name">The name of the options.</param>
  1141. <param name="dependency1">A dependency.</param>
  1142. <param name="dependency2">A second dependency.</param>
  1143. <param name="dependency3">A third dependency.</param>
  1144. <param name="dependency4">A fourth dependency.</param>
  1145. <param name="dependency5">A fifth dependency.</param>
  1146. <param name="action">The action to register.</param>
  1147. </member>
  1148. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Name">
  1149. <summary>
  1150. The options name.
  1151. </summary>
  1152. </member>
  1153. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Action">
  1154. <summary>
  1155. The configuration action.
  1156. </summary>
  1157. </member>
  1158. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1">
  1159. <summary>
  1160. The first dependency.
  1161. </summary>
  1162. </member>
  1163. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2">
  1164. <summary>
  1165. The second dependency.
  1166. </summary>
  1167. </member>
  1168. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3">
  1169. <summary>
  1170. The third dependency.
  1171. </summary>
  1172. </member>
  1173. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4">
  1174. <summary>
  1175. The fourth dependency.
  1176. </summary>
  1177. </member>
  1178. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5">
  1179. <summary>
  1180. The fifth dependency.
  1181. </summary>
  1182. </member>
  1183. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(System.String,`0)">
  1184. <summary>
  1185. Invoked to configure a TOptions instance.
  1186. </summary>
  1187. <param name="name">The name of the options instance being configured.</param>
  1188. <param name="options">The options instance to configured.</param>
  1189. </member>
  1190. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(`0)">
  1191. <summary>
  1192. Invoked to configure a TOptions instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1193. </summary>
  1194. <param name="options">The options instance to configured.</param>
  1195. </member>
  1196. <member name="P:Microsoft.Extensions.Options.Resources.Error_CannotActivateAbstractOrInterface">
  1197. <summary>
  1198. Cannot create instance of type '{0}' because it is either abstract or an interface.
  1199. </summary>
  1200. </member>
  1201. <member name="M:Microsoft.Extensions.Options.Resources.FormatError_CannotActivateAbstractOrInterface(System.Object)">
  1202. <summary>
  1203. Cannot create instance of type '{0}' because it is either abstract or an interface.
  1204. </summary>
  1205. </member>
  1206. <member name="P:Microsoft.Extensions.Options.Resources.Error_FailedBinding">
  1207. <summary>
  1208. Failed to convert '{0}' to type '{1}'.
  1209. </summary>
  1210. </member>
  1211. <member name="M:Microsoft.Extensions.Options.Resources.FormatError_FailedBinding(System.Object,System.Object)">
  1212. <summary>
  1213. Failed to convert '{0}' to type '{1}'.
  1214. </summary>
  1215. </member>
  1216. <member name="P:Microsoft.Extensions.Options.Resources.Error_FailedToActivate">
  1217. <summary>
  1218. Failed to create instance of type '{0}'.
  1219. </summary>
  1220. </member>
  1221. <member name="M:Microsoft.Extensions.Options.Resources.FormatError_FailedToActivate(System.Object)">
  1222. <summary>
  1223. Failed to create instance of type '{0}'.
  1224. </summary>
  1225. </member>
  1226. <member name="P:Microsoft.Extensions.Options.Resources.Error_MissingParameterlessConstructor">
  1227. <summary>
  1228. Cannot create instance of type '{0}' because it is missing a public parameterless constructor.
  1229. </summary>
  1230. </member>
  1231. <member name="M:Microsoft.Extensions.Options.Resources.FormatError_MissingParameterlessConstructor(System.Object)">
  1232. <summary>
  1233. Cannot create instance of type '{0}' because it is missing a public parameterless constructor.
  1234. </summary>
  1235. </member>
  1236. <member name="P:Microsoft.Extensions.Options.Resources.Error_NoIConfigureOptions">
  1237. <summary>
  1238. No IConfigureOptions&lt;&gt; or IPostConfigureOptions&lt;&gt; implementations were found.
  1239. </summary>
  1240. </member>
  1241. <member name="M:Microsoft.Extensions.Options.Resources.FormatError_NoIConfigureOptions">
  1242. <summary>
  1243. No IConfigureOptions&lt;&gt; or IPostConfigureOptions&lt;&gt; implementations were found.
  1244. </summary>
  1245. </member>
  1246. <member name="P:Microsoft.Extensions.Options.Resources.Error_NoIConfigureOptionsAndAction">
  1247. <summary>
  1248. No IConfigureOptions&lt;&gt; or IPostConfigureOptions&lt;&gt; implementations were found, did you mean to call Configure&lt;&gt; or PostConfigure&lt;&gt;?
  1249. </summary>
  1250. </member>
  1251. <member name="M:Microsoft.Extensions.Options.Resources.FormatError_NoIConfigureOptionsAndAction">
  1252. <summary>
  1253. No IConfigureOptions&lt;&gt; or IPostConfigureOptions&lt;&gt; implementations were found, did you mean to call Configure&lt;&gt; or PostConfigure&lt;&gt;?
  1254. </summary>
  1255. </member>
  1256. <member name="T:Microsoft.Extensions.Options.ValidateOptions`1">
  1257. <summary>
  1258. Implementation of <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1259. </summary>
  1260. <typeparam name="TOptions">The instance being validated.</typeparam>
  1261. </member>
  1262. <member name="M:Microsoft.Extensions.Options.ValidateOptions`1.#ctor(System.String,System.Func{`0,System.Boolean},System.String)">
  1263. <summary>
  1264. Constructor.
  1265. </summary>
  1266. <param name="name"></param>
  1267. <param name="validation"></param>
  1268. <param name="failureMessage"></param>
  1269. </member>
  1270. <member name="P:Microsoft.Extensions.Options.ValidateOptions`1.Name">
  1271. <summary>
  1272. The options name.
  1273. </summary>
  1274. </member>
  1275. <member name="P:Microsoft.Extensions.Options.ValidateOptions`1.Validation">
  1276. <summary>
  1277. The validation action.
  1278. </summary>
  1279. </member>
  1280. <member name="P:Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage">
  1281. <summary>
  1282. The error to return when validation fails.
  1283. </summary>
  1284. </member>
  1285. <member name="M:Microsoft.Extensions.Options.ValidateOptions`1.Validate(System.String,`0)">
  1286. <summary>
  1287. Validates a specific named options instance (or all when name is null).
  1288. </summary>
  1289. <param name="name">The name of the options instance being validated.</param>
  1290. <param name="options">The options instance.</param>
  1291. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  1292. </member>
  1293. <member name="T:Microsoft.Extensions.Options.ValidateOptionsResult">
  1294. <summary>
  1295. Represents the result of an options validation.
  1296. </summary>
  1297. </member>
  1298. <member name="F:Microsoft.Extensions.Options.ValidateOptionsResult.Skip">
  1299. <summary>
  1300. Result when validation was skipped due to name not matching.
  1301. </summary>
  1302. </member>
  1303. <member name="F:Microsoft.Extensions.Options.ValidateOptionsResult.Success">
  1304. <summary>
  1305. Validation was successful.
  1306. </summary>
  1307. </member>
  1308. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.Succeeded">
  1309. <summary>
  1310. True if validation was successful.
  1311. </summary>
  1312. </member>
  1313. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.Skipped">
  1314. <summary>
  1315. True if validation was not run.
  1316. </summary>
  1317. </member>
  1318. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.Failed">
  1319. <summary>
  1320. True if validation failed.
  1321. </summary>
  1322. </member>
  1323. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage">
  1324. <summary>
  1325. Used to describe why validation failed.
  1326. </summary>
  1327. </member>
  1328. <member name="M:Microsoft.Extensions.Options.ValidateOptionsResult.Fail(System.String)">
  1329. <summary>
  1330. Returns a failure result.
  1331. </summary>
  1332. <param name="failureMessage">The reason for the failure.</param>
  1333. <returns>The failure result.</returns>
  1334. </member>
  1335. <member name="T:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions">
  1336. <summary>
  1337. Extension methods for adding options services to the DI container.
  1338. </summary>
  1339. </member>
  1340. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  1341. <summary>
  1342. Adds services required for using options.
  1343. </summary>
  1344. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1345. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1346. </member>
  1347. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1348. <summary>
  1349. Registers an action used to configure a particular type of options.
  1350. Note: These are run before all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1351. </summary>
  1352. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1353. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1354. <param name="configureOptions">The action used to configure the options.</param>
  1355. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1356. </member>
  1357. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})">
  1358. <summary>
  1359. Registers an action used to configure a particular type of options.
  1360. Note: These are run before all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1361. </summary>
  1362. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1363. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1364. <param name="name">The name of the options instance.</param>
  1365. <param name="configureOptions">The action used to configure the options.</param>
  1366. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1367. </member>
  1368. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1369. <summary>
  1370. Registers an action used to configure all instances of a particular type of options.
  1371. </summary>
  1372. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1373. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1374. <param name="configureOptions">The action used to configure the options.</param>
  1375. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1376. </member>
  1377. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1378. <summary>
  1379. Registers an action used to initialize a particular type of options.
  1380. Note: These are run after all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1381. </summary>
  1382. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1383. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1384. <param name="configureOptions">The action used to configure the options.</param>
  1385. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1386. </member>
  1387. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})">
  1388. <summary>
  1389. Registers an action used to configure a particular type of options.
  1390. Note: These are run after all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1391. </summary>
  1392. <typeparam name="TOptions">The options type to be configure.</typeparam>
  1393. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1394. <param name="name">The name of the options instance.</param>
  1395. <param name="configureOptions">The action used to configure the options.</param>
  1396. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1397. </member>
  1398. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1399. <summary>
  1400. Registers an action used to post configure all instances of a particular type of options.
  1401. Note: These are run after all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1402. </summary>
  1403. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1404. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1405. <param name="configureOptions">The action used to configure the options.</param>
  1406. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1407. </member>
  1408. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  1409. <summary>
  1410. Registers a type that will have all of its I[Post]ConfigureOptions registered.
  1411. </summary>
  1412. <typeparam name="TConfigureOptions">The type that will configure options.</typeparam>
  1413. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1414. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1415. </member>
  1416. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)">
  1417. <summary>
  1418. Registers a type that will have all of its I[Post]ConfigureOptions registered.
  1419. </summary>
  1420. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1421. <param name="configureType">The type that will configure options.</param>
  1422. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1423. </member>
  1424. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)">
  1425. <summary>
  1426. Registers an object that will have all of its I[Post]ConfigureOptions registered.
  1427. </summary>
  1428. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1429. <param name="configureInstance">The instance that will configure options.</param>
  1430. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1431. </member>
  1432. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  1433. <summary>
  1434. Gets an options builder that forwards Configure calls for the same <typeparamref name="TOptions"/> to the underlying service collection.
  1435. </summary>
  1436. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1437. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1438. <returns>The <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/> so that configure calls can be chained in it.</returns>
  1439. </member>
  1440. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)">
  1441. <summary>
  1442. Gets an options builder that forwards Configure calls for the same named <typeparamref name="TOptions"/> to the underlying service collection.
  1443. </summary>
  1444. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1445. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1446. <param name="name">The name of the options instance.</param>
  1447. <returns>The <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/> so that configure calls can be chained in it.</returns>
  1448. </member>
  1449. </members>
  1450. </doc>