2 implementations of IConstructionCallMessage
mscorlib (2)
system\runtime\remoting\message.cs (2)
963internal class ConstructorCallMessage : IConstructionCallMessage 3915public class ConstructionCall : MethodCall, IConstructionCallMessage
60 references to IConstructionCallMessage
mscorlib (60)
system\runtime\remoting\activationservices.cs (23)
313Context ctx, IConstructionCallMessage ctorMsg, Object[] attributes) 350IConstructionCallMessage ctorMsg, Object[] attributes) 532RemotingProxy remProxy, IConstructionCallMessage ctorMsg) 580(IConstructionCallMessage)ctorMsg, 588(IConstructionCallMessage)ctorMsg, 632IConstructionCallMessage reqMsg) 718IConstructionCallMessage reqMsg = (IConstructionCallMessage) args[0]; 757IConstructionCallMessage reqMsg) 778IConstructionCallMessage ctorMsg, 1034internal static Object ConnectIfNecessary(IConstructionCallMessage ctorMsg) 1062RemotingProxy proxy, IConstructionCallMessage ctorMsg) 1129Context ctx, IConstructionCallMessage ctorMsg) 1208IConstructionCallMessage ctorMsg) 1279private static MethodBase GetMethodBase(IConstructionCallMessage msg) 1300IConstructionCallMessage ctorMsg) 1391IConstructionCallMessage ctorMsg) 1465IConstructionCallMessage ctorMsg) 1555IConstructionCallMessage ctorMsg) 1609IConstructionCallMessage ctorMsg) 1659IConstructionCallMessage ctorMsg) 1685public virtual bool IsContextOK(Context ctx, IConstructionCallMessage msg) 1697public virtual void GetPropertiesForNewContext(IConstructionCallMessage ctorMsg)
system\runtime\remoting\context.cs (5)
526Contract.Assert( (msg is IConstructionCallMessage) 529Contract.Assert( !((msg is IConstructionCallMessage) && 556IConstructionCallMessage ccm = msg as IConstructionCallMessage; 593if (msg is IConstructionCallMessage)
system\runtime\remoting\contextproperty.cs (7)
68bool IsContextOK(Context ctx, IConstructionCallMessage msg); 71void GetPropertiesForNewContext(IConstructionCallMessage msg); 110bool IsOKToActivate(IConstructionCallMessage msg); 113void CollectFromClientContext(IConstructionCallMessage msg); 116bool DeliverClientContextToServerContext(IConstructionCallMessage msg); 202Context ctx, IConstructionCallMessage ctorMsg) 231IConstructionCallMessage ctorMsg)
system\runtime\remoting\enterpriseserviceshelper.cs (1)
44public static IConstructionReturnMessage CreateConstructionReturnMessage(IConstructionCallMessage ctorMsg, MarshalByRefObject retObj)
system\runtime\remoting\iactivator.cs (1)
37IConstructionReturnMessage Activate(IConstructionCallMessage msg);
system\runtime\remoting\message.cs (4)
909LogicalCallContext callCtx, IConstructionCallMessage ccm) 916public ConstructorReturnMessage(Exception e, IConstructionCallMessage ccm) 1409internal IConstructionCallMessage _ccmsg; // back pointer to message object 1412public CCMDictionary(IConstructionCallMessage msg, IDictionary idict)
system\runtime\remoting\proxyattribute.cs (2)
111public bool IsContextOK(Context ctx, IConstructionCallMessage msg) 119public void GetPropertiesForNewContext(IConstructionCallMessage msg)
system\runtime\remoting\realproxy.cs (1)
176public IConstructionReturnMessage InitializeServerObject(IConstructionCallMessage ctorMsg)
system\runtime\remoting\remotingproxy.cs (3)
163IConstructionCallMessage ccm = reqMsg as IConstructionCallMessage; 468private IConstructionReturnMessage InternalActivate(IConstructionCallMessage ctorMsg)
system\runtime\remoting\remotingservices.cs (1)
1919if((msg is IConstructionCallMessage) ||
system\runtime\remoting\remotingsurrogateselector.cs (1)
460if (obj is IConstructionCallMessage)
system\runtime\remoting\synchronizeddispatch.cs (2)
181public override bool IsContextOK(Context ctx, IConstructionCallMessage msg) 222public override void GetPropertiesForNewContext(IConstructionCallMessage ctorMsg)
system\runtime\remoting\terminatorsinks.cs (7)
52if (reqMsg is IConstructionCallMessage) 301if (reqMsg is IConstructionCallMessage) 311replyMsg = ((IConstructionCallMessage)reqMsg).Activator.Activate( 312(IConstructionCallMessage)reqMsg); 591if (reqMsg is IConstructionCallMessage) 601replyMsg = ((IConstructionCallMessage)reqMsg).Activator.Activate((IConstructionCallMessage)reqMsg);
system\runtime\remoting\urlattribute.cs (2)
62public override bool IsContextOK(Context ctx, IConstructionCallMessage msg) 70public override void GetPropertiesForNewContext(IConstructionCallMessage ctorMsg)