System.Runtime.Remoting.Messaging.ConstructorCallMessage.SetLogicalCallContext C# (CSharp) Method

SetLogicalCallContext() private method

private SetLogicalCallContext ( LogicalCallContext ctx ) : LogicalCallContext
ctx LogicalCallContext
return LogicalCallContext
        internal LogicalCallContext SetLogicalCallContext(LogicalCallContext ctx)
        {
            if (_message != null)
            {
                return _message.SetLogicalCallContext(ctx);
            }
            else
            {
                throw new InvalidOperationException(
                    Environment.GetResourceString(
                        "InvalidOperation_InternalState"));
            }

        }