Microsoft.Extensions.Options.xml 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  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 <see cref="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1"/>.
  10. </summary>
  11. <typeparam name="TOptions">Options type being configured.</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 <see cref="P:Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action"/> if the <paramref name="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 <typeparamref name="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 <see cref="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1"/>.
  46. </summary>
  47. <typeparam name="TOptions">Options type being configured.</typeparam>
  48. <typeparam name="TDep">Dependency type.</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 <see cref="P:Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action"/> if the <paramref name="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 <typeparamref name="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 <see cref="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1"/>.
  89. </summary>
  90. <typeparam name="TOptions">Options type being configured.</typeparam>
  91. <typeparam name="TDep1">First dependency type.</typeparam>
  92. <typeparam name="TDep2">Second dependency type.</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 <see cref="P:Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action"/> if the <paramref name="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 <typeparamref name="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 <see cref="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1"/>.
  139. </summary>
  140. <typeparam name="TOptions">Options type being configured.</typeparam>
  141. <typeparam name="TDep1">First dependency type.</typeparam>
  142. <typeparam name="TDep2">Second dependency type.</typeparam>
  143. <typeparam name="TDep3">Third dependency type.</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 <see cref="P:Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action"/> if the <paramref name="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 <typeparamref name="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 <see cref="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1"/>.
  196. </summary>
  197. <typeparam name="TOptions">Options type being configured.</typeparam>
  198. <typeparam name="TDep1">First dependency type.</typeparam>
  199. <typeparam name="TDep2">Second dependency type.</typeparam>
  200. <typeparam name="TDep3">Third dependency type.</typeparam>
  201. <typeparam name="TDep4">Fourth dependency type.</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 <see cref="P:Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action"/> if the <paramref name="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 <typeparamref name="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 <see cref="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1"/>.
  260. </summary>
  261. <typeparam name="TOptions">Options type being configured.</typeparam>
  262. <typeparam name="TDep1">First dependency type.</typeparam>
  263. <typeparam name="TDep2">Second dependency type.</typeparam>
  264. <typeparam name="TDep3">Third dependency type.</typeparam>
  265. <typeparam name="TDep4">Fourth dependency type.</typeparam>
  266. <typeparam name="TDep5">Fifth dependency type.</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 <see cref="P:Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action"/> if the <paramref name="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 <typeparamref name="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 <see cref="T:Microsoft.Extensions.Options.IConfigureOptions`1"/>.
  331. </summary>
  332. <typeparam name="TOptions">Options type being configured.</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 <see cref="P:Microsoft.Extensions.Options.ConfigureOptions`1.Action"/>.
  348. </summary>
  349. <param name="options">The options instance to configure.</param>
  350. </member>
  351. <member name="T:Microsoft.Extensions.Options.IConfigureNamedOptions`1">
  352. <summary>
  353. Represents something that configures the <typeparamref name="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 <typeparamref name="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 <typeparamref name="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 <typeparamref name="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 <typeparamref name="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 <typeparamref name="TOptions"/> instance
  386. </summary>
  387. </member>
  388. <member name="T:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1">
  389. <summary>
  390. Used to fetch <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> used for tracking options changes.
  391. </summary>
  392. <typeparam name="TOptions">Options type.</typeparam>
  393. </member>
  394. <member name="M:Microsoft.Extensions.Options.IOptionsChangeTokenSource`1.GetChangeToken">
  395. <summary>
  396. Returns a <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/> which can be used to register a change notification callback.
  397. </summary>
  398. <returns>Change token.</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 <typeparamref name="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 <typeparamref name="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 <typeparamref name="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 <typeparamref name="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 <typeparamref name="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 <typeparamref name="TOptions"/> changes.
  435. </summary>
  436. <param name="listener">The action to be invoked when <typeparamref name="TOptions"/> has changed.</param>
  437. <returns>An <see cref="T:System.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 <typeparamref name="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 <paramref name="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 <typeparamref name="TOptions"/> for the lifetime of a request.
  476. </summary>
  477. <typeparam name="TOptions">Options type.</typeparam>
  478. </member>
  479. <member name="M:Microsoft.Extensions.Options.IOptionsSnapshot`1.Get(System.String)">
  480. <summary>
  481. Returns a configured <typeparamref name="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 <typeparamref name="TOptions"/> type.
  487. Note: These are run after all <see cref="T:Microsoft.Extensions.Options.IConfigureOptions`1"/>.
  488. </summary>
  489. <typeparam name="TOptions">Options type being configured.</typeparam>
  490. </member>
  491. <member name="M:Microsoft.Extensions.Options.IPostConfigureOptions`1.PostConfigure(System.String,`0)">
  492. <summary>
  493. Invoked to configure a <typeparamref name="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 <typeparamref name="TOptions"/> to return itself as an <see cref="T:Microsoft.Extensions.Options.IOptions`1"/>.
  525. </summary>
  526. <typeparam name="TOptions">Options type.</typeparam>
  527. <param name="options">Options object.</param>
  528. <returns>Wrapped options object.</returns>
  529. </member>
  530. <member name="T:Microsoft.Extensions.Options.OptionsBuilder`1">
  531. <summary>
  532. Used to configure <typeparamref name="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 <typeparamref name="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 <typeparamref name="TOptions"/> instance, if null <see cref="F:Microsoft.Extensions.Options.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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 after all <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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 after all <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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 after all <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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 after all <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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 after all <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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</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 <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  692. </member>
  693. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``1(System.Func{`0,``0,System.Boolean})">
  694. <summary>
  695. Register a validation action for an options type using a default failure message.
  696. </summary>
  697. <typeparam name="TDep">The dependency used by the validation function.</typeparam>
  698. <param name="validation">The validation function.</param>
  699. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  700. </member>
  701. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``1(System.Func{`0,``0,System.Boolean},System.String)">
  702. <summary>
  703. Register a validation action for an options type.
  704. </summary>
  705. <typeparam name="TDep">The dependency used by the validation function.</typeparam>
  706. <param name="validation">The validation function.</param>
  707. <param name="failureMessage">The failure message to use when validation fails.</param>
  708. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  709. </member>
  710. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``2(System.Func{`0,``0,``1,System.Boolean})">
  711. <summary>
  712. Register a validation action for an options type using a default failure message.
  713. </summary>
  714. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  715. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  716. <param name="validation">The validation function.</param>
  717. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  718. </member>
  719. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``2(System.Func{`0,``0,``1,System.Boolean},System.String)">
  720. <summary>
  721. Register a validation action for an options type.
  722. </summary>
  723. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  724. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  725. <param name="validation">The validation function.</param>
  726. <param name="failureMessage">The failure message to use when validation fails.</param>
  727. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  728. </member>
  729. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``3(System.Func{`0,``0,``1,``2,System.Boolean})">
  730. <summary>
  731. Register a validation action for an options type using a default failure message.
  732. </summary>
  733. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  734. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  735. <typeparam name="TDep3">The third dependency used by the validation function.</typeparam>
  736. <param name="validation">The validation function.</param>
  737. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  738. </member>
  739. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``3(System.Func{`0,``0,``1,``2,System.Boolean},System.String)">
  740. <summary>
  741. Register a validation action for an options type.
  742. </summary>
  743. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  744. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  745. <typeparam name="TDep3">The third dependency used by the validation function.</typeparam>
  746. <param name="validation">The validation function.</param>
  747. <param name="failureMessage">The failure message to use when validation fails.</param>
  748. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  749. </member>
  750. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``4(System.Func{`0,``0,``1,``2,``3,System.Boolean})">
  751. <summary>
  752. Register a validation action for an options type using a default failure message.
  753. </summary>
  754. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  755. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  756. <typeparam name="TDep3">The third dependency used by the validation function.</typeparam>
  757. <typeparam name="TDep4">The fourth dependency used by the validation function.</typeparam>
  758. <param name="validation">The validation function.</param>
  759. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  760. </member>
  761. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``4(System.Func{`0,``0,``1,``2,``3,System.Boolean},System.String)">
  762. <summary>
  763. Register a validation action for an options type.
  764. </summary>
  765. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  766. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  767. <typeparam name="TDep3">The third dependency used by the validation function.</typeparam>
  768. <typeparam name="TDep4">The fourth dependency used by the validation function.</typeparam>
  769. <param name="validation">The validation function.</param>
  770. <param name="failureMessage">The failure message to use when validation fails.</param>
  771. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  772. </member>
  773. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``5(System.Func{`0,``0,``1,``2,``3,``4,System.Boolean})">
  774. <summary>
  775. Register a validation action for an options type using a default failure message.
  776. </summary>
  777. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  778. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  779. <typeparam name="TDep3">The third dependency used by the validation function.</typeparam>
  780. <typeparam name="TDep4">The fourth dependency used by the validation function.</typeparam>
  781. <typeparam name="TDep5">The fifth dependency used by the validation function.</typeparam>
  782. <param name="validation">The validation function.</param>
  783. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  784. </member>
  785. <member name="M:Microsoft.Extensions.Options.OptionsBuilder`1.Validate``5(System.Func{`0,``0,``1,``2,``3,``4,System.Boolean},System.String)">
  786. <summary>
  787. Register a validation action for an options type.
  788. </summary>
  789. <typeparam name="TDep1">The first dependency used by the validation function.</typeparam>
  790. <typeparam name="TDep2">The second dependency used by the validation function.</typeparam>
  791. <typeparam name="TDep3">The third dependency used by the validation function.</typeparam>
  792. <typeparam name="TDep4">The fourth dependency used by the validation function.</typeparam>
  793. <typeparam name="TDep5">The fifth dependency used by the validation function.</typeparam>
  794. <param name="validation">The validation function.</param>
  795. <param name="failureMessage">The failure message to use when validation fails.</param>
  796. <returns>The current <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.</returns>
  797. </member>
  798. <member name="T:Microsoft.Extensions.Options.OptionsCache`1">
  799. <summary>
  800. Used to cache <typeparamref name="TOptions"/> instances.
  801. </summary>
  802. <typeparam name="TOptions">The type of options being requested.</typeparam>
  803. </member>
  804. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.Clear">
  805. <summary>
  806. Clears all options instances from the cache.
  807. </summary>
  808. </member>
  809. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.GetOrAdd(System.String,System.Func{`0})">
  810. <summary>
  811. Gets a named options instance, or adds a new instance created with <paramref name="createOptions"/>.
  812. </summary>
  813. <param name="name">The name of the options instance.</param>
  814. <param name="createOptions">The func used to create the new instance.</param>
  815. <returns>The options instance.</returns>
  816. </member>
  817. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.TryGetValue(System.String,`0@)">
  818. <summary>
  819. Gets a named options instance, if available.
  820. </summary>
  821. <param name="name">The name of the options instance.</param>
  822. <param name="options">The options instance.</param>
  823. <returns>true if the options were retrieved; otherwise, false.</returns>
  824. </member>
  825. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.TryAdd(System.String,`0)">
  826. <summary>
  827. Tries to adds a new option to the cache, will return false if the name already exists.
  828. </summary>
  829. <param name="name">The name of the options instance.</param>
  830. <param name="options">The options instance.</param>
  831. <returns>Whether anything was added.</returns>
  832. </member>
  833. <member name="M:Microsoft.Extensions.Options.OptionsCache`1.TryRemove(System.String)">
  834. <summary>
  835. Try to remove an options instance.
  836. </summary>
  837. <param name="name">The name of the options instance.</param>
  838. <returns>Whether anything was removed.</returns>
  839. </member>
  840. <member name="T:Microsoft.Extensions.Options.OptionsFactory`1">
  841. <summary>
  842. Implementation of <see cref="T:Microsoft.Extensions.Options.IOptionsFactory`1"/>.
  843. </summary>
  844. <typeparam name="TOptions">The type of options being requested.</typeparam>
  845. </member>
  846. <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}})">
  847. <summary>
  848. Initializes a new instance with the specified options configurations.
  849. </summary>
  850. <param name="setups">The configuration actions to run.</param>
  851. <param name="postConfigures">The initialization actions to run.</param>
  852. </member>
  853. <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}})">
  854. <summary>
  855. Initializes a new instance with the specified options configurations.
  856. </summary>
  857. <param name="setups">The configuration actions to run.</param>
  858. <param name="postConfigures">The initialization actions to run.</param>
  859. <param name="validations">The validations to run.</param>
  860. </member>
  861. <member name="M:Microsoft.Extensions.Options.OptionsFactory`1.Create(System.String)">
  862. <summary>
  863. Returns a configured <typeparamref name="TOptions"/> instance with the given <paramref name="name"/>.
  864. </summary>
  865. </member>
  866. <member name="M:Microsoft.Extensions.Options.OptionsFactory`1.CreateInstance(System.String)">
  867. <summary>
  868. Creates a new instance of options type
  869. </summary>
  870. </member>
  871. <member name="T:Microsoft.Extensions.Options.OptionsManager`1">
  872. <summary>
  873. Implementation of <see cref="T:Microsoft.Extensions.Options.IOptions`1"/> and <see cref="T:Microsoft.Extensions.Options.IOptionsSnapshot`1"/>.
  874. </summary>
  875. <typeparam name="TOptions">Options type.</typeparam>
  876. </member>
  877. <member name="M:Microsoft.Extensions.Options.OptionsManager`1.#ctor(Microsoft.Extensions.Options.IOptionsFactory{`0})">
  878. <summary>
  879. Initializes a new instance with the specified options configurations.
  880. </summary>
  881. <param name="factory">The factory to use to create options.</param>
  882. </member>
  883. <member name="P:Microsoft.Extensions.Options.OptionsManager`1.Value">
  884. <summary>
  885. The default configured <typeparamref name="TOptions"/> instance, equivalent to Get(Options.DefaultName).
  886. </summary>
  887. </member>
  888. <member name="M:Microsoft.Extensions.Options.OptionsManager`1.Get(System.String)">
  889. <summary>
  890. Returns a configured <typeparamref name="TOptions"/> instance with the given <paramref name="name"/>.
  891. </summary>
  892. </member>
  893. <member name="T:Microsoft.Extensions.Options.OptionsMonitor`1">
  894. <summary>
  895. Implementation of <see cref="T:Microsoft.Extensions.Options.IOptionsMonitor`1"/>.
  896. </summary>
  897. <typeparam name="TOptions">Options type.</typeparam>
  898. </member>
  899. <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})">
  900. <summary>
  901. Constructor.
  902. </summary>
  903. <param name="factory">The factory to use to create options.</param>
  904. <param name="sources">The sources used to listen for changes to the options instance.</param>
  905. <param name="cache">The cache used to store options.</param>
  906. </member>
  907. <member name="P:Microsoft.Extensions.Options.OptionsMonitor`1.CurrentValue">
  908. <summary>
  909. The present value of the options.
  910. </summary>
  911. </member>
  912. <member name="M:Microsoft.Extensions.Options.OptionsMonitor`1.Get(System.String)">
  913. <summary>
  914. Returns a configured <typeparamref name="TOptions"/> instance with the given <paramref name="name"/>.
  915. </summary>
  916. </member>
  917. <member name="M:Microsoft.Extensions.Options.OptionsMonitor`1.OnChange(System.Action{`0,System.String})">
  918. <summary>
  919. Registers a listener to be called whenever <typeparamref name="TOptions"/> changes.
  920. </summary>
  921. <param name="listener">The action to be invoked when <typeparamref name="TOptions"/> has changed.</param>
  922. <returns>An <see cref="T:System.IDisposable"/> which should be disposed to stop listening for changes.</returns>
  923. </member>
  924. <member name="M:Microsoft.Extensions.Options.OptionsMonitor`1.Dispose">
  925. <summary>
  926. Removes all change registration subscriptions.
  927. </summary>
  928. </member>
  929. <member name="T:Microsoft.Extensions.Options.OptionsMonitorExtensions">
  930. <summary>
  931. Extension methods for <see cref="T:Microsoft.Extensions.Options.IOptionsMonitor`1"/>.
  932. </summary>
  933. </member>
  934. <member name="M:Microsoft.Extensions.Options.OptionsMonitorExtensions.OnChange``1(Microsoft.Extensions.Options.IOptionsMonitor{``0},System.Action{``0})">
  935. <summary>
  936. Registers a listener to be called whenever <typeparamref name="TOptions"/> changes.
  937. </summary>
  938. <param name="monitor">The IOptionsMonitor.</param>
  939. <param name="listener">The action to be invoked when <typeparamref name="TOptions"/> has changed.</param>
  940. <returns>An <see cref="T:System.IDisposable"/> which should be disposed to stop listening for changes.</returns>
  941. </member>
  942. <member name="T:Microsoft.Extensions.Options.OptionsValidationException">
  943. <summary>
  944. Thrown when options validation fails.
  945. </summary>
  946. </member>
  947. <member name="M:Microsoft.Extensions.Options.OptionsValidationException.#ctor(System.String,System.Type,System.Collections.Generic.IEnumerable{System.String})">
  948. <summary>
  949. Constructor.
  950. </summary>
  951. <param name="optionsName">The name of the options instance that failed.</param>
  952. <param name="optionsType">The options type that failed.</param>
  953. <param name="failureMessages">The validation failure messages.</param>
  954. </member>
  955. <member name="P:Microsoft.Extensions.Options.OptionsValidationException.OptionsName">
  956. <summary>
  957. The name of the options instance that failed.
  958. </summary>
  959. </member>
  960. <member name="P:Microsoft.Extensions.Options.OptionsValidationException.OptionsType">
  961. <summary>
  962. The type of the options that failed.
  963. </summary>
  964. </member>
  965. <member name="P:Microsoft.Extensions.Options.OptionsValidationException.Failures">
  966. <summary>
  967. The validation failures.
  968. </summary>
  969. </member>
  970. <member name="P:Microsoft.Extensions.Options.OptionsValidationException.Message">
  971. <summary>
  972. The message is a semicolon separated list of the <see cref="P:Microsoft.Extensions.Options.OptionsValidationException.Failures"/>.
  973. </summary>
  974. </member>
  975. <member name="T:Microsoft.Extensions.Options.OptionsWrapper`1">
  976. <summary>
  977. <see cref="T:Microsoft.Extensions.Options.IOptions`1"/> wrapper that returns the options instance.
  978. </summary>
  979. <typeparam name="TOptions">Options type.</typeparam>
  980. </member>
  981. <member name="M:Microsoft.Extensions.Options.OptionsWrapper`1.#ctor(`0)">
  982. <summary>
  983. Initializes the wrapper with the options instance to return.
  984. </summary>
  985. <param name="options">The options instance to return.</param>
  986. </member>
  987. <member name="P:Microsoft.Extensions.Options.OptionsWrapper`1.Value">
  988. <summary>
  989. The options instance.
  990. </summary>
  991. </member>
  992. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`1">
  993. <summary>
  994. Implementation of <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  995. </summary>
  996. <typeparam name="TOptions">Options type being configured.</typeparam>
  997. </member>
  998. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`1.#ctor(System.String,System.Action{`0})">
  999. <summary>
  1000. Creates a new instance of <see cref="T:Microsoft.Extensions.Options.PostConfigureOptions`1"/>.
  1001. </summary>
  1002. <param name="name">The name of the options.</param>
  1003. <param name="action">The action to register.</param>
  1004. </member>
  1005. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`1.Name">
  1006. <summary>
  1007. The options name.
  1008. </summary>
  1009. </member>
  1010. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`1.Action">
  1011. <summary>
  1012. The initialization action.
  1013. </summary>
  1014. </member>
  1015. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`1.PostConfigure(System.String,`0)">
  1016. <summary>
  1017. Invokes the registered initialization <see cref="P:Microsoft.Extensions.Options.PostConfigureOptions`1.Action"/> if the <paramref name="name"/> matches.
  1018. </summary>
  1019. <param name="name">The name of the action to invoke.</param>
  1020. <param name="options">The options to use in initialization.</param>
  1021. </member>
  1022. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`2">
  1023. <summary>
  1024. Implementation of <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  1025. </summary>
  1026. <typeparam name="TOptions">Options type being configured.</typeparam>
  1027. <typeparam name="TDep">Dependency type.</typeparam>
  1028. </member>
  1029. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`2.#ctor(System.String,`1,System.Action{`0,`1})">
  1030. <summary>
  1031. Constructor.
  1032. </summary>
  1033. <param name="name">The name of the options.</param>
  1034. <param name="dependency">A dependency.</param>
  1035. <param name="action">The action to register.</param>
  1036. </member>
  1037. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`2.Name">
  1038. <summary>
  1039. The options name.
  1040. </summary>
  1041. </member>
  1042. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`2.Action">
  1043. <summary>
  1044. The configuration action.
  1045. </summary>
  1046. </member>
  1047. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency">
  1048. <summary>
  1049. The dependency.
  1050. </summary>
  1051. </member>
  1052. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(System.String,`0)">
  1053. <summary>
  1054. Invokes the registered initialization <see cref="P:Microsoft.Extensions.Options.PostConfigureOptions`2.Action"/> if the <paramref name="name"/> matches.
  1055. </summary>
  1056. <param name="name">The name of the options instance being configured.</param>
  1057. <param name="options">The options instance to configured.</param>
  1058. </member>
  1059. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`2.PostConfigure(`0)">
  1060. <summary>
  1061. Invoked to configure a <typeparamref name="TOptions"/> instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1062. </summary>
  1063. <param name="options">The options instance to configured.</param>
  1064. </member>
  1065. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`3">
  1066. <summary>
  1067. Implementation of <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  1068. </summary>
  1069. <typeparam name="TOptions">Options type being configured.</typeparam>
  1070. <typeparam name="TDep1">First dependency type.</typeparam>
  1071. <typeparam name="TDep2">Second dependency type.</typeparam>
  1072. </member>
  1073. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`3.#ctor(System.String,`1,`2,System.Action{`0,`1,`2})">
  1074. <summary>
  1075. Constructor.
  1076. </summary>
  1077. <param name="name">The name of the options.</param>
  1078. <param name="dependency">A dependency.</param>
  1079. <param name="dependency2">A second dependency.</param>
  1080. <param name="action">The action to register.</param>
  1081. </member>
  1082. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Name">
  1083. <summary>
  1084. The options name.
  1085. </summary>
  1086. </member>
  1087. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Action">
  1088. <summary>
  1089. The configuration action.
  1090. </summary>
  1091. </member>
  1092. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1">
  1093. <summary>
  1094. The first dependency.
  1095. </summary>
  1096. </member>
  1097. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2">
  1098. <summary>
  1099. The second dependency.
  1100. </summary>
  1101. </member>
  1102. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(System.String,`0)">
  1103. <summary>
  1104. Invokes the registered initialization <see cref="P:Microsoft.Extensions.Options.PostConfigureOptions`3.Action"/> if the <paramref name="name"/> matches.
  1105. </summary>
  1106. <param name="name">The name of the options instance being configured.</param>
  1107. <param name="options">The options instance to configured.</param>
  1108. </member>
  1109. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`3.PostConfigure(`0)">
  1110. <summary>
  1111. Invoked to configure a <typeparamref name="TOptions"/> instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1112. </summary>
  1113. <param name="options">The options instance to configured.</param>
  1114. </member>
  1115. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`4">
  1116. <summary>
  1117. Implementation of <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  1118. </summary>
  1119. <typeparam name="TOptions">Options type being configured.</typeparam>
  1120. <typeparam name="TDep1">First dependency type.</typeparam>
  1121. <typeparam name="TDep2">Second dependency type.</typeparam>
  1122. <typeparam name="TDep3">Third dependency type.</typeparam>
  1123. </member>
  1124. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`4.#ctor(System.String,`1,`2,`3,System.Action{`0,`1,`2,`3})">
  1125. <summary>
  1126. Constructor.
  1127. </summary>
  1128. <param name="name">The name of the options.</param>
  1129. <param name="dependency">A dependency.</param>
  1130. <param name="dependency2">A second dependency.</param>
  1131. <param name="dependency3">A third dependency.</param>
  1132. <param name="action">The action to register.</param>
  1133. </member>
  1134. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Name">
  1135. <summary>
  1136. The options name.
  1137. </summary>
  1138. </member>
  1139. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Action">
  1140. <summary>
  1141. The configuration action.
  1142. </summary>
  1143. </member>
  1144. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1">
  1145. <summary>
  1146. The first dependency.
  1147. </summary>
  1148. </member>
  1149. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2">
  1150. <summary>
  1151. The second dependency.
  1152. </summary>
  1153. </member>
  1154. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3">
  1155. <summary>
  1156. The third dependency.
  1157. </summary>
  1158. </member>
  1159. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(System.String,`0)">
  1160. <summary>
  1161. Invokes the registered initialization <see cref="P:Microsoft.Extensions.Options.PostConfigureOptions`4.Action"/> if the <paramref name="name"/> matches.
  1162. </summary>
  1163. <param name="name">The name of the options instance being configured.</param>
  1164. <param name="options">The options instance to configured.</param>
  1165. </member>
  1166. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`4.PostConfigure(`0)">
  1167. <summary>
  1168. Invoked to configure a <typeparamref name="TOptions"/> instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1169. </summary>
  1170. <param name="options">The options instance to configured.</param>
  1171. </member>
  1172. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`5">
  1173. <summary>
  1174. Implementation of <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  1175. </summary>
  1176. <typeparam name="TOptions">Options type being configured.</typeparam>
  1177. <typeparam name="TDep1">First dependency type.</typeparam>
  1178. <typeparam name="TDep2">Second dependency type.</typeparam>
  1179. <typeparam name="TDep3">Third dependency type.</typeparam>
  1180. <typeparam name="TDep4">Fourth dependency type.</typeparam>
  1181. </member>
  1182. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Action{`0,`1,`2,`3,`4})">
  1183. <summary>
  1184. Constructor.
  1185. </summary>
  1186. <param name="name">The name of the options.</param>
  1187. <param name="dependency1">A dependency.</param>
  1188. <param name="dependency2">A second dependency.</param>
  1189. <param name="dependency3">A third dependency.</param>
  1190. <param name="dependency4">A fourth dependency.</param>
  1191. <param name="action">The action to register.</param>
  1192. </member>
  1193. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Name">
  1194. <summary>
  1195. The options name.
  1196. </summary>
  1197. </member>
  1198. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Action">
  1199. <summary>
  1200. The configuration action.
  1201. </summary>
  1202. </member>
  1203. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1">
  1204. <summary>
  1205. The first dependency.
  1206. </summary>
  1207. </member>
  1208. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2">
  1209. <summary>
  1210. The second dependency.
  1211. </summary>
  1212. </member>
  1213. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3">
  1214. <summary>
  1215. The third dependency.
  1216. </summary>
  1217. </member>
  1218. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4">
  1219. <summary>
  1220. The fourth dependency.
  1221. </summary>
  1222. </member>
  1223. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(System.String,`0)">
  1224. <summary>
  1225. Invokes the registered initialization <see cref="P:Microsoft.Extensions.Options.PostConfigureOptions`5.Action"/> if the <paramref name="name"/> matches.
  1226. </summary>
  1227. <param name="name">The name of the options instance being configured.</param>
  1228. <param name="options">The options instance to configured.</param>
  1229. </member>
  1230. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`5.PostConfigure(`0)">
  1231. <summary>
  1232. Invoked to configure a <typeparamref name="TOptions"/> instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1233. </summary>
  1234. <param name="options">The options instance to configured.</param>
  1235. </member>
  1236. <member name="T:Microsoft.Extensions.Options.PostConfigureOptions`6">
  1237. <summary>
  1238. Implementation of <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>.
  1239. </summary>
  1240. <typeparam name="TOptions">Options type being configured.</typeparam>
  1241. <typeparam name="TDep1">First dependency type.</typeparam>
  1242. <typeparam name="TDep2">Second dependency type.</typeparam>
  1243. <typeparam name="TDep3">Third dependency type.</typeparam>
  1244. <typeparam name="TDep4">Fourth dependency type.</typeparam>
  1245. <typeparam name="TDep5">Fifth dependency type.</typeparam>
  1246. </member>
  1247. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Action{`0,`1,`2,`3,`4,`5})">
  1248. <summary>
  1249. Constructor.
  1250. </summary>
  1251. <param name="name">The name of the options.</param>
  1252. <param name="dependency1">A dependency.</param>
  1253. <param name="dependency2">A second dependency.</param>
  1254. <param name="dependency3">A third dependency.</param>
  1255. <param name="dependency4">A fourth dependency.</param>
  1256. <param name="dependency5">A fifth dependency.</param>
  1257. <param name="action">The action to register.</param>
  1258. </member>
  1259. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Name">
  1260. <summary>
  1261. The options name.
  1262. </summary>
  1263. </member>
  1264. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Action">
  1265. <summary>
  1266. The configuration action.
  1267. </summary>
  1268. </member>
  1269. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1">
  1270. <summary>
  1271. The first dependency.
  1272. </summary>
  1273. </member>
  1274. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2">
  1275. <summary>
  1276. The second dependency.
  1277. </summary>
  1278. </member>
  1279. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3">
  1280. <summary>
  1281. The third dependency.
  1282. </summary>
  1283. </member>
  1284. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4">
  1285. <summary>
  1286. The fourth dependency.
  1287. </summary>
  1288. </member>
  1289. <member name="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5">
  1290. <summary>
  1291. The fifth dependency.
  1292. </summary>
  1293. </member>
  1294. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(System.String,`0)">
  1295. <summary>
  1296. Invokes the registered initialization <see cref="P:Microsoft.Extensions.Options.PostConfigureOptions`6.Action"/> if the <paramref name="name"/> matches.
  1297. </summary>
  1298. <param name="name">The name of the options instance being configured.</param>
  1299. <param name="options">The options instance to configured.</param>
  1300. </member>
  1301. <member name="M:Microsoft.Extensions.Options.PostConfigureOptions`6.PostConfigure(`0)">
  1302. <summary>
  1303. Invoked to configure a <typeparamref name="TOptions"/> instance using the <see cref="F:Microsoft.Extensions.Options.Options.DefaultName"/>.
  1304. </summary>
  1305. <param name="options">The options instance to configured.</param>
  1306. </member>
  1307. <member name="T:Microsoft.Extensions.Options.ValidateOptions`1">
  1308. <summary>
  1309. Implementation of <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1310. </summary>
  1311. <typeparam name="TOptions">The options type to validate.</typeparam>
  1312. </member>
  1313. <member name="M:Microsoft.Extensions.Options.ValidateOptions`1.#ctor(System.String,System.Func{`0,System.Boolean},System.String)">
  1314. <summary>
  1315. Constructor.
  1316. </summary>
  1317. <param name="name">Options name.</param>
  1318. <param name="validation">Validation function.</param>
  1319. <param name="failureMessage">Validation failure message.</param>
  1320. </member>
  1321. <member name="P:Microsoft.Extensions.Options.ValidateOptions`1.Name">
  1322. <summary>
  1323. The options name.
  1324. </summary>
  1325. </member>
  1326. <member name="P:Microsoft.Extensions.Options.ValidateOptions`1.Validation">
  1327. <summary>
  1328. The validation function.
  1329. </summary>
  1330. </member>
  1331. <member name="P:Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage">
  1332. <summary>
  1333. The error to return when validation fails.
  1334. </summary>
  1335. </member>
  1336. <member name="M:Microsoft.Extensions.Options.ValidateOptions`1.Validate(System.String,`0)">
  1337. <summary>
  1338. Validates a specific named options instance (or all when <paramref name="name"/> is null).
  1339. </summary>
  1340. <param name="name">The name of the options instance being validated.</param>
  1341. <param name="options">The options instance.</param>
  1342. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  1343. </member>
  1344. <member name="T:Microsoft.Extensions.Options.ValidateOptions`2">
  1345. <summary>
  1346. Implementation of <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1347. </summary>
  1348. <typeparam name="TOptions">The options type to validate.</typeparam>
  1349. <typeparam name="TDep">Dependency type.</typeparam>
  1350. </member>
  1351. <member name="M:Microsoft.Extensions.Options.ValidateOptions`2.#ctor(System.String,`1,System.Func{`0,`1,System.Boolean},System.String)">
  1352. <summary>
  1353. Constructor.
  1354. </summary>
  1355. <param name="name">Options name.</param>
  1356. <param name="dependency">The dependency.</param>
  1357. <param name="validation">Validation function.</param>
  1358. <param name="failureMessage">Validation failure message.</param>
  1359. </member>
  1360. <member name="P:Microsoft.Extensions.Options.ValidateOptions`2.Name">
  1361. <summary>
  1362. The options name.
  1363. </summary>
  1364. </member>
  1365. <member name="P:Microsoft.Extensions.Options.ValidateOptions`2.Validation">
  1366. <summary>
  1367. The validation function.
  1368. </summary>
  1369. </member>
  1370. <member name="P:Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage">
  1371. <summary>
  1372. The error to return when validation fails.
  1373. </summary>
  1374. </member>
  1375. <member name="P:Microsoft.Extensions.Options.ValidateOptions`2.Dependency">
  1376. <summary>
  1377. The dependency.
  1378. </summary>
  1379. </member>
  1380. <member name="M:Microsoft.Extensions.Options.ValidateOptions`2.Validate(System.String,`0)">
  1381. <summary>
  1382. Validates a specific named options instance (or all when <paramref name="name"/> is null).
  1383. </summary>
  1384. <param name="name">The name of the options instance being validated.</param>
  1385. <param name="options">The options instance.</param>
  1386. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  1387. </member>
  1388. <member name="T:Microsoft.Extensions.Options.ValidateOptions`3">
  1389. <summary>
  1390. Implementation of <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1391. </summary>
  1392. <typeparam name="TOptions">The options type to validate.</typeparam>
  1393. <typeparam name="TDep1">First dependency type.</typeparam>
  1394. <typeparam name="TDep2">Second dependency type.</typeparam>
  1395. </member>
  1396. <member name="M:Microsoft.Extensions.Options.ValidateOptions`3.#ctor(System.String,`1,`2,System.Func{`0,`1,`2,System.Boolean},System.String)">
  1397. <summary>
  1398. Constructor.
  1399. </summary>
  1400. <param name="name">Options name.</param>
  1401. <param name="dependency1">The first dependency.</param>
  1402. <param name="dependency2">The second dependency.</param>
  1403. <param name="validation">Validation function.</param>
  1404. <param name="failureMessage">Validation failure message.</param>
  1405. </member>
  1406. <member name="P:Microsoft.Extensions.Options.ValidateOptions`3.Name">
  1407. <summary>
  1408. The options name.
  1409. </summary>
  1410. </member>
  1411. <member name="P:Microsoft.Extensions.Options.ValidateOptions`3.Validation">
  1412. <summary>
  1413. The validation function.
  1414. </summary>
  1415. </member>
  1416. <member name="P:Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage">
  1417. <summary>
  1418. The error to return when validation fails.
  1419. </summary>
  1420. </member>
  1421. <member name="P:Microsoft.Extensions.Options.ValidateOptions`3.Dependency1">
  1422. <summary>
  1423. The first dependency.
  1424. </summary>
  1425. </member>
  1426. <member name="P:Microsoft.Extensions.Options.ValidateOptions`3.Dependency2">
  1427. <summary>
  1428. The second dependency.
  1429. </summary>
  1430. </member>
  1431. <member name="M:Microsoft.Extensions.Options.ValidateOptions`3.Validate(System.String,`0)">
  1432. <summary>
  1433. Validates a specific named options instance (or all when <paramref name="name"/> is null).
  1434. </summary>
  1435. <param name="name">The name of the options instance being validated.</param>
  1436. <param name="options">The options instance.</param>
  1437. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  1438. </member>
  1439. <member name="T:Microsoft.Extensions.Options.ValidateOptions`4">
  1440. <summary>
  1441. Implementation of <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1442. </summary>
  1443. <typeparam name="TOptions">The options type to validate.</typeparam>
  1444. <typeparam name="TDep1">First dependency type.</typeparam>
  1445. <typeparam name="TDep2">Second dependency type.</typeparam>
  1446. <typeparam name="TDep3">Third dependency type.</typeparam>
  1447. </member>
  1448. <member name="M:Microsoft.Extensions.Options.ValidateOptions`4.#ctor(System.String,`1,`2,`3,System.Func{`0,`1,`2,`3,System.Boolean},System.String)">
  1449. <summary>
  1450. Constructor.
  1451. </summary>
  1452. <param name="name">Options name.</param>
  1453. <param name="dependency1">The first dependency.</param>
  1454. <param name="dependency2">The second dependency.</param>
  1455. <param name="dependency3">The third dependency.</param>
  1456. <param name="validation">Validation function.</param>
  1457. <param name="failureMessage">Validation failure message.</param>
  1458. </member>
  1459. <member name="P:Microsoft.Extensions.Options.ValidateOptions`4.Name">
  1460. <summary>
  1461. The options name.
  1462. </summary>
  1463. </member>
  1464. <member name="P:Microsoft.Extensions.Options.ValidateOptions`4.Validation">
  1465. <summary>
  1466. The validation function.
  1467. </summary>
  1468. </member>
  1469. <member name="P:Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage">
  1470. <summary>
  1471. The error to return when validation fails.
  1472. </summary>
  1473. </member>
  1474. <member name="P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency1">
  1475. <summary>
  1476. The first dependency.
  1477. </summary>
  1478. </member>
  1479. <member name="P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency2">
  1480. <summary>
  1481. The second dependency.
  1482. </summary>
  1483. </member>
  1484. <member name="P:Microsoft.Extensions.Options.ValidateOptions`4.Dependency3">
  1485. <summary>
  1486. The third dependency.
  1487. </summary>
  1488. </member>
  1489. <member name="M:Microsoft.Extensions.Options.ValidateOptions`4.Validate(System.String,`0)">
  1490. <summary>
  1491. Validates a specific named options instance (or all when <paramref name="name"/> is null).
  1492. </summary>
  1493. <param name="name">The name of the options instance being validated.</param>
  1494. <param name="options">The options instance.</param>
  1495. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  1496. </member>
  1497. <member name="T:Microsoft.Extensions.Options.ValidateOptions`5">
  1498. <summary>
  1499. Implementation of <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1500. </summary>
  1501. <typeparam name="TOptions">The options type to validate.</typeparam>
  1502. <typeparam name="TDep1">First dependency type.</typeparam>
  1503. <typeparam name="TDep2">Second dependency type.</typeparam>
  1504. <typeparam name="TDep3">Third dependency type.</typeparam>
  1505. <typeparam name="TDep4">Fourth dependency type.</typeparam>
  1506. </member>
  1507. <member name="M:Microsoft.Extensions.Options.ValidateOptions`5.#ctor(System.String,`1,`2,`3,`4,System.Func{`0,`1,`2,`3,`4,System.Boolean},System.String)">
  1508. <summary>
  1509. Constructor.
  1510. </summary>
  1511. <param name="name">Options name.</param>
  1512. <param name="dependency1">The first dependency.</param>
  1513. <param name="dependency2">The second dependency.</param>
  1514. <param name="dependency3">The third dependency.</param>
  1515. <param name="dependency4">The fourth dependency.</param>
  1516. <param name="validation">Validation function.</param>
  1517. <param name="failureMessage">Validation failure message.</param>
  1518. </member>
  1519. <member name="P:Microsoft.Extensions.Options.ValidateOptions`5.Name">
  1520. <summary>
  1521. The options name.
  1522. </summary>
  1523. </member>
  1524. <member name="P:Microsoft.Extensions.Options.ValidateOptions`5.Validation">
  1525. <summary>
  1526. The validation function.
  1527. </summary>
  1528. </member>
  1529. <member name="P:Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage">
  1530. <summary>
  1531. The error to return when validation fails.
  1532. </summary>
  1533. </member>
  1534. <member name="P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency1">
  1535. <summary>
  1536. The first dependency.
  1537. </summary>
  1538. </member>
  1539. <member name="P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency2">
  1540. <summary>
  1541. The second dependency.
  1542. </summary>
  1543. </member>
  1544. <member name="P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency3">
  1545. <summary>
  1546. The third dependency.
  1547. </summary>
  1548. </member>
  1549. <member name="P:Microsoft.Extensions.Options.ValidateOptions`5.Dependency4">
  1550. <summary>
  1551. The fourth dependency.
  1552. </summary>
  1553. </member>
  1554. <member name="M:Microsoft.Extensions.Options.ValidateOptions`5.Validate(System.String,`0)">
  1555. <summary>
  1556. Validates a specific named options instance (or all when <paramref name="name"/> is null).
  1557. </summary>
  1558. <param name="name">The name of the options instance being validated.</param>
  1559. <param name="options">The options instance.</param>
  1560. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  1561. </member>
  1562. <member name="T:Microsoft.Extensions.Options.ValidateOptions`6">
  1563. <summary>
  1564. Implementation of <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1565. </summary>
  1566. <typeparam name="TOptions">The options type to validate.</typeparam>
  1567. <typeparam name="TDep1">First dependency type.</typeparam>
  1568. <typeparam name="TDep2">Second dependency type.</typeparam>
  1569. <typeparam name="TDep3">Third dependency type.</typeparam>
  1570. <typeparam name="TDep4">Fourth dependency type.</typeparam>
  1571. <typeparam name="TDep5">Fifth dependency type.</typeparam>
  1572. </member>
  1573. <member name="M:Microsoft.Extensions.Options.ValidateOptions`6.#ctor(System.String,`1,`2,`3,`4,`5,System.Func{`0,`1,`2,`3,`4,`5,System.Boolean},System.String)">
  1574. <summary>
  1575. Constructor.
  1576. </summary>
  1577. <param name="name">Options name.</param>
  1578. <param name="dependency1">The first dependency.</param>
  1579. <param name="dependency2">The second dependency.</param>
  1580. <param name="dependency3">The third dependency.</param>
  1581. <param name="dependency4">The fourth dependency.</param>
  1582. <param name="dependency5">The fifth dependency.</param>
  1583. <param name="validation">Validation function.</param>
  1584. <param name="failureMessage">Validation failure message.</param>
  1585. </member>
  1586. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.Name">
  1587. <summary>
  1588. The options name.
  1589. </summary>
  1590. </member>
  1591. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.Validation">
  1592. <summary>
  1593. The validation function.
  1594. </summary>
  1595. </member>
  1596. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage">
  1597. <summary>
  1598. The error to return when validation fails.
  1599. </summary>
  1600. </member>
  1601. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency1">
  1602. <summary>
  1603. The first dependency.
  1604. </summary>
  1605. </member>
  1606. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency2">
  1607. <summary>
  1608. The second dependency.
  1609. </summary>
  1610. </member>
  1611. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency3">
  1612. <summary>
  1613. The third dependency.
  1614. </summary>
  1615. </member>
  1616. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency4">
  1617. <summary>
  1618. The fourth dependency.
  1619. </summary>
  1620. </member>
  1621. <member name="P:Microsoft.Extensions.Options.ValidateOptions`6.Dependency5">
  1622. <summary>
  1623. The fifth dependency.
  1624. </summary>
  1625. </member>
  1626. <member name="M:Microsoft.Extensions.Options.ValidateOptions`6.Validate(System.String,`0)">
  1627. <summary>
  1628. Validates a specific named options instance (or all when <paramref name="name"/> is null).
  1629. </summary>
  1630. <param name="name">The name of the options instance being validated.</param>
  1631. <param name="options">The options instance.</param>
  1632. <returns>The <see cref="T:Microsoft.Extensions.Options.ValidateOptionsResult"/> result.</returns>
  1633. </member>
  1634. <member name="T:Microsoft.Extensions.Options.ValidateOptionsResult">
  1635. <summary>
  1636. Represents the result of an options validation.
  1637. </summary>
  1638. </member>
  1639. <member name="F:Microsoft.Extensions.Options.ValidateOptionsResult.Skip">
  1640. <summary>
  1641. Result when validation was skipped due to name not matching.
  1642. </summary>
  1643. </member>
  1644. <member name="F:Microsoft.Extensions.Options.ValidateOptionsResult.Success">
  1645. <summary>
  1646. Validation was successful.
  1647. </summary>
  1648. </member>
  1649. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.Succeeded">
  1650. <summary>
  1651. True if validation was successful.
  1652. </summary>
  1653. </member>
  1654. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.Skipped">
  1655. <summary>
  1656. True if validation was not run.
  1657. </summary>
  1658. </member>
  1659. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.Failed">
  1660. <summary>
  1661. True if validation failed.
  1662. </summary>
  1663. </member>
  1664. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage">
  1665. <summary>
  1666. Used to describe why validation failed.
  1667. </summary>
  1668. </member>
  1669. <member name="P:Microsoft.Extensions.Options.ValidateOptionsResult.Failures">
  1670. <summary>
  1671. Full list of failures (can be multiple).
  1672. </summary>
  1673. </member>
  1674. <member name="M:Microsoft.Extensions.Options.ValidateOptionsResult.Fail(System.String)">
  1675. <summary>
  1676. Returns a failure result.
  1677. </summary>
  1678. <param name="failureMessage">The reason for the failure.</param>
  1679. <returns>The failure result.</returns>
  1680. </member>
  1681. <member name="M:Microsoft.Extensions.Options.ValidateOptionsResult.Fail(System.Collections.Generic.IEnumerable{System.String})">
  1682. <summary>
  1683. Returns a failure result.
  1684. </summary>
  1685. <param name="failures">The reasons for the failure.</param>
  1686. <returns>The failure result.</returns>
  1687. </member>
  1688. <member name="T:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions">
  1689. <summary>
  1690. Extension methods for adding options services to the DI container.
  1691. </summary>
  1692. </member>
  1693. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  1694. <summary>
  1695. Adds services required for using options.
  1696. </summary>
  1697. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1698. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1699. </member>
  1700. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1701. <summary>
  1702. Registers an action used to configure a particular type of options.
  1703. Note: These are run before all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1704. </summary>
  1705. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1706. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1707. <param name="configureOptions">The action used to configure the options.</param>
  1708. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1709. </member>
  1710. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})">
  1711. <summary>
  1712. Registers an action used to configure a particular type of options.
  1713. Note: These are run before all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1714. </summary>
  1715. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1716. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1717. <param name="name">The name of the options instance.</param>
  1718. <param name="configureOptions">The action used to configure the options.</param>
  1719. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1720. </member>
  1721. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1722. <summary>
  1723. Registers an action used to configure all instances of a particular type of options.
  1724. </summary>
  1725. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1726. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1727. <param name="configureOptions">The action used to configure the options.</param>
  1728. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1729. </member>
  1730. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1731. <summary>
  1732. Registers an action used to initialize a particular type of options.
  1733. Note: These are run after all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1734. </summary>
  1735. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1736. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1737. <param name="configureOptions">The action used to configure the options.</param>
  1738. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1739. </member>
  1740. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action{``0})">
  1741. <summary>
  1742. Registers an action used to configure a particular type of options.
  1743. Note: These are run after all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1744. </summary>
  1745. <typeparam name="TOptions">The options type to be configure.</typeparam>
  1746. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1747. <param name="name">The name of the options instance.</param>
  1748. <param name="configureOptions">The action used to configure the options.</param>
  1749. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1750. </member>
  1751. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.PostConfigureAll``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})">
  1752. <summary>
  1753. Registers an action used to post configure all instances of a particular type of options.
  1754. Note: These are run after all <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action{``0})"/>.
  1755. </summary>
  1756. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1757. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1758. <param name="configureOptions">The action used to configure the options.</param>
  1759. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1760. </member>
  1761. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  1762. <summary>
  1763. Registers a type that will have all of its <see cref="T:Microsoft.Extensions.Options.IConfigureOptions`1"/>,
  1764. <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>, and <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1765. registered.
  1766. </summary>
  1767. <typeparam name="TConfigureOptions">The type that will configure options.</typeparam>
  1768. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1769. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1770. </member>
  1771. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type)">
  1772. <summary>
  1773. Registers a type that will have all of its <see cref="T:Microsoft.Extensions.Options.IConfigureOptions`1"/>,
  1774. <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>, and <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1775. registered.
  1776. </summary>
  1777. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1778. <param name="configureType">The type that will configure options.</param>
  1779. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1780. </member>
  1781. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.ConfigureOptions(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Object)">
  1782. <summary>
  1783. Registers an object that will have all of its <see cref="T:Microsoft.Extensions.Options.IConfigureOptions`1"/>,
  1784. <see cref="T:Microsoft.Extensions.Options.IPostConfigureOptions`1"/>, and <see cref="T:Microsoft.Extensions.Options.IValidateOptions`1"/>
  1785. registered.
  1786. </summary>
  1787. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1788. <param name="configureInstance">The instance that will configure options.</param>
  1789. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  1790. </member>
  1791. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection)">
  1792. <summary>
  1793. Gets an options builder that forwards Configure calls for the same <typeparamref name="TOptions"/> to the underlying service collection.
  1794. </summary>
  1795. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1796. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1797. <returns>The <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/> so that configure calls can be chained in it.</returns>
  1798. </member>
  1799. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsServiceCollectionExtensions.AddOptions``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)">
  1800. <summary>
  1801. Gets an options builder that forwards Configure calls for the same named <typeparamref name="TOptions"/> to the underlying service collection.
  1802. </summary>
  1803. <typeparam name="TOptions">The options type to be configured.</typeparam>
  1804. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  1805. <param name="name">The name of the options instance.</param>
  1806. <returns>The <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/> so that configure calls can be chained in it.</returns>
  1807. </member>
  1808. <member name="M:System.ThrowHelper.ThrowIfNull(System.Object,System.String)">
  1809. <summary>Throws an <see cref="T:System.ArgumentNullException"/> if <paramref name="argument"/> is null.</summary>
  1810. <param name="argument">The reference type argument to validate as non-null.</param>
  1811. <param name="paramName">The name of the parameter with which <paramref name="argument"/> corresponds.</param>
  1812. </member>
  1813. <member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
  1814. <summary>
  1815. Attribute used to indicate a source generator should create a function for marshalling
  1816. arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
  1817. </summary>
  1818. <remarks>
  1819. This attribute is meaningless if the source generator associated with it is not enabled.
  1820. The current built-in source generator only supports C# and only supplies an implementation when
  1821. applied to static, partial, non-generic methods.
  1822. </remarks>
  1823. </member>
  1824. <member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
  1825. <summary>
  1826. Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
  1827. </summary>
  1828. <param name="libraryName">Name of the library containing the import.</param>
  1829. </member>
  1830. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
  1831. <summary>
  1832. Gets the name of the library containing the import.
  1833. </summary>
  1834. </member>
  1835. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
  1836. <summary>
  1837. Gets or sets the name of the entry point to be called.
  1838. </summary>
  1839. </member>
  1840. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
  1841. <summary>
  1842. Gets or sets how to marshal string arguments to the method.
  1843. </summary>
  1844. <remarks>
  1845. If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
  1846. <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
  1847. </remarks>
  1848. </member>
  1849. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
  1850. <summary>
  1851. Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
  1852. </summary>
  1853. <remarks>
  1854. If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
  1855. or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
  1856. </remarks>
  1857. </member>
  1858. <member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
  1859. <summary>
  1860. Gets or sets whether the callee sets an error (SetLastError on Windows or errno
  1861. on other platforms) before returning from the attributed method.
  1862. </summary>
  1863. </member>
  1864. <member name="T:System.Runtime.InteropServices.StringMarshalling">
  1865. <summary>
  1866. Specifies how strings should be marshalled for generated p/invokes
  1867. </summary>
  1868. </member>
  1869. <member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
  1870. <summary>
  1871. Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
  1872. </summary>
  1873. </member>
  1874. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
  1875. <summary>
  1876. Use the platform-provided UTF-8 marshaller.
  1877. </summary>
  1878. </member>
  1879. <member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
  1880. <summary>
  1881. Use the platform-provided UTF-16 marshaller.
  1882. </summary>
  1883. </member>
  1884. <member name="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute">
  1885. <summary>
  1886. Indicates that certain members on a specified <see cref="T:System.Type"/> are accessed dynamically,
  1887. for example through <see cref="N:System.Reflection"/>.
  1888. </summary>
  1889. <remarks>
  1890. This allows tools to understand which members are being accessed during the execution
  1891. of a program.
  1892. This attribute is valid on members whose type is <see cref="T:System.Type"/> or <see cref="T:System.String"/>.
  1893. When this attribute is applied to a location of type <see cref="T:System.String"/>, the assumption is
  1894. that the string represents a fully qualified type name.
  1895. When this attribute is applied to a class, interface, or struct, the members specified
  1896. can be accessed dynamically on <see cref="T:System.Type"/> instances returned from calling
  1897. <see cref="M:System.Object.GetType"/> on instances of that class, interface, or struct.
  1898. If the attribute is applied to a method it's treated as a special case and it implies
  1899. the attribute should be applied to the "this" parameter of the method. As such the attribute
  1900. should only be used on instance methods of types assignable to System.Type (or string, but no methods
  1901. will use it there).
  1902. </remarks>
  1903. </member>
  1904. <member name="M:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes)">
  1905. <summary>
  1906. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute"/> class
  1907. with the specified member types.
  1908. </summary>
  1909. <param name="memberTypes">The types of members dynamically accessed.</param>
  1910. </member>
  1911. <member name="P:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.MemberTypes">
  1912. <summary>
  1913. Gets the <see cref="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes"/> which specifies the type
  1914. of members dynamically accessed.
  1915. </summary>
  1916. </member>
  1917. <member name="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">
  1918. <summary>
  1919. Specifies the types of members that are dynamically accessed.
  1920. This enumeration has a <see cref="T:System.FlagsAttribute"/> attribute that allows a
  1921. bitwise combination of its member values.
  1922. </summary>
  1923. </member>
  1924. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.None">
  1925. <summary>
  1926. Specifies no members.
  1927. </summary>
  1928. </member>
  1929. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor">
  1930. <summary>
  1931. Specifies the default, parameterless public constructor.
  1932. </summary>
  1933. </member>
  1934. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors">
  1935. <summary>
  1936. Specifies all public constructors.
  1937. </summary>
  1938. </member>
  1939. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicConstructors">
  1940. <summary>
  1941. Specifies all non-public constructors.
  1942. </summary>
  1943. </member>
  1944. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods">
  1945. <summary>
  1946. Specifies all public methods.
  1947. </summary>
  1948. </member>
  1949. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicMethods">
  1950. <summary>
  1951. Specifies all non-public methods.
  1952. </summary>
  1953. </member>
  1954. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields">
  1955. <summary>
  1956. Specifies all public fields.
  1957. </summary>
  1958. </member>
  1959. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicFields">
  1960. <summary>
  1961. Specifies all non-public fields.
  1962. </summary>
  1963. </member>
  1964. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes">
  1965. <summary>
  1966. Specifies all public nested types.
  1967. </summary>
  1968. </member>
  1969. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes">
  1970. <summary>
  1971. Specifies all non-public nested types.
  1972. </summary>
  1973. </member>
  1974. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties">
  1975. <summary>
  1976. Specifies all public properties.
  1977. </summary>
  1978. </member>
  1979. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicProperties">
  1980. <summary>
  1981. Specifies all non-public properties.
  1982. </summary>
  1983. </member>
  1984. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents">
  1985. <summary>
  1986. Specifies all public events.
  1987. </summary>
  1988. </member>
  1989. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicEvents">
  1990. <summary>
  1991. Specifies all non-public events.
  1992. </summary>
  1993. </member>
  1994. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.Interfaces">
  1995. <summary>
  1996. Specifies all interfaces implemented by the type.
  1997. </summary>
  1998. </member>
  1999. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All">
  2000. <summary>
  2001. Specifies all members.
  2002. </summary>
  2003. </member>
  2004. <member name="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute">
  2005. <summary>
  2006. Suppresses reporting of a specific rule violation, allowing multiple suppressions on a
  2007. single code artifact.
  2008. </summary>
  2009. <remarks>
  2010. <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/> is different than
  2011. <see cref="T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute"/> in that it doesn't have a
  2012. <see cref="T:System.Diagnostics.ConditionalAttribute"/>. So it is always preserved in the compiled assembly.
  2013. </remarks>
  2014. </member>
  2015. <member name="M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.#ctor(System.String,System.String)">
  2016. <summary>
  2017. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/>
  2018. class, specifying the category of the tool and the identifier for an analysis rule.
  2019. </summary>
  2020. <param name="category">The category for the attribute.</param>
  2021. <param name="checkId">The identifier of the analysis rule the attribute applies to.</param>
  2022. </member>
  2023. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category">
  2024. <summary>
  2025. Gets the category identifying the classification of the attribute.
  2026. </summary>
  2027. <remarks>
  2028. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category"/> property describes the tool or tool analysis category
  2029. for which a message suppression attribute applies.
  2030. </remarks>
  2031. </member>
  2032. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.CheckId">
  2033. <summary>
  2034. Gets the identifier of the analysis tool rule to be suppressed.
  2035. </summary>
  2036. <remarks>
  2037. Concatenated together, the <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category"/> and <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.CheckId"/>
  2038. properties form a unique check identifier.
  2039. </remarks>
  2040. </member>
  2041. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Scope">
  2042. <summary>
  2043. Gets or sets the scope of the code that is relevant for the attribute.
  2044. </summary>
  2045. <remarks>
  2046. The Scope property is an optional argument that specifies the metadata scope for which
  2047. the attribute is relevant.
  2048. </remarks>
  2049. </member>
  2050. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Target">
  2051. <summary>
  2052. Gets or sets a fully qualified path that represents the target of the attribute.
  2053. </summary>
  2054. <remarks>
  2055. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Target"/> property is an optional argument identifying the analysis target
  2056. of the attribute. An example value is "System.IO.Stream.ctor():System.Void".
  2057. Because it is fully qualified, it can be long, particularly for targets such as parameters.
  2058. The analysis tool user interface should be capable of automatically formatting the parameter.
  2059. </remarks>
  2060. </member>
  2061. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.MessageId">
  2062. <summary>
  2063. Gets or sets an optional argument expanding on exclusion criteria.
  2064. </summary>
  2065. <remarks>
  2066. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.MessageId"/> property is an optional argument that specifies additional
  2067. exclusion where the literal metadata target is not sufficiently precise. For example,
  2068. the <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/> cannot be applied within a method,
  2069. and it may be desirable to suppress a violation against a statement in the method that will
  2070. give a rule violation, but not against all statements in the method.
  2071. </remarks>
  2072. </member>
  2073. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Justification">
  2074. <summary>
  2075. Gets or sets the justification for suppressing the code analysis message.
  2076. </summary>
  2077. </member>
  2078. <member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
  2079. <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
  2080. </member>
  2081. <member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
  2082. <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
  2083. </member>
  2084. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
  2085. <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
  2086. </member>
  2087. <member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
  2088. <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>
  2089. </member>
  2090. <member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
  2091. <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>
  2092. </member>
  2093. <member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
  2094. <summary>Initializes the attribute with the specified return value condition.</summary>
  2095. <param name="returnValue">
  2096. The return value condition. If the method returns this value, the associated parameter may be null.
  2097. </param>
  2098. </member>
  2099. <member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
  2100. <summary>Gets the return value condition.</summary>
  2101. </member>
  2102. <member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
  2103. <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>
  2104. </member>
  2105. <member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
  2106. <summary>Initializes the attribute with the specified return value condition.</summary>
  2107. <param name="returnValue">
  2108. The return value condition. If the method returns this value, the associated parameter will not be null.
  2109. </param>
  2110. </member>
  2111. <member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
  2112. <summary>Gets the return value condition.</summary>
  2113. </member>
  2114. <member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
  2115. <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
  2116. </member>
  2117. <member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
  2118. <summary>Initializes the attribute with the associated parameter name.</summary>
  2119. <param name="parameterName">
  2120. The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
  2121. </param>
  2122. </member>
  2123. <member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
  2124. <summary>Gets the associated parameter name.</summary>
  2125. </member>
  2126. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
  2127. <summary>Applied to a method that will never return under any circumstance.</summary>
  2128. </member>
  2129. <member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
  2130. <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
  2131. </member>
  2132. <member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
  2133. <summary>Initializes the attribute with the specified parameter value.</summary>
  2134. <param name="parameterValue">
  2135. The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
  2136. the associated parameter matches this value.
  2137. </param>
  2138. </member>
  2139. <member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
  2140. <summary>Gets the condition parameter value.</summary>
  2141. </member>
  2142. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
  2143. <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
  2144. </member>
  2145. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
  2146. <summary>Initializes the attribute with a field or property member.</summary>
  2147. <param name="member">
  2148. The field or property member that is promised to be not-null.
  2149. </param>
  2150. </member>
  2151. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
  2152. <summary>Initializes the attribute with the list of field and property members.</summary>
  2153. <param name="members">
  2154. The list of field and property members that are promised to be not-null.
  2155. </param>
  2156. </member>
  2157. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
  2158. <summary>Gets field or property member names.</summary>
  2159. </member>
  2160. <member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
  2161. <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>
  2162. </member>
  2163. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
  2164. <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
  2165. <param name="returnValue">
  2166. The return value condition. If the method returns this value, the associated parameter will not be null.
  2167. </param>
  2168. <param name="member">
  2169. The field or property member that is promised to be not-null.
  2170. </param>
  2171. </member>
  2172. <member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
  2173. <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
  2174. <param name="returnValue">
  2175. The return value condition. If the method returns this value, the associated parameter will not be null.
  2176. </param>
  2177. <param name="members">
  2178. The list of field and property members that are promised to be not-null.
  2179. </param>
  2180. </member>
  2181. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
  2182. <summary>Gets the return value condition.</summary>
  2183. </member>
  2184. <member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
  2185. <summary>Gets field or property member names.</summary>
  2186. </member>
  2187. <member name="P:System.SR.Error_CannotActivateAbstractOrInterface">
  2188. <summary>Cannot create instance of type '{0}' because it is either abstract or an interface.</summary>
  2189. </member>
  2190. <member name="P:System.SR.Error_FailedBinding">
  2191. <summary>Failed to convert '{0}' to type '{1}'.</summary>
  2192. </member>
  2193. <member name="P:System.SR.Error_FailedToActivate">
  2194. <summary>Failed to create instance of type '{0}'.</summary>
  2195. </member>
  2196. <member name="P:System.SR.Error_MissingParameterlessConstructor">
  2197. <summary>Cannot create instance of type '{0}' because it is missing a public parameterless constructor.</summary>
  2198. </member>
  2199. <member name="P:System.SR.Error_NoConfigurationServices">
  2200. <summary>No IConfigureOptions&lt;&gt;, IPostConfigureOptions&lt;&gt;, or IValidateOptions&lt;&gt; implementations were found.</summary>
  2201. </member>
  2202. <member name="P:System.SR.Error_NoConfigurationServicesAndAction">
  2203. <summary>No IConfigureOptions&lt;&gt;, IPostConfigureOptions&lt;&gt;, or IValidateOptions&lt;&gt; implementations were found, did you mean to call Configure&lt;&gt; or PostConfigure&lt;&gt;?</summary>
  2204. </member>
  2205. </members>
  2206. </doc>