Fix null sessions in HttpContextWrapper.Session
[mono.git] / mcs / class / corlib / Documentation / en / System / TypeUnloadedException.xml
1 <Type Name="TypeUnloadedException" FullName="System.TypeUnloadedException" FullNameSP="System_TypeUnloadedException" Maintainer="ecma">
2   <TypeSignature Language="ILASM" Value=".class public serializable TypeUnloadedException extends System.SystemException" />
3   <TypeSignature Language="C#" Value="public class TypeUnloadedException : SystemException" />
4   <MemberOfLibrary>RuntimeInfrastructure</MemberOfLibrary>
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   <ThreadingSafetyStatement>All public static members of this type are safe for multithreaded operations. No instance members are guaranteed to be thread safe.</ThreadingSafetyStatement>
13   <Base>
14     <BaseTypeName>System.SystemException</BaseTypeName>
15   </Base>
16   <Interfaces />
17   <Docs>
18     <summary>
19       <para> Represents the error that occurs when there is 
20       an attempt to access a <see cref="T:System.Type" /> that has been unloaded.</para>
21     </summary>
22     <remarks>To be added.</remarks>
23   </Docs>
24   <Members>
25     <Member MemberName=".ctor">
26       <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor()" />
27       <MemberSignature Language="C#" Value="public TypeUnloadedException ();" />
28       <MemberType>Constructor</MemberType>
29       <ReturnValue />
30       <Parameters />
31       <Docs>
32         <summary>
33           <para>Constructs and initializes a new instance of the <see cref="T:System.TypeUnloadedException" />
34 class.</para>
35         </summary>
36         <remarks>
37           <para>This constructor initializes the <see cref="!:System.TypeUnloadedException.Message" /> property of the
38    new instance to a system-supplied message that describes the error, such as
39    "Type has been unloaded." This message takes into account the current system
40    culture.</para>
41           <para>The <see cref="!:System.TypeUnloadedException.InnerException" /> property of the new instance is initialized to
42 <see langword="null" /> .</para>
43         </remarks>
44       </Docs>
45       <Excluded>0</Excluded>
46       <AssemblyInfo>
47         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
48         <AssemblyVersion>2.0.0.0</AssemblyVersion>
49         <AssemblyVersion>4.0.0.0</AssemblyVersion>
50       </AssemblyInfo>
51     </Member>
52     <Member MemberName=".ctor">
53       <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(string message)" />
54       <MemberSignature Language="C#" Value="public TypeUnloadedException (string message);" />
55       <MemberType>Constructor</MemberType>
56       <ReturnValue />
57       <Parameters>
58         <Parameter Name="message" Type="System.String" />
59       </Parameters>
60       <Docs>
61         <param name="message">A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
62         <summary>
63           <para>Constructs and initializes a new instance of the <see cref="T:System.TypeUnloadedException" />
64 class.</para>
65         </summary>
66         <remarks>
67           <para>This constructor initializes the <see cref="!:System.TypeUnloadedException.Message" /> property of the
68    new instance using <paramref name="message" />. If <paramref name="message" /> is
69 <see langword="null" />, the <see cref="!:System.TypeUnloadedException.Message" /> property is initialized to the 
70    system-supplied message provided by the constructor that takes no
71    arguments. </para>
72           <para> The <see cref="!:System.TypeUnloadedException.InnerException" /> property of the new
73 instance is initialized to
74 <see langword="null" /> .</para>
75         </remarks>
76       </Docs>
77       <Excluded>0</Excluded>
78       <AssemblyInfo>
79         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
80         <AssemblyVersion>2.0.0.0</AssemblyVersion>
81         <AssemblyVersion>4.0.0.0</AssemblyVersion>
82       </AssemblyInfo>
83     </Member>
84     <Member MemberName=".ctor">
85       <MemberSignature Language="C#" Value="protected TypeUnloadedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" />
86       <MemberType>Constructor</MemberType>
87       <Parameters>
88         <Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" />
89         <Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" />
90       </Parameters>
91       <Docs>
92         <param name="info">To be added.</param>
93         <param name="context">To be added.</param>
94         <summary>To be added.</summary>
95         <remarks>To be added.</remarks>
96       </Docs>
97       <AssemblyInfo>
98         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
99         <AssemblyVersion>2.0.0.0</AssemblyVersion>
100         <AssemblyVersion>4.0.0.0</AssemblyVersion>
101       </AssemblyInfo>
102     </Member>
103     <Member MemberName=".ctor">
104       <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(string message, class System.Exception innerException)" />
105       <MemberSignature Language="C#" Value="public TypeUnloadedException (string message, Exception innerException);" />
106       <MemberType>Constructor</MemberType>
107       <ReturnValue />
108       <Parameters>
109         <Parameter Name="message" Type="System.String" />
110         <Parameter Name="innerException" Type="System.Exception" />
111       </Parameters>
112       <Docs>
113         <param name="message">A <see cref="T:System.String" /> that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
114         <param name="innerException">An instance of <see cref="T:System.Exception" /> that is the cause of the current exception. If <paramref name="innerException" /> is non-null, then the current Exception was raised in a catch block handling <paramref name="innerException" />.</param>
115         <summary>
116           <para>Constructs and initializes a new instance of the <see cref="T:System.TypeUnloadedException" /> class.</para>
117         </summary>
118         <remarks>
119           <para>This constructor initializes the <see cref="!:System.TypeUnloadedException.Message" /> property of
120    the new instance using <paramref name="message" /> and the <see cref="!:System.TypeUnloadedException.InnerException" /> property using <paramref name="innerException" />. If <paramref name="message" /> is
121 <see langword="null" />, the <see cref="!:System.TypeUnloadedException.Message" /> property is initialized to the 
122    system-supplied message provided by the constructor that takes no arguments.</para>
123           <para>
124             <block subset="none" type="note">For more
125    information on inner exceptions, see <see cref="P:System.Exception.InnerException" />.</block>
126           </para>
127         </remarks>
128       </Docs>
129       <Excluded>0</Excluded>
130       <AssemblyInfo>
131         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
132         <AssemblyVersion>2.0.0.0</AssemblyVersion>
133         <AssemblyVersion>4.0.0.0</AssemblyVersion>
134       </AssemblyInfo>
135     </Member>
136   </Members>
137   <TypeExcluded>0</TypeExcluded>
138   <Attributes>
139     <Attribute>
140       <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
141     </Attribute>
142   </Attributes>
143 </Type>