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)
6006
return
_msg
.Uri;
6011
_msg
.Properties[Message.UriKey] = value;
6019
get { return
_msg
.MethodName; }
6025
get { return
_msg
.TypeName; }
6031
get { return
_msg
.MethodSignature; }
6037
get { return
_msg
.LogicalCallContext; }
6043
get { return
_msg
.MethodBase; }
6061
public virtual String GetArgName(int index) { return
_msg
.GetArgName(index); }
6077
get { return
_msg
.HasVarArgs; }
6151
_properties = new MRMWrapperDictionary(this,
_msg
.Properties);