AppDomainInitializer Delegate
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public Delegate Sub AppDomainInitializer ( _ args As String() _ ) 'Usage Dim instance As New AppDomainInitializer(AddressOf HandlerMethod)
/** @delegate */ /** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public delegate void AppDomainInitializer ( String[] args )
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- args
An array of strings to pass as arguments to the callback method.
Use an AppDomainInitializer delegate to specify the callback method to invoke when an instance of the AppDomain class is initialized.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.