mscorlib(4.0.0.0) API with additions
IActivator.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IActivator
9  {
14  {
15  [SecurityCritical]
16  get;
17  [SecurityCritical]
18  set;
19  }
20 
24  {
25  [SecurityCritical]
26  get;
27  }
28 
33  [SecurityCritical]
35  }
36 }
ActivatorLevel
Defines the appropriate position for a T:System.Activator in the chain of activators.
Represents the construction call request of an object.
Definition: __Canon.cs:3
ActivatorLevel Level
Gets the T:System.Runtime.Remoting.Activation.ActivatorLevel where this activator is active.
Definition: IActivator.cs:24
Identifies a T:System.Runtime.Remoting.Messaging.IMethodReturnMessage that is returned after attempti...
IConstructionReturnMessage Activate(IConstructionCallMessage msg)
Creates an instance of the object that is specified in the provided T:System.Runtime....
IActivator NextActivator
Gets or sets the next activator in the chain.
Definition: IActivator.cs:14
Provides the basic functionality for a remoting activator class.
Definition: IActivator.cs:8