This documentation is archived and is not being maintained.
ActivatorLevel Enumeration
.NET Framework 1.1
Defines the appropriate position for an Activator in the chain of activators.
[Visual Basic] <Serializable> Public Enum ActivatorLevel [C#] [Serializable] public enum ActivatorLevel [C++] [Serializable] __value public enum ActivatorLevel [JScript] public Serializable enum ActivatorLevel
Remarks
The design of activators allows for more than one activator to participate in the activation process, and additional activators can be added to the chain by using IActivator.NextActivator. Since each activator is responsible for calling the next one in the chain, an activator can position itself anywhere in the chain. The ActivatorLevel enumerator helps activators find the appropriate position in the chain.
Members
| Member name | Description |
|---|---|
| AppDomain | Finds or creates an AppDomain. |
| Construction | Constructs a blank object and runs the constructor. |
| Context | Finds or creates a suitable context. |
| Machine | Finds a suitable computer. |
| Process | Starts a process. |
Requirements
Namespace: System.Runtime.Remoting.Activation
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
Show: