Edit

Share via


AppDomainManagerInitializationOptions Enum

Definition

Specifies the action that a custom application ___domain manager takes when initializing a new ___domain.

This enumeration supports a bitwise combination of its member values.

public enum class AppDomainManagerInitializationOptions
[System.Flags]
[System.Runtime.InteropServices.ComVisible(true)]
public enum AppDomainManagerInitializationOptions
[<System.Flags>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type AppDomainManagerInitializationOptions = 
Public Enum AppDomainManagerInitializationOptions
Inheritance
AppDomainManagerInitializationOptions
Attributes

Fields

Name Value Description
None 0

No initialization action.

RegisterWithHost 1

Register the COM callable wrapper for the current AppDomainManager with the unmanaged host.

Remarks

These flags are used for property settings in the AppDomainManager class. The AppDomainManagerInitializationOptions flags apply only to custom application ___domain managers; they do not apply to the default manager. The InitializeNewDomain method in the default application ___domain manager does nothing. The default enumeration value is None.

Applies to