-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathAppDomainInitializer.xml
45 lines (43 loc) · 2.09 KB
/
AppDomainInitializer.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Type Name="AppDomainInitializer" FullName="System.AppDomainInitializer">
<TypeSignature Language="C#" Value="public delegate void AppDomainInitializer(string[] args);" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi serializable sealed AppDomainInitializer extends System.MulticastDelegate" />
<TypeSignature Language="DocId" Value="T:System.AppDomainInitializer" />
<TypeSignature Language="VB.NET" Value="Public Delegate Sub AppDomainInitializer(args As String())" />
<TypeSignature Language="F#" Value="type AppDomainInitializer = delegate of string[] -> unit" />
<TypeSignature Language="C++ CLI" Value="public delegate void AppDomainInitializer(cli::array <System::String ^> ^ args);" />
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Delegate</BaseTypeName>
</Base>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.InteropServices.ComVisible(true)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.InteropServices.ComVisible(true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Serializable]</AttributeName>
<AttributeName Language="F#">[<System.Serializable>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="args" Type="System.String[]" />
</Parameters>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Docs>
<param name="args">An array of strings to pass as arguments to the callback method.</param>
<summary>Represents the callback method to invoke when the application domain is initialized.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
Use an <xref:System.AppDomainInitializer> delegate to specify the callback method to invoke when an instance of the <xref:System.AppDomain> class is initialized.
]]></format>
</remarks>
</Docs>
</Type>