1 write to _msg
mscorlib (1)
system\runtime\remoting\message.cs (1)
5990_msg = msg;
13 references to _msg
mscorlib (13)
system\runtime\remoting\message.cs (13)
5991_args = _msg.Args; 5992_returnValue = _msg.ReturnValue; // be careful if you decide to lazily assign _returnValue 5994_exception = _msg.Exception; // (same thing as above goes for _exception) 6006return _msg.Uri; 6011_msg.Properties[Message.UriKey] = value; 6019get { return _msg.MethodName; } 6025get { return _msg.TypeName; } 6031get { return _msg.MethodSignature; } 6037get { return _msg.LogicalCallContext; } 6043get { return _msg.MethodBase; } 6061public virtual String GetArgName(int index) { return _msg.GetArgName(index); } 6077get { return _msg.HasVarArgs; } 6151_properties = new MRMWrapperDictionary(this, _msg.Properties);