IConstructionCallMessage Interface
Represents the construction call request of an object.
Assembly: mscorlib (in mscorlib.dll)
The IConstructionCallMessage type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ActivationType | Gets the type of the remote object to activate. |
![]() | ActivationTypeName | Gets the full type name of the remote type to activate. |
![]() | Activator | Gets or sets the activator that activates the remote object. |
![]() | ArgCount | Gets the number of arguments passed to the method. (Inherited from IMethodMessage.) |
![]() | Args | Gets an array of arguments passed to the method. (Inherited from IMethodMessage.) |
![]() | CallSiteActivationAttributes | Gets the call site activation attributes. |
![]() | ContextProperties | Gets a list of context properties that define the context in which the object is to be created. |
![]() | HasVarArgs | Gets a value indicating whether the message has variable arguments. (Inherited from IMethodMessage.) |
![]() | InArgCount | Gets the number of arguments in the call that are not marked as out parameters. (Inherited from IMethodCallMessage.) |
![]() | InArgs | Gets an array of arguments that are not marked as out parameters. (Inherited from IMethodCallMessage.) |
![]() | LogicalCallContext | Gets the LogicalCallContext for the current method call. (Inherited from IMethodMessage.) |
![]() | MethodBase | Gets the MethodBase of the called method. (Inherited from IMethodMessage.) |
![]() | MethodName | Gets the name of the invoked method. (Inherited from IMethodMessage.) |
![]() | MethodSignature | Gets an object containing the method signature. (Inherited from IMethodMessage.) |
![]() | Properties | Gets an IDictionary that represents a collection of the message's properties. (Inherited from IMessage.) |
![]() | TypeName | Gets the full Type name of the specific object that the call is destined for. (Inherited from IMethodMessage.) |
![]() | Uri | Gets the URI of the specific object that the call is destined for. (Inherited from IMethodMessage.) |
| Name | Description | |
|---|---|---|
![]() | GetArg | Gets a specific argument as an Object. (Inherited from IMethodMessage.) |
![]() | GetArgName | Gets the name of the argument passed to the method. (Inherited from IMethodMessage.) |
![]() | GetInArg | Returns the specified argument that is not marked as an out parameter. (Inherited from IMethodCallMessage.) |
![]() | GetInArgName | Returns the name of the specified argument that is not marked as an out parameter. (Inherited from IMethodCallMessage.) |
When the user creates an instance of a new client-activated object by calling new or Activator::CreateInstance and before the thread returns to the user code, a IConstructionCallMessage is sent to the remote application. When the construction message arrives at the remote application, it is processed by a remoting activator (either the default one, or one that is specified in the Activator property) and a new object is created. The remoting application then returns a IConstructionReturnMessage to the local application. The IConstructionReturnMessage contains an instance of ObjRef, which packages information about the remote object. The remoting infrastructure converts the ObjRef instance into a proxy to the remote object, which is returned to the user code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
