Microsoft.Extensions.Options.ConfigurationExtensions.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.Extensions.Options.ConfigurationExtensions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1">
  8. <summary>
  9. Creates <see cref="T:Microsoft.Extensions.Primitives.IChangeToken"/>s so that <see cref="T:Microsoft.Extensions.Options.IOptionsMonitor`1"/> gets
  10. notified when <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> changes.
  11. </summary>
  12. <typeparam name="TOptions"></typeparam>
  13. </member>
  14. <member name="M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.#ctor(Microsoft.Extensions.Configuration.IConfiguration)">
  15. <summary>
  16. Constructor taking the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance to watch.
  17. </summary>
  18. <param name="config">The configuration instance.</param>
  19. </member>
  20. <member name="M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration)">
  21. <summary>
  22. Constructor taking the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance to watch.
  23. </summary>
  24. <param name="name">The name of the options instance being watched.</param>
  25. <param name="config">The configuration instance.</param>
  26. </member>
  27. <member name="P:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.Name">
  28. <summary>
  29. The name of the option instance being changed.
  30. </summary>
  31. </member>
  32. <member name="M:Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.GetChangeToken">
  33. <summary>
  34. Returns the reloadToken from the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/>.
  35. </summary>
  36. <returns></returns>
  37. </member>
  38. <member name="T:Microsoft.Extensions.Options.ConfigureFromConfigurationOptions`1">
  39. <summary>
  40. Configures an option instance by using <see cref="M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.Object)"/> against an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/>.
  41. </summary>
  42. <typeparam name="TOptions">The type of options to bind.</typeparam>
  43. </member>
  44. <member name="M:Microsoft.Extensions.Options.ConfigureFromConfigurationOptions`1.#ctor(Microsoft.Extensions.Configuration.IConfiguration)">
  45. <summary>
  46. Constructor that takes the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance to bind against.
  47. </summary>
  48. <param name="config">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance.</param>
  49. </member>
  50. <member name="T:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1">
  51. <summary>
  52. Configures an option instance by using <see cref="M:Microsoft.Extensions.Configuration.ConfigurationBinder.Bind(Microsoft.Extensions.Configuration.IConfiguration,System.Object)"/> against an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/>.
  53. </summary>
  54. <typeparam name="TOptions">The type of options to bind.</typeparam>
  55. </member>
  56. <member name="M:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration)">
  57. <summary>
  58. Constructor that takes the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance to bind against.
  59. </summary>
  60. <param name="name">The name of the options instance.</param>
  61. <param name="config">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance.</param>
  62. </member>
  63. <member name="M:Microsoft.Extensions.Options.NamedConfigureFromConfigurationOptions`1.#ctor(System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})">
  64. <summary>
  65. Constructor that takes the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance to bind against.
  66. </summary>
  67. <param name="name">The name of the options instance.</param>
  68. <param name="config">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> instance.</param>
  69. <param name="configureBinder">Used to configure the <see cref="T:Microsoft.Extensions.Configuration.BinderOptions"/>.</param>
  70. </member>
  71. <member name="T:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions">
  72. <summary>
  73. Extension methods for adding configuration related options services to the DI container via <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/>.
  74. </summary>
  75. </member>
  76. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.Bind``1(Microsoft.Extensions.Options.OptionsBuilder{``0},Microsoft.Extensions.Configuration.IConfiguration)">
  77. <summary>
  78. Registers a configuration instance which <typeparamref name="TOptions"/> will bind against.
  79. </summary>
  80. <typeparam name="TOptions">The options type to be configured.</typeparam>
  81. <param name="optionsBuilder">The options builder to add the services to.</param>
  82. <param name="config">The configuration being bound.</param>
  83. <returns>The <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/> so that additional calls can be chained.</returns>
  84. </member>
  85. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.Bind``1(Microsoft.Extensions.Options.OptionsBuilder{``0},Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})">
  86. <summary>
  87. Registers a configuration instance which <typeparamref name="TOptions"/> will bind against.
  88. </summary>
  89. <typeparam name="TOptions">The options type to be configured.</typeparam>
  90. <param name="optionsBuilder">The options builder to add the services to.</param>
  91. <param name="config">The configuration being bound.</param>
  92. <param name="configureBinder">Used to configure the <see cref="T:Microsoft.Extensions.Configuration.BinderOptions"/>.</param>
  93. <returns>The <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/> so that additional calls can be chained.</returns>
  94. </member>
  95. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.BindConfiguration``1(Microsoft.Extensions.Options.OptionsBuilder{``0},System.String,System.Action{Microsoft.Extensions.Configuration.BinderOptions})">
  96. <summary>
  97. Registers the dependency injection container to bind <typeparamref name="TOptions"/> against
  98. the <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> obtained from the DI service provider.
  99. </summary>
  100. <typeparam name="TOptions">The options type to be configured.</typeparam>
  101. <param name="optionsBuilder">The options builder to add the services to.</param>
  102. <param name="configSectionPath">The name of the configuration section to bind from.</param>
  103. <param name="configureBinder">Optional. Used to configure the <see cref="T:Microsoft.Extensions.Configuration.BinderOptions"/>.</param>
  104. <returns>The <see cref="T:Microsoft.Extensions.Options.OptionsBuilder`1"/> so that additional calls can be chained.</returns>
  105. <exception cref="T:System.ArgumentNullException">
  106. <paramref name="optionsBuilder"/> or <paramref name="configSectionPath" /> is <see langword="null"/>.
  107. </exception>
  108. <seealso cref="M:Microsoft.Extensions.DependencyInjection.OptionsBuilderConfigurationExtensions.Bind``1(Microsoft.Extensions.Options.OptionsBuilder{``0},Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})"/>
  109. </member>
  110. <member name="T:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions">
  111. <summary>
  112. Extension methods for adding configuration related options services to the DI container.
  113. </summary>
  114. </member>
  115. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfiguration)">
  116. <summary>
  117. Registers a configuration instance which TOptions will bind against.
  118. </summary>
  119. <typeparam name="TOptions">The type of options being configured.</typeparam>
  120. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  121. <param name="config">The configuration being bound.</param>
  122. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  123. </member>
  124. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfiguration)">
  125. <summary>
  126. Registers a configuration instance which TOptions will bind against.
  127. </summary>
  128. <typeparam name="TOptions">The type of options being configured.</typeparam>
  129. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  130. <param name="name">The name of the options instance.</param>
  131. <param name="config">The configuration being bound.</param>
  132. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  133. </member>
  134. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})">
  135. <summary>
  136. Registers a configuration instance which TOptions will bind against.
  137. </summary>
  138. <typeparam name="TOptions">The type of options being configured.</typeparam>
  139. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  140. <param name="config">The configuration being bound.</param>
  141. <param name="configureBinder">Used to configure the <see cref="T:Microsoft.Extensions.Configuration.BinderOptions"/>.</param>
  142. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  143. </member>
  144. <member name="M:Microsoft.Extensions.DependencyInjection.OptionsConfigurationServiceCollectionExtensions.Configure``1(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action{Microsoft.Extensions.Configuration.BinderOptions})">
  145. <summary>
  146. Registers a configuration instance which TOptions will bind against.
  147. </summary>
  148. <typeparam name="TOptions">The type of options being configured.</typeparam>
  149. <param name="services">The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> to add the services to.</param>
  150. <param name="name">The name of the options instance.</param>
  151. <param name="config">The configuration being bound.</param>
  152. <param name="configureBinder">Used to configure the <see cref="T:Microsoft.Extensions.Configuration.BinderOptions"/>.</param>
  153. <returns>The <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/> so that additional calls can be chained.</returns>
  154. </member>
  155. <member name="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute">
  156. <summary>
  157. Indicates that certain members on a specified <see cref="T:System.Type"/> are accessed dynamically,
  158. for example through <see cref="N:System.Reflection"/>.
  159. </summary>
  160. <remarks>
  161. This allows tools to understand which members are being accessed during the execution
  162. of a program.
  163. This attribute is valid on members whose type is <see cref="T:System.Type"/> or <see cref="T:System.String"/>.
  164. When this attribute is applied to a location of type <see cref="T:System.String"/>, the assumption is
  165. that the string represents a fully qualified type name.
  166. When this attribute is applied to a class, interface, or struct, the members specified
  167. can be accessed dynamically on <see cref="T:System.Type"/> instances returned from calling
  168. <see cref="M:System.Object.GetType"/> on instances of that class, interface, or struct.
  169. If the attribute is applied to a method it's treated as a special case and it implies
  170. the attribute should be applied to the "this" parameter of the method. As such the attribute
  171. should only be used on instance methods of types assignable to System.Type (or string, but no methods
  172. will use it there).
  173. </remarks>
  174. </member>
  175. <member name="M:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.#ctor(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes)">
  176. <summary>
  177. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute"/> class
  178. with the specified member types.
  179. </summary>
  180. <param name="memberTypes">The types of members dynamically accessed.</param>
  181. </member>
  182. <member name="P:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute.MemberTypes">
  183. <summary>
  184. Gets the <see cref="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes"/> which specifies the type
  185. of members dynamically accessed.
  186. </summary>
  187. </member>
  188. <member name="T:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">
  189. <summary>
  190. Specifies the types of members that are dynamically accessed.
  191. This enumeration has a <see cref="T:System.FlagsAttribute"/> attribute that allows a
  192. bitwise combination of its member values.
  193. </summary>
  194. </member>
  195. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.None">
  196. <summary>
  197. Specifies no members.
  198. </summary>
  199. </member>
  200. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicParameterlessConstructor">
  201. <summary>
  202. Specifies the default, parameterless public constructor.
  203. </summary>
  204. </member>
  205. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicConstructors">
  206. <summary>
  207. Specifies all public constructors.
  208. </summary>
  209. </member>
  210. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicConstructors">
  211. <summary>
  212. Specifies all non-public constructors.
  213. </summary>
  214. </member>
  215. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods">
  216. <summary>
  217. Specifies all public methods.
  218. </summary>
  219. </member>
  220. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicMethods">
  221. <summary>
  222. Specifies all non-public methods.
  223. </summary>
  224. </member>
  225. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicFields">
  226. <summary>
  227. Specifies all public fields.
  228. </summary>
  229. </member>
  230. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicFields">
  231. <summary>
  232. Specifies all non-public fields.
  233. </summary>
  234. </member>
  235. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicNestedTypes">
  236. <summary>
  237. Specifies all public nested types.
  238. </summary>
  239. </member>
  240. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicNestedTypes">
  241. <summary>
  242. Specifies all non-public nested types.
  243. </summary>
  244. </member>
  245. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicProperties">
  246. <summary>
  247. Specifies all public properties.
  248. </summary>
  249. </member>
  250. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicProperties">
  251. <summary>
  252. Specifies all non-public properties.
  253. </summary>
  254. </member>
  255. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicEvents">
  256. <summary>
  257. Specifies all public events.
  258. </summary>
  259. </member>
  260. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.NonPublicEvents">
  261. <summary>
  262. Specifies all non-public events.
  263. </summary>
  264. </member>
  265. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.Interfaces">
  266. <summary>
  267. Specifies all interfaces implemented by the type.
  268. </summary>
  269. </member>
  270. <member name="F:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All">
  271. <summary>
  272. Specifies all members.
  273. </summary>
  274. </member>
  275. <member name="T:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute">
  276. <summary>
  277. Indicates that the specified method requires dynamic access to code that is not referenced
  278. statically, for example through <see cref="N:System.Reflection"/>.
  279. </summary>
  280. <remarks>
  281. This allows tools to understand which methods are unsafe to call when removing unreferenced
  282. code from an application.
  283. </remarks>
  284. </member>
  285. <member name="M:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.#ctor(System.String)">
  286. <summary>
  287. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute"/> class
  288. with the specified message.
  289. </summary>
  290. <param name="message">
  291. A message that contains information about the usage of unreferenced code.
  292. </param>
  293. </member>
  294. <member name="P:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.Message">
  295. <summary>
  296. Gets a message that contains information about the usage of unreferenced code.
  297. </summary>
  298. </member>
  299. <member name="P:System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute.Url">
  300. <summary>
  301. Gets or sets an optional URL that contains more information about the method,
  302. why it requries unreferenced code, and what options a consumer has to deal with it.
  303. </summary>
  304. </member>
  305. <member name="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute">
  306. <summary>
  307. Suppresses reporting of a specific rule violation, allowing multiple suppressions on a
  308. single code artifact.
  309. </summary>
  310. <remarks>
  311. <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/> is different than
  312. <see cref="T:System.Diagnostics.CodeAnalysis.SuppressMessageAttribute"/> in that it doesn't have a
  313. <see cref="T:System.Diagnostics.ConditionalAttribute"/>. So it is always preserved in the compiled assembly.
  314. </remarks>
  315. </member>
  316. <member name="M:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.#ctor(System.String,System.String)">
  317. <summary>
  318. Initializes a new instance of the <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/>
  319. class, specifying the category of the tool and the identifier for an analysis rule.
  320. </summary>
  321. <param name="category">The category for the attribute.</param>
  322. <param name="checkId">The identifier of the analysis rule the attribute applies to.</param>
  323. </member>
  324. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category">
  325. <summary>
  326. Gets the category identifying the classification of the attribute.
  327. </summary>
  328. <remarks>
  329. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category"/> property describes the tool or tool analysis category
  330. for which a message suppression attribute applies.
  331. </remarks>
  332. </member>
  333. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.CheckId">
  334. <summary>
  335. Gets the identifier of the analysis tool rule to be suppressed.
  336. </summary>
  337. <remarks>
  338. Concatenated together, the <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Category"/> and <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.CheckId"/>
  339. properties form a unique check identifier.
  340. </remarks>
  341. </member>
  342. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Scope">
  343. <summary>
  344. Gets or sets the scope of the code that is relevant for the attribute.
  345. </summary>
  346. <remarks>
  347. The Scope property is an optional argument that specifies the metadata scope for which
  348. the attribute is relevant.
  349. </remarks>
  350. </member>
  351. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Target">
  352. <summary>
  353. Gets or sets a fully qualified path that represents the target of the attribute.
  354. </summary>
  355. <remarks>
  356. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Target"/> property is an optional argument identifying the analysis target
  357. of the attribute. An example value is "System.IO.Stream.ctor():System.Void".
  358. Because it is fully qualified, it can be long, particularly for targets such as parameters.
  359. The analysis tool user interface should be capable of automatically formatting the parameter.
  360. </remarks>
  361. </member>
  362. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.MessageId">
  363. <summary>
  364. Gets or sets an optional argument expanding on exclusion criteria.
  365. </summary>
  366. <remarks>
  367. The <see cref="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.MessageId"/> property is an optional argument that specifies additional
  368. exclusion where the literal metadata target is not sufficiently precise. For example,
  369. the <see cref="T:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute"/> cannot be applied within a method,
  370. and it may be desirable to suppress a violation against a statement in the method that will
  371. give a rule violation, but not against all statements in the method.
  372. </remarks>
  373. </member>
  374. <member name="P:System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessageAttribute.Justification">
  375. <summary>
  376. Gets or sets the justification for suppressing the code analysis message.
  377. </summary>
  378. </member>
  379. </members>
  380. </doc>