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