Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / corlib / Documentation / en / System.Reflection / AssemblyName.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="AssemblyName" FullName="System.Reflection.AssemblyName">
3   <TypeSignature Maintainer="auto" Language="C#" Value="public sealed class AssemblyName : ICloneable, System.Runtime.InteropServices._AssemblyName, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable" />
4   <TypeSignature Language="ILAsm" Value=".class public sequential ansi serializable sealed beforefieldinit AssemblyName extends System.Object implements class System.ICloneable, class System.Runtime.InteropServices._AssemblyName, class System.Runtime.Serialization.IDeserializationCallback, class System.Runtime.Serialization.ISerializable" />
5   <AssemblyInfo>
6     <AssemblyName>mscorlib</AssemblyName>
7     <AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey>
8     <AssemblyVersion>1.0.5000.0</AssemblyVersion>
9     <AssemblyVersion>2.0.0.0</AssemblyVersion>
10     <AssemblyVersion>4.0.0.0</AssemblyVersion>
11   </AssemblyInfo>
12   <ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement>
13   <Base>
14     <BaseTypeName>System.Object</BaseTypeName>
15   </Base>
16   <Interfaces>
17     <Interface>
18       <InterfaceName>System.ICloneable</InterfaceName>
19     </Interface>
20     <Interface>
21       <InterfaceName>System.Runtime.InteropServices._AssemblyName</InterfaceName>
22     </Interface>
23     <Interface>
24       <InterfaceName>System.Runtime.Serialization.IDeserializationCallback</InterfaceName>
25     </Interface>
26     <Interface>
27       <InterfaceName>System.Runtime.Serialization.ISerializable</InterfaceName>
28     </Interface>
29   </Interfaces>
30   <Attributes>
31     <Attribute>
32       <AttributeName>System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)</AttributeName>
33     </Attribute>
34     <Attribute>
35       <AttributeName>System.Runtime.InteropServices.ComDefaultInterface(typeof(System.Runtime.InteropServices._AssemblyName))</AttributeName>
36     </Attribute>
37     <Attribute>
38       <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
39     </Attribute>
40   </Attributes>
41   <Docs>
42     <remarks>
43       <attribution license="cc4" from="Microsoft" modified="false" />
44       <para>The <see cref="T:System.Reflection.AssemblyName" /> object contains information about an assembly, which you can use to bind to that assembly. An assembly's identity consists of the following:</para>
45       <list type="bullet">
46         <item>
47           <para>Simple name.</para>
48         </item>
49         <item>
50           <para>Version number.</para>
51         </item>
52         <item>
53           <para>Cryptographic key pair.</para>
54         </item>
55         <item>
56           <para>Supported culture.</para>
57         </item>
58       </list>
59       <para>The simple name is typically the file name for the manifest file without its extension. The key pair includes a public and private key, used to create strong-name signatures for assemblies.</para>
60       <para>All compilers that support the common language runtime will emit the simple name of a nested class, and reflection constructs a mangled name when queried, in accordance with the following conventions.</para>
61       <list type="table">
62         <listheader>
63           <item>
64             <term>
65               <para>Delimiter </para>
66             </term>
67             <description>
68               <para>Meaning </para>
69             </description>
70           </item>
71         </listheader>
72         <item>
73           <term>
74             <para>Backslash (\) </para>
75           </term>
76           <description>
77             <para>Escape character. </para>
78           </description>
79         </item>
80         <item>
81           <term>
82             <para>Comma (,) </para>
83           </term>
84           <description>
85             <para>Precedes the assembly name. </para>
86           </description>
87         </item>
88         <item>
89           <term>
90             <para>Plus sign (+) </para>
91           </term>
92           <description>
93             <para>Precedes a nested class. </para>
94           </description>
95         </item>
96       </list>
97       <para>For example, the fully qualified name for a class might look like this: </para>
98       <para>ContainingClass+NestedClass,MyAssembly </para>
99       <para> </para>
100       <para>A "++" becomes "\+\+", and a "\" becomes "\\".</para>
101       <para>This qualified name can be persisted and later used to load the <see cref="T:System.Type" />. To search for and load a <see cref="T:System.Type" />, use <see cref="M:System.Type.GetType" /> either with the type name only or with the assembly qualified type name. <see cref="M:System.Type.GetType" /> with the type name only will look for the <see cref="T:System.Type" /> in the caller's assembly and then in the System assembly. <see cref="M:System.Type.GetType" /> with the assembly qualified type name will look for the <see cref="T:System.Type" /> in any assembly.</para>
102       <para>A fully specified <see cref="T:System.Reflection.AssemblyName" /> must have the name, culture, public key or public key token, major version, minor version, build number, and revision number parameters. The last four are packaged in the <see cref="T:System.Version" /> type. </para>
103       <para />
104       <para>To create a simple name, create an <see cref="T:System.Reflection.AssemblyName" /> object using the default constructor and set the <see cref="P:System.Reflection.AssemblyName.Name" />. The other properties are optional.</para>
105       <para>To create a full strong name, create an <see cref="T:System.Reflection.AssemblyName" /> object using the default constructor and set the <see cref="P:System.Reflection.AssemblyName.Name" /> and <see cref="P:System.Reflection.AssemblyName.KeyPair" />. The other properties are optional. Use <see cref="M:System.Reflection.AssemblyName.SetPublicKey(System.Byte[])" /> and <see cref="M:System.Reflection.AssemblyName.SetPublicKeyToken(System.Byte[])" /> to set the public key and the strong name. The strong name signing always uses the <see cref="T:System.Security.Cryptography.SHA1" /> hash algorithm.</para>
106       <para>To ensure that the names are constructed correctly, use the following properties:</para>
107       <list type="bullet">
108         <item>
109           <para>
110             <see cref="P:System.Reflection.Assembly.FullName" />
111           </para>
112         </item>
113         <item>
114           <para>
115             <see cref="P:System.Reflection.AssemblyName.FullName" />
116           </para>
117         </item>
118         <item>
119           <para>
120             <see cref="P:System.Type.AssemblyQualifiedName" />
121           </para>
122         </item>
123       </list>
124       <para>You can also get the name by using the <userInput>/l</userInput> option with the <format type="text/html"><a href="4c7be9c8-72ae-481f-a01c-1a4716806e99">Global Assembly Cache Tool (Gacutil.exe)</a></format></para>
125       <para>For a partially specified strong name, create an <see cref="T:System.Reflection.AssemblyName" /> object using the default constructor and set the name and public key. An assembly created using such an <see cref="T:System.Reflection.AssemblyName" /> can be signed later using the Assembly Linker (Al.exe).</para>
126       <para>It is possible to specify a public key and a <see cref="P:System.Reflection.AssemblyName.KeyPair" /> with inconsistent values. This can be useful in developer scenarios. In this case, the public key retrieved with <see cref="M:System.Reflection.AssemblyName.GetPublicKey" /> specifies the correct public key, while the <see cref="P:System.Reflection.AssemblyName.KeyPair" /> specifies the public and private keys used during development. When the runtime detects a mismatch between the <see cref="P:System.Reflection.AssemblyName.KeyPair" /> and the public key, it looks up in the registry the correct key that matches the public key.</para>
127       <para>The format of the display name of an <see cref="T:System.Reflection.AssemblyName" /> is a comma-delimited Unicode string that begins with the name, as follows: </para>
128       <para>Name &lt;,Culture = CultureInfo&gt; &lt;,Version = Major.Minor.Build.Revision&gt; &lt;, StrongName&gt; &lt;,PublicKeyToken&gt; '\0' </para>
129       <para>Name is the textual name of the assembly. CultureInfo is the RFC1766-format-defined culture. Major, Minor, Build, and Revision are the major version, minor version, build number, and revision number of the assembly. StrongName is the hexadecimal-encoded low-order 64 bits of the hash value of the public key generated using the SHA-1 hashing algorithm and the public key specified by <see cref="M:System.Reflection.AssemblyName.SetPublicKey(System.Byte[])" />. PublicKeyToken is the hexadecimal-encoded public key specified by <see cref="M:System.Reflection.AssemblyName.SetPublicKey(System.Byte[])" />.</para>
130       <para>Hexadecimal encoding is defined as the conversion of each byte of a binary object to two hexadecimal characters, progressing from least to most significant byte. Additional display values will be added as deemed necessary.</para>
131       <para>If the full public key is known, then PublicKey may be substituted for StrongName.</para>
132       <para>Also note that except for Name, which must come first, the lexical order of parameters is unimportant. However, any parameter (Version, Culture, StrongName or PublicKey) not specifically set is considered to be omitted, and the <see cref="T:System.Reflection.AssemblyName" /> is then considered partial. When specifying partial information, Name parameters must be specified in the order described above.</para>
133       <para>When supplying a display name, the convention StrongName =null or PublicKey= null indicates that binding and matching against a simply named assembly is required. Additionally, the convention Culture= "" (double quote representing an empty string) indicates matching against the default culture.</para>
134       <para>The following example shows an <see cref="T:System.Reflection.AssemblyName" /> for a simply named assembly with default culture.</para>
135       <code>ExampleAssembly, Culture=""</code>
136       <para>The following example shows a fully specified reference for a strongly named assembly with culture "en".</para>
137       <code>ExampleAssembly, Version=1.0.0.0, Culture=en, PublicKeyToken=a5d015c7d5a0b012</code>
138     </remarks>
139     <summary>
140       <attribution license="cc4" from="Microsoft" modified="false" />
141       <para>Describes an assembly's unique identity in full.</para>
142     </summary>
143   </Docs>
144   <Members>
145     <Member MemberName=".ctor">
146       <MemberSignature Language="C#" Value="public AssemblyName ();" />
147       <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
148       <MemberType>Constructor</MemberType>
149       <AssemblyInfo>
150         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
151         <AssemblyVersion>2.0.0.0</AssemblyVersion>
152         <AssemblyVersion>4.0.0.0</AssemblyVersion>
153       </AssemblyInfo>
154       <ReturnValue />
155       <Parameters />
156       <Docs>
157         <remarks>To be added</remarks>
158         <summary>
159           <attribution license="cc4" from="Microsoft" modified="false" />
160           <para>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyName" /> class.</para>
161         </summary>
162       </Docs>
163     </Member>
164     <Member MemberName=".ctor">
165       <MemberSignature Language="C#" Value="public AssemblyName (string assemblyName);" />
166       <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string assemblyName) cil managed" />
167       <MemberType>Constructor</MemberType>
168       <AssemblyInfo>
169         <AssemblyVersion>2.0.0.0</AssemblyVersion>
170         <AssemblyVersion>4.0.0.0</AssemblyVersion>
171       </AssemblyInfo>
172       <Parameters>
173         <Parameter Name="assemblyName" Type="System.String" />
174       </Parameters>
175       <Docs>
176         <since version=".NET 2.0" />
177         <remarks>
178           <attribution license="cc4" from="Microsoft" modified="false" />
179           <para>The supplied <paramref name="assemblyName" /> is parsed, and the appropriate fields of the new <see cref="T:System.Reflection.AssemblyName" /> are initialized with values from the display name. This is the recommended way of parsing display names. Writing your own code to parse display names is not recommended. </para>
180         </remarks>
181         <summary>
182           <attribution license="cc4" from="Microsoft" modified="false" />
183           <para>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyName" /> class with the specified display name.</para>
184         </summary>
185         <param name="assemblyName">
186           <attribution license="cc4" from="Microsoft" modified="false" />The display name of the assembly, as returned by the <see cref="P:System.Reflection.AssemblyName.FullName" /> property.</param>
187       </Docs>
188     </Member>
189     <Member MemberName="Clone">
190       <MemberSignature Language="C#" Value="public object Clone ();" />
191       <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance object Clone() cil managed" />
192       <MemberType>Method</MemberType>
193       <AssemblyInfo>
194         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
195         <AssemblyVersion>2.0.0.0</AssemblyVersion>
196         <AssemblyVersion>4.0.0.0</AssemblyVersion>
197       </AssemblyInfo>
198       <ReturnValue>
199         <ReturnType>System.Object</ReturnType>
200       </ReturnValue>
201       <Parameters />
202       <Docs>
203         <remarks>
204           <attribution license="cc4" from="Microsoft" modified="false" />
205           <para>A new object is created, identical to the original.</para>
206         </remarks>
207         <summary>
208           <attribution license="cc4" from="Microsoft" modified="false" />
209           <para>Makes a copy of this <see cref="T:System.Reflection.AssemblyName" /> object.</para>
210         </summary>
211         <returns>
212           <attribution license="cc4" from="Microsoft" modified="false" />
213           <para>An object that is a copy of this <see cref="T:System.Reflection.AssemblyName" /> object.</para>
214         </returns>
215       </Docs>
216     </Member>
217     <Member MemberName="CodeBase">
218       <MemberSignature Language="C#" Value="public string CodeBase { get; set; }" />
219       <MemberSignature Language="ILAsm" Value=".property instance string CodeBase" />
220       <MemberType>Property</MemberType>
221       <AssemblyInfo>
222         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
223         <AssemblyVersion>2.0.0.0</AssemblyVersion>
224         <AssemblyVersion>4.0.0.0</AssemblyVersion>
225       </AssemblyInfo>
226       <ReturnValue>
227         <ReturnType>System.String</ReturnType>
228       </ReturnValue>
229       <Parameters>
230       </Parameters>
231       <Docs>
232         <value>To be added: an object of type 'string'</value>
233         <remarks>
234           <attribution license="cc4" from="Microsoft" modified="false" />
235           <para>When an assembly is loaded, this value can also be obtained using the <see cref="P:System.Reflection.Assembly.CodeBase" /> property. </para>
236           <para>If the assembly was loaded as a byte array, this property returns the location of the caller of the <see cref="M:System.Reflection.Assembly.Load(System.Byte[])" /> method overload, not the location of the loaded assembly.</para>
237           <block subset="none" type="note">
238             <para>Do not use an <see cref="T:System.Reflection.AssemblyName" /> with only the <see cref="P:System.Reflection.AssemblyName.CodeBase" /> property set. The <see cref="P:System.Reflection.AssemblyName.CodeBase" /> property does not supply any elements of the assembly identity (such as name or version), so loading does not occur according to load-by-identity rules, as you would expect from the <see cref="M:System.Reflection.Assembly.Load(System.Reflection.AssemblyName)" /> method. Instead, the assembly is loaded using load-from rules. For information about the disadvantages of using the load-from context, see the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method overload or <format type="text/html"><a href="68d1c539-6a47-4614-ab59-4b071c9d4b4c">Best Practices for Assembly Loading</a></format>.</para>
239           </block>
240         </remarks>
241         <summary>
242           <attribution license="cc4" from="Microsoft" modified="false" />
243           <para>Gets or sets the location of the assembly as a URL.</para>
244         </summary>
245       </Docs>
246     </Member>
247     <Member MemberName="ContentType">
248       <MemberSignature Language="C#" Value="public System.Reflection.AssemblyContentType ContentType { get; set; }" />
249       <MemberSignature Language="ILAsm" Value=".property instance valuetype System.Reflection.AssemblyContentType ContentType" />
250       <MemberType>Property</MemberType>
251       <AssemblyInfo>
252         <AssemblyVersion>4.0.0.0</AssemblyVersion>
253       </AssemblyInfo>
254       <Attributes>
255         <Attribute>
256           <AttributeName>System.Runtime.InteropServices.ComVisible(false)</AttributeName>
257         </Attribute>
258       </Attributes>
259       <ReturnValue>
260         <ReturnType>System.Reflection.AssemblyContentType</ReturnType>
261       </ReturnValue>
262       <Docs>
263         <value>To be added.</value>
264         <remarks>To be added.</remarks>
265         <summary>
266           <attribution license="cc4" from="Microsoft" modified="false" />
267           <para>Gets or sets a value that indicates what type of content the assembly contains.</para>
268         </summary>
269       </Docs>
270     </Member>
271     <Member MemberName="CultureInfo">
272       <MemberSignature Language="C#" Value="public System.Globalization.CultureInfo CultureInfo { get; set; }" />
273       <MemberSignature Language="ILAsm" Value=".property instance class System.Globalization.CultureInfo CultureInfo" />
274       <MemberType>Property</MemberType>
275       <AssemblyInfo>
276         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
277         <AssemblyVersion>2.0.0.0</AssemblyVersion>
278         <AssemblyVersion>4.0.0.0</AssemblyVersion>
279       </AssemblyInfo>
280       <ReturnValue>
281         <ReturnType>System.Globalization.CultureInfo</ReturnType>
282       </ReturnValue>
283       <Parameters>
284       </Parameters>
285       <Docs>
286         <value>To be added: an object of type 'Globalization.CultureInfo'</value>
287         <remarks>To be added</remarks>
288         <summary>
289           <attribution license="cc4" from="Microsoft" modified="false" />
290           <para>Gets or sets the culture supported by the assembly.</para>
291         </summary>
292       </Docs>
293     </Member>
294     <Member MemberName="CultureName">
295       <MemberSignature Language="C#" Value="public string CultureName { get; }" />
296       <MemberSignature Language="ILAsm" Value=".property instance string CultureName" />
297       <MemberType>Property</MemberType>
298       <AssemblyInfo>
299         <AssemblyVersion>4.0.0.0</AssemblyVersion>
300       </AssemblyInfo>
301       <ReturnValue>
302         <ReturnType>System.String</ReturnType>
303       </ReturnValue>
304       <Docs>
305         <value>To be added.</value>
306         <remarks>To be added.</remarks>
307         <summary>
308           <attribution license="cc4" from="Microsoft" modified="false" />
309           <para>Gets or sets the name of the culture associated with the assembly.</para>
310         </summary>
311       </Docs>
312     </Member>
313     <Member MemberName="EscapedCodeBase">
314       <MemberSignature Language="C#" Value="public string EscapedCodeBase { get; }" />
315       <MemberSignature Language="ILAsm" Value=".property instance string EscapedCodeBase" />
316       <MemberType>Property</MemberType>
317       <AssemblyInfo>
318         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
319         <AssemblyVersion>2.0.0.0</AssemblyVersion>
320         <AssemblyVersion>4.0.0.0</AssemblyVersion>
321       </AssemblyInfo>
322       <ReturnValue>
323         <ReturnType>System.String</ReturnType>
324       </ReturnValue>
325       <Docs>
326         <value>To be added: an object of type 'string'</value>
327         <remarks>To be added</remarks>
328         <summary>
329           <attribution license="cc4" from="Microsoft" modified="false" />
330           <para>Gets the URI, including escape characters, that represents the codebase.</para>
331         </summary>
332       </Docs>
333     </Member>
334     <Member MemberName="Flags">
335       <MemberSignature Language="C#" Value="public System.Reflection.AssemblyNameFlags Flags { get; set; }" />
336       <MemberSignature Language="ILAsm" Value=".property instance valuetype System.Reflection.AssemblyNameFlags Flags" />
337       <MemberType>Property</MemberType>
338       <AssemblyInfo>
339         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
340         <AssemblyVersion>2.0.0.0</AssemblyVersion>
341         <AssemblyVersion>4.0.0.0</AssemblyVersion>
342       </AssemblyInfo>
343       <ReturnValue>
344         <ReturnType>System.Reflection.AssemblyNameFlags</ReturnType>
345       </ReturnValue>
346       <Parameters>
347       </Parameters>
348       <Docs>
349         <value>To be added: an object of type 'AssemblyNameFlags'</value>
350         <remarks>To be added</remarks>
351         <summary>
352           <attribution license="cc4" from="Microsoft" modified="false" />
353           <para>Gets or sets the attributes of the assembly.</para>
354         </summary>
355       </Docs>
356     </Member>
357     <Member MemberName="FullName">
358       <MemberSignature Language="C#" Value="public string FullName { get; }" />
359       <MemberSignature Language="ILAsm" Value=".property instance string FullName" />
360       <MemberType>Property</MemberType>
361       <AssemblyInfo>
362         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
363         <AssemblyVersion>2.0.0.0</AssemblyVersion>
364         <AssemblyVersion>4.0.0.0</AssemblyVersion>
365       </AssemblyInfo>
366       <ReturnValue>
367         <ReturnType>System.String</ReturnType>
368       </ReturnValue>
369       <Docs>
370         <value>To be added: an object of type 'string'</value>
371         <remarks>
372           <attribution license="cc4" from="Microsoft" modified="false" />
373           <para>The display name typically consists of the simple name, version number, supported culture, and public key. For example: </para>
374           <code>mylib, Version=1.2.1900.0, Culture=neutral, PublicKeyToken=a14f3033def15840</code>
375           <para>Writing your own code to parse display names is not recommended. Instead, pass the display name to the <see cref="M:System.Reflection.AssemblyName.#ctor(System.String)" /> constructor, which parses it and populates the appropriate fields of the new <see cref="T:System.Reflection.AssemblyName" />. </para>
376           <para>When an assembly is loaded, this value can also be obtained using the <see cref="P:System.Reflection.Assembly.FullName" /> property. </para>
377         </remarks>
378         <summary>
379           <attribution license="cc4" from="Microsoft" modified="false" />
380           <para>Gets the full name of the assembly, also known as the display name.</para>
381         </summary>
382       </Docs>
383     </Member>
384     <Member MemberName="GetAssemblyName">
385       <MemberSignature Language="C#" Value="public static System.Reflection.AssemblyName GetAssemblyName (string assemblyFile);" />
386       <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Reflection.AssemblyName GetAssemblyName(string assemblyFile) cil managed" />
387       <MemberType>Method</MemberType>
388       <AssemblyInfo>
389         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
390         <AssemblyVersion>2.0.0.0</AssemblyVersion>
391         <AssemblyVersion>4.0.0.0</AssemblyVersion>
392       </AssemblyInfo>
393       <ReturnValue>
394         <ReturnType>System.Reflection.AssemblyName</ReturnType>
395       </ReturnValue>
396       <Parameters>
397         <Parameter Name="assemblyFile" Type="System.String" />
398       </Parameters>
399       <Docs>
400         <remarks>
401           <attribution license="cc4" from="Microsoft" modified="false" />
402           <para>This will only work if the file contains an assembly manifest. This method causes the file to be opened and closed, but the assembly is not added to this domain.</para>
403         </remarks>
404         <summary>
405           <attribution license="cc4" from="Microsoft" modified="false" />
406           <para>Gets the <see cref="T:System.Reflection.AssemblyName" /> for a given file.</para>
407         </summary>
408         <returns>
409           <attribution license="cc4" from="Microsoft" modified="false" />
410           <para>An object that represents the given assembly file.</para>
411         </returns>
412         <param name="assemblyFile">
413           <attribution license="cc4" from="Microsoft" modified="false" />The path for the assembly whose <see cref="T:System.Reflection.AssemblyName" /> is to be returned. </param>
414       </Docs>
415     </Member>
416     <Member MemberName="GetObjectData">
417       <MemberSignature Language="C#" Value="public void GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
418       <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void GetObjectData(class System.Runtime.Serialization.SerializationInfo info, valuetype System.Runtime.Serialization.StreamingContext context) cil managed" />
419       <MemberType>Method</MemberType>
420       <AssemblyInfo>
421         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
422         <AssemblyVersion>2.0.0.0</AssemblyVersion>
423         <AssemblyVersion>4.0.0.0</AssemblyVersion>
424       </AssemblyInfo>
425       <ReturnValue>
426         <ReturnType>System.Void</ReturnType>
427       </ReturnValue>
428       <Parameters>
429         <Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
430         <Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
431       </Parameters>
432       <Docs>
433         <remarks>To be added</remarks>
434         <summary>
435           <attribution license="cc4" from="Microsoft" modified="false" />
436           <para>Gets serialization information with all the data needed to recreate an instance of this AssemblyName.</para>
437         </summary>
438         <param name="info">
439           <attribution license="cc4" from="Microsoft" modified="false" />The object to be populated with serialization information. </param>
440         <param name="context">
441           <attribution license="cc4" from="Microsoft" modified="false" />The destination context of the serialization. </param>
442       </Docs>
443     </Member>
444     <Member MemberName="GetPublicKey">
445       <MemberSignature Language="C#" Value="public byte[] GetPublicKey ();" />
446       <MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8[] GetPublicKey() cil managed" />
447       <MemberType>Method</MemberType>
448       <AssemblyInfo>
449         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
450         <AssemblyVersion>2.0.0.0</AssemblyVersion>
451         <AssemblyVersion>4.0.0.0</AssemblyVersion>
452       </AssemblyInfo>
453       <ReturnValue>
454         <ReturnType>System.Byte[]</ReturnType>
455       </ReturnValue>
456       <Parameters />
457       <Docs>
458         <remarks>To be added</remarks>
459         <summary>
460           <attribution license="cc4" from="Microsoft" modified="false" />
461           <para>Gets the public key of the assembly.</para>
462         </summary>
463         <returns>
464           <attribution license="cc4" from="Microsoft" modified="false" />
465           <para>A byte array that contains the public key of the assembly.</para>
466         </returns>
467       </Docs>
468     </Member>
469     <Member MemberName="GetPublicKeyToken">
470       <MemberSignature Language="C#" Value="public byte[] GetPublicKeyToken ();" />
471       <MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8[] GetPublicKeyToken() cil managed" />
472       <MemberType>Method</MemberType>
473       <AssemblyInfo>
474         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
475         <AssemblyVersion>2.0.0.0</AssemblyVersion>
476         <AssemblyVersion>4.0.0.0</AssemblyVersion>
477       </AssemblyInfo>
478       <ReturnValue>
479         <ReturnType>System.Byte[]</ReturnType>
480       </ReturnValue>
481       <Parameters />
482       <Docs>
483         <remarks>To be added</remarks>
484         <summary>
485           <attribution license="cc4" from="Microsoft" modified="false" />
486           <para>Gets the public key token, which is the last 8 bytes of the SHA-1 hash of the public key under which the application or assembly is signed.</para>
487         </summary>
488         <returns>
489           <attribution license="cc4" from="Microsoft" modified="false" />
490           <para>A byte array that contains the public key token.</para>
491         </returns>
492       </Docs>
493     </Member>
494     <Member MemberName="HashAlgorithm">
495       <MemberSignature Language="C#" Value="public System.Configuration.Assemblies.AssemblyHashAlgorithm HashAlgorithm { get; set; }" />
496       <MemberSignature Language="ILAsm" Value=".property instance valuetype System.Configuration.Assemblies.AssemblyHashAlgorithm HashAlgorithm" />
497       <MemberType>Property</MemberType>
498       <AssemblyInfo>
499         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
500         <AssemblyVersion>2.0.0.0</AssemblyVersion>
501         <AssemblyVersion>4.0.0.0</AssemblyVersion>
502       </AssemblyInfo>
503       <ReturnValue>
504         <ReturnType>System.Configuration.Assemblies.AssemblyHashAlgorithm</ReturnType>
505       </ReturnValue>
506       <Parameters>
507       </Parameters>
508       <Docs>
509         <value>To be added: an object of type 'Configuration.Assemblies.AssemblyHashAlgorithm'</value>
510         <remarks>
511           <attribution license="cc4" from="Microsoft" modified="false" />
512           <block subset="none" type="note">
513             <para>Starting with the net_v40_long, the <see cref="P:System.Reflection.AssemblyName.HashAlgorithm" /> property of an <see cref="T:System.Reflection.AssemblyName" /> object that is returned by the <see cref="M:System.Reflection.Assembly.GetReferencedAssemblies" /> method is <see cref="F:System.Configuration.Assemblies.AssemblyHashAlgorithm.None" /> if there is no hash algorithm for the referenced assembly, or if the hash algorithm of the referenced assembly is not identified by the <see cref="T:System.Configuration.Assemblies.AssemblyHashAlgorithm" /> enumeration. In previous versions of the .NET Framework, the <see cref="P:System.Reflection.AssemblyName.HashAlgorithm" /> property returned <see cref="F:System.Configuration.Assemblies.AssemblyHashAlgorithm.SHA1" /> in this situation. </para>
514           </block>
515         </remarks>
516         <summary>
517           <attribution license="cc4" from="Microsoft" modified="false" />
518           <para>Gets or sets the hash algorithm used by the assembly manifest.</para>
519         </summary>
520       </Docs>
521     </Member>
522     <Member MemberName="KeyPair">
523       <MemberSignature Language="C#" Value="public System.Reflection.StrongNameKeyPair KeyPair { get; set; }" />
524       <MemberSignature Language="ILAsm" Value=".property instance class System.Reflection.StrongNameKeyPair KeyPair" />
525       <MemberType>Property</MemberType>
526       <AssemblyInfo>
527         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
528         <AssemblyVersion>2.0.0.0</AssemblyVersion>
529         <AssemblyVersion>4.0.0.0</AssemblyVersion>
530       </AssemblyInfo>
531       <ReturnValue>
532         <ReturnType>System.Reflection.StrongNameKeyPair</ReturnType>
533       </ReturnValue>
534       <Parameters>
535       </Parameters>
536       <Docs>
537         <value>To be added: an object of type 'StrongNameKeyPair'</value>
538         <remarks>
539           <attribution license="cc4" from="Microsoft" modified="false" />
540           <para>When the runtime loads an assembly, it does not set the <see cref="P:System.Reflection.AssemblyName.KeyPair" /> property. The getter for the property is only useful if the user set the property before using the <see cref="T:System.Reflection.AssemblyName" /> object to create a dynamic assembly, and subsequently wants to retrieve the key pair.</para>
541         </remarks>
542         <summary>
543           <attribution license="cc4" from="Microsoft" modified="false" />
544           <para>Gets or sets the public and private cryptographic key pair that is used to create a strong name signature for the assembly.</para>
545         </summary>
546       </Docs>
547     </Member>
548     <Member MemberName="Name">
549       <MemberSignature Language="C#" Value="public string Name { get; set; }" />
550       <MemberSignature Language="ILAsm" Value=".property instance string Name" />
551       <MemberType>Property</MemberType>
552       <AssemblyInfo>
553         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
554         <AssemblyVersion>2.0.0.0</AssemblyVersion>
555         <AssemblyVersion>4.0.0.0</AssemblyVersion>
556       </AssemblyInfo>
557       <ReturnValue>
558         <ReturnType>System.String</ReturnType>
559       </ReturnValue>
560       <Parameters>
561       </Parameters>
562       <Docs>
563         <value>To be added: an object of type 'string'</value>
564         <remarks>
565           <attribution license="cc4" from="Microsoft" modified="false" />
566           <para>The manifest file is the file that contains the assembly manifest.</para>
567           <para>For example, the simple name of a single-file assembly named "MyAssembly.dll" is "MyAssembly".</para>
568         </remarks>
569         <summary>
570           <attribution license="cc4" from="Microsoft" modified="false" />
571           <para>Gets or sets the simple name of the assembly. This is usually, but not necessarily, the file name of the manifest file of the assembly, minus its extension.</para>
572         </summary>
573       </Docs>
574     </Member>
575     <Member MemberName="OnDeserialization">
576       <MemberSignature Language="C#" Value="public void OnDeserialization (object sender);" />
577       <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnDeserialization(object sender) cil managed" />
578       <MemberType>Method</MemberType>
579       <AssemblyInfo>
580         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
581         <AssemblyVersion>2.0.0.0</AssemblyVersion>
582         <AssemblyVersion>4.0.0.0</AssemblyVersion>
583       </AssemblyInfo>
584       <ReturnValue>
585         <ReturnType>System.Void</ReturnType>
586       </ReturnValue>
587       <Parameters>
588         <Parameter Name="sender" Type="System.Object" />
589       </Parameters>
590       <Docs>
591         <remarks>To be added</remarks>
592         <summary>
593           <attribution license="cc4" from="Microsoft" modified="false" />
594           <para>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and is called back by the deserialization event when deserialization is complete.</para>
595         </summary>
596         <param name="sender">
597           <attribution license="cc4" from="Microsoft" modified="false" />The source of the deserialization event. </param>
598       </Docs>
599     </Member>
600     <Member MemberName="ProcessorArchitecture">
601       <MemberSignature Language="C#" Value="public System.Reflection.ProcessorArchitecture ProcessorArchitecture { get; set; }" />
602       <MemberSignature Language="ILAsm" Value=".property instance valuetype System.Reflection.ProcessorArchitecture ProcessorArchitecture" />
603       <MemberType>Property</MemberType>
604       <AssemblyInfo>
605         <AssemblyVersion>2.0.0.0</AssemblyVersion>
606         <AssemblyVersion>4.0.0.0</AssemblyVersion>
607       </AssemblyInfo>
608       <ReturnValue>
609         <ReturnType>System.Reflection.ProcessorArchitecture</ReturnType>
610       </ReturnValue>
611       <Docs>
612         <value>To be added.</value>
613         <since version=".NET 2.0" />
614         <remarks>
615           <attribution license="cc4" from="Microsoft" modified="false" />
616           <para>Beginning with the net_v40_long, this property always returns <see cref="F:System.Reflection.ProcessorArchitecture.None" /> for reference assemblies.</para>
617         </remarks>
618         <summary>
619           <attribution license="cc4" from="Microsoft" modified="false" />
620           <para>Gets or sets a value that identifies the processor and bits-per-word of the platform targeted by an executable.</para>
621         </summary>
622       </Docs>
623     </Member>
624     <Member MemberName="ReferenceMatchesDefinition">
625       <MemberSignature Language="C#" Value="public static bool ReferenceMatchesDefinition (System.Reflection.AssemblyName reference, System.Reflection.AssemblyName definition);" />
626       <MemberSignature Language="ILAsm" Value=".method public static hidebysig bool ReferenceMatchesDefinition(class System.Reflection.AssemblyName reference, class System.Reflection.AssemblyName definition) cil managed" />
627       <MemberType>Method</MemberType>
628       <AssemblyInfo>
629         <AssemblyVersion>2.0.0.0</AssemblyVersion>
630         <AssemblyVersion>4.0.0.0</AssemblyVersion>
631       </AssemblyInfo>
632       <ReturnValue>
633         <ReturnType>System.Boolean</ReturnType>
634       </ReturnValue>
635       <Parameters>
636         <Parameter Name="reference" Type="System.Reflection.AssemblyName" />
637         <Parameter Name="definition" Type="System.Reflection.AssemblyName" />
638       </Parameters>
639       <Docs>
640         <remarks>
641           <attribution license="cc4" from="Microsoft" modified="false" />
642           <para>The comparison depends only on the simple assembly name. It ignores version, culture, and public key token.  </para>
643         </remarks>
644         <summary>
645           <attribution license="cc4" from="Microsoft" modified="false" />
646           <para>Returns a value indicating whether two assembly names are the same. The comparison is based on the simple assembly names.</para>
647         </summary>
648         <returns>
649           <attribution license="cc4" from="Microsoft" modified="false" />
650           <para>true if the simple assembly names are the same; otherwise, false.</para>
651         </returns>
652         <param name="reference">
653           <attribution license="cc4" from="Microsoft" modified="false" />The reference assembly name.</param>
654         <param name="definition">
655           <attribution license="cc4" from="Microsoft" modified="false" />The assembly name that is compared to the reference assembly.</param>
656       </Docs>
657     </Member>
658     <Member MemberName="SetPublicKey">
659       <MemberSignature Language="C#" Value="public void SetPublicKey (byte[] publicKey);" />
660       <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void SetPublicKey(unsigned int8[] publicKey) cil managed" />
661       <MemberType>Method</MemberType>
662       <AssemblyInfo>
663         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
664         <AssemblyVersion>2.0.0.0</AssemblyVersion>
665         <AssemblyVersion>4.0.0.0</AssemblyVersion>
666       </AssemblyInfo>
667       <ReturnValue>
668         <ReturnType>System.Void</ReturnType>
669       </ReturnValue>
670       <Parameters>
671         <Parameter Name="publicKey" Type="System.Byte[]" />
672       </Parameters>
673       <Docs>
674         <remarks>
675           <attribution license="cc4" from="Microsoft" modified="false" />
676           <para>You must also use the <see cref="M:System.Reflection.AssemblyName.SetPublicKeyToken(System.Byte[])" /> method to provide a public key token. Otherwise, a <see cref="T:System.Security.SecurityException" /> is thrown when the <see cref="M:System.Reflection.AssemblyName.GetPublicKey" /> method is called.</para>
677         </remarks>
678         <summary>
679           <attribution license="cc4" from="Microsoft" modified="false" />
680           <para>Sets the public key identifying the assembly.</para>
681         </summary>
682         <param name="publicKey">
683           <attribution license="cc4" from="Microsoft" modified="false" />A byte array containing the public key of the assembly. </param>
684       </Docs>
685     </Member>
686     <Member MemberName="SetPublicKeyToken">
687       <MemberSignature Language="C#" Value="public void SetPublicKeyToken (byte[] publicKeyToken);" />
688       <MemberSignature Language="ILAsm" Value=".method public hidebysig instance void SetPublicKeyToken(unsigned int8[] publicKeyToken) cil managed" />
689       <MemberType>Method</MemberType>
690       <AssemblyInfo>
691         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
692         <AssemblyVersion>2.0.0.0</AssemblyVersion>
693         <AssemblyVersion>4.0.0.0</AssemblyVersion>
694       </AssemblyInfo>
695       <ReturnValue>
696         <ReturnType>System.Void</ReturnType>
697       </ReturnValue>
698       <Parameters>
699         <Parameter Name="publicKeyToken" Type="System.Byte[]" />
700       </Parameters>
701       <Docs>
702         <remarks>
703           <attribution license="cc4" from="Microsoft" modified="false" />
704           <para>When you set the public key by calling the <see cref="M:System.Reflection.AssemblyName.SetPublicKey(System.Byte[])" /> method, you must also use the <see cref="M:System.Reflection.AssemblyName.SetPublicKeyToken(System.Byte[])" /> method to provide a public key token. Otherwise, a <see cref="T:System.Security.SecurityException" /> is thrown when the <see cref="M:System.Reflection.AssemblyName.GetPublicKey" /> method is called.</para>
705         </remarks>
706         <summary>
707           <attribution license="cc4" from="Microsoft" modified="false" />
708           <para>Sets the public key token, which is the last 8 bytes of the SHA-1 hash of the public key under which the application or assembly is signed.</para>
709         </summary>
710         <param name="publicKeyToken">
711           <attribution license="cc4" from="Microsoft" modified="false" />A byte array containing the public key token of the assembly. </param>
712       </Docs>
713     </Member>
714     <Member MemberName="System.Runtime.InteropServices._AssemblyName.GetIDsOfNames">
715       <MemberSignature Language="C#" Value="void _AssemblyName.GetIDsOfNames (ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId);" />
716       <MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Runtime.InteropServices._AssemblyName.GetIDsOfNames(valuetype System.Guid riid, native int rgszNames, unsigned int32 cNames, unsigned int32 lcid, native int rgDispId) cil managed" />
717       <MemberType>Method</MemberType>
718       <AssemblyInfo>
719         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
720         <AssemblyVersion>2.0.0.0</AssemblyVersion>
721         <AssemblyVersion>4.0.0.0</AssemblyVersion>
722       </AssemblyInfo>
723       <ReturnValue>
724         <ReturnType>System.Void</ReturnType>
725       </ReturnValue>
726       <Parameters>
727         <Parameter Name="riid" Type="System.Guid&amp;" RefType="ref" />
728         <Parameter Name="rgszNames" Type="System.IntPtr" />
729         <Parameter Name="cNames" Type="System.UInt32" />
730         <Parameter Name="lcid" Type="System.UInt32" />
731         <Parameter Name="rgDispId" Type="System.IntPtr" />
732       </Parameters>
733       <Docs>
734         <param name="riid">To be added.</param>
735         <param name="rgszNames">To be added.</param>
736         <param name="cNames">To be added.</param>
737         <param name="lcid">To be added.</param>
738         <param name="rgDispId">To be added.</param>
739         <summary>To be added.</summary>
740         <remarks>To be added.</remarks>
741       </Docs>
742     </Member>
743     <Member MemberName="System.Runtime.InteropServices._AssemblyName.GetTypeInfo">
744       <MemberSignature Language="C#" Value="void _AssemblyName.GetTypeInfo (uint iTInfo, uint lcid, IntPtr ppTInfo);" />
745       <MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Runtime.InteropServices._AssemblyName.GetTypeInfo(unsigned int32 iTInfo, unsigned int32 lcid, native int ppTInfo) cil managed" />
746       <MemberType>Method</MemberType>
747       <AssemblyInfo>
748         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
749         <AssemblyVersion>2.0.0.0</AssemblyVersion>
750         <AssemblyVersion>4.0.0.0</AssemblyVersion>
751       </AssemblyInfo>
752       <ReturnValue>
753         <ReturnType>System.Void</ReturnType>
754       </ReturnValue>
755       <Parameters>
756         <Parameter Name="iTInfo" Type="System.UInt32" />
757         <Parameter Name="lcid" Type="System.UInt32" />
758         <Parameter Name="ppTInfo" Type="System.IntPtr" />
759       </Parameters>
760       <Docs>
761         <remarks>
762           <attribution license="cc4" from="Microsoft" modified="false" />
763           <para>This method is for access to managed classes from unmanaged code, and should not be called from managed code. For more information about <unmanagedCodeEntityReference>IDispatch::GetTypeInfo</unmanagedCodeEntityReference>, see the MSDN Library.</para>
764         </remarks>
765         <summary>
766           <attribution license="cc4" from="Microsoft" modified="false" />
767           <para>Retrieves the type information for an object, which can then be used to get the type information for an interface.</para>
768         </summary>
769         <param name="iTInfo">
770           <attribution license="cc4" from="Microsoft" modified="false" />The type information to return.</param>
771         <param name="lcid">
772           <attribution license="cc4" from="Microsoft" modified="false" />The locale identifier for the type information.</param>
773         <param name="ppTInfo">
774           <attribution license="cc4" from="Microsoft" modified="false" />Receives a pointer to the requested type information object.</param>
775       </Docs>
776     </Member>
777     <Member MemberName="System.Runtime.InteropServices._AssemblyName.GetTypeInfoCount">
778       <MemberSignature Language="C#" Value="void _AssemblyName.GetTypeInfoCount (out uint pcTInfo);" />
779       <MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Runtime.InteropServices._AssemblyName.GetTypeInfoCount(unsigned int32 pcTInfo) cil managed" />
780       <MemberType>Method</MemberType>
781       <AssemblyInfo>
782         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
783         <AssemblyVersion>2.0.0.0</AssemblyVersion>
784         <AssemblyVersion>4.0.0.0</AssemblyVersion>
785       </AssemblyInfo>
786       <ReturnValue>
787         <ReturnType>System.Void</ReturnType>
788       </ReturnValue>
789       <Parameters>
790         <Parameter Name="pcTInfo" Type="System.UInt32&amp;" RefType="out" />
791       </Parameters>
792       <Docs>
793         <param name="pcTInfo">To be added.</param>
794         <summary>To be added.</summary>
795         <remarks>To be added.</remarks>
796       </Docs>
797     </Member>
798     <Member MemberName="System.Runtime.InteropServices._AssemblyName.Invoke">
799       <MemberSignature Language="C#" Value="void _AssemblyName.Invoke (uint dispIdMember, ref Guid riid, uint lcid, short wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr);" />
800       <MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Runtime.InteropServices._AssemblyName.Invoke(unsigned int32 dispIdMember, valuetype System.Guid riid, unsigned int32 lcid, int16 wFlags, native int pDispParams, native int pVarResult, native int pExcepInfo, native int puArgErr) cil managed" />
801       <MemberType>Method</MemberType>
802       <AssemblyInfo>
803         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
804         <AssemblyVersion>2.0.0.0</AssemblyVersion>
805         <AssemblyVersion>4.0.0.0</AssemblyVersion>
806       </AssemblyInfo>
807       <ReturnValue>
808         <ReturnType>System.Void</ReturnType>
809       </ReturnValue>
810       <Parameters>
811         <Parameter Name="dispIdMember" Type="System.UInt32" />
812         <Parameter Name="riid" Type="System.Guid&amp;" RefType="ref" />
813         <Parameter Name="lcid" Type="System.UInt32" />
814         <Parameter Name="wFlags" Type="System.Int16" />
815         <Parameter Name="pDispParams" Type="System.IntPtr" />
816         <Parameter Name="pVarResult" Type="System.IntPtr" />
817         <Parameter Name="pExcepInfo" Type="System.IntPtr" />
818         <Parameter Name="puArgErr" Type="System.IntPtr" />
819       </Parameters>
820       <Docs>
821         <param name="dispIdMember">To be added.</param>
822         <param name="riid">To be added.</param>
823         <param name="lcid">To be added.</param>
824         <param name="wFlags">To be added.</param>
825         <param name="pDispParams">To be added.</param>
826         <param name="pVarResult">To be added.</param>
827         <param name="pExcepInfo">To be added.</param>
828         <param name="puArgErr">To be added.</param>
829         <summary>To be added.</summary>
830         <remarks>To be added.</remarks>
831       </Docs>
832     </Member>
833     <Member MemberName="ToString">
834       <MemberSignature Language="C#" Value="public override string ToString ();" />
835       <MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />
836       <MemberType>Method</MemberType>
837       <AssemblyInfo>
838         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
839         <AssemblyVersion>2.0.0.0</AssemblyVersion>
840         <AssemblyVersion>4.0.0.0</AssemblyVersion>
841       </AssemblyInfo>
842       <ReturnValue>
843         <ReturnType>System.String</ReturnType>
844       </ReturnValue>
845       <Parameters />
846       <Docs>
847         <remarks>
848           <attribution license="cc4" from="Microsoft" modified="false" />
849           <para>See the description of <see cref="T:System.Reflection.AssemblyName" /> for the format of the returned string.</para>
850         </remarks>
851         <summary>
852           <attribution license="cc4" from="Microsoft" modified="false" />
853           <para>Returns the full name of the assembly, also known as the display name.</para>
854         </summary>
855         <returns>
856           <attribution license="cc4" from="Microsoft" modified="false" />
857           <para>The full name of the assembly, or the class name if the full name cannot be determined.</para>
858         </returns>
859       </Docs>
860     </Member>
861     <Member MemberName="Version">
862       <MemberSignature Language="C#" Value="public Version Version { get; set; }" />
863       <MemberSignature Language="ILAsm" Value=".property instance class System.Version Version" />
864       <MemberType>Property</MemberType>
865       <AssemblyInfo>
866         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
867         <AssemblyVersion>2.0.0.0</AssemblyVersion>
868         <AssemblyVersion>4.0.0.0</AssemblyVersion>
869       </AssemblyInfo>
870       <ReturnValue>
871         <ReturnType>System.Version</ReturnType>
872       </ReturnValue>
873       <Parameters>
874       </Parameters>
875       <Docs>
876         <value>To be added: an object of type 'Version'</value>
877         <remarks>
878           <attribution license="cc4" from="Microsoft" modified="false" />
879           <para>All components of the version must be integers greater than or equal to zero. Metadata restricts the major, minor, build, and revision components for an assembly to a maximum value of <see cref="F:System.UInt16.MaxValue" /> - 1. If a component exceeds this value, no error is thrown; however, in a dynamic assembly, that component is zero.</para>
880         </remarks>
881         <summary>
882           <attribution license="cc4" from="Microsoft" modified="false" />
883           <para>Gets or sets the major, minor, build, and revision numbers of the assembly.</para>
884         </summary>
885       </Docs>
886     </Member>
887     <Member MemberName="VersionCompatibility">
888       <MemberSignature Language="C#" Value="public System.Configuration.Assemblies.AssemblyVersionCompatibility VersionCompatibility { get; set; }" />
889       <MemberSignature Language="ILAsm" Value=".property instance valuetype System.Configuration.Assemblies.AssemblyVersionCompatibility VersionCompatibility" />
890       <MemberType>Property</MemberType>
891       <AssemblyInfo>
892         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
893         <AssemblyVersion>2.0.0.0</AssemblyVersion>
894         <AssemblyVersion>4.0.0.0</AssemblyVersion>
895       </AssemblyInfo>
896       <ReturnValue>
897         <ReturnType>System.Configuration.Assemblies.AssemblyVersionCompatibility</ReturnType>
898       </ReturnValue>
899       <Parameters>
900       </Parameters>
901       <Docs>
902         <value>To be added: an object of type 'Configuration.Assemblies.AssemblyVersionCompatibility'</value>
903         <remarks>
904           <attribution license="cc4" from="Microsoft" modified="false" />
905           <para>
906             <see cref="P:System.Reflection.AssemblyName.VersionCompatibility" /> information indicates, for example, that the assembly cannot execute side-by-side with other versions due to conflicts over a device driver.</para>
907           <para>Currently, <see cref="P:System.Reflection.AssemblyName.VersionCompatibility" /> always returns <see cref="F:System.Configuration.Assemblies.AssemblyVersionCompatibility.SameMachine" />, and is not used by the loader. This property is reserved for a future feature.</para>
908         </remarks>
909         <summary>
910           <attribution license="cc4" from="Microsoft" modified="false" />
911           <para>Gets or sets the information related to the assembly's compatibility with other assemblies.</para>
912         </summary>
913       </Docs>
914     </Member>
915   </Members>
916 </Type>