13 implementations of MethodSignature
mscorlib (9)
system\runtime\remoting\message.cs (9)
394public Object MethodSignature 1144public Object MethodSignature 2371public Object MethodSignature 2603public Object MethodSignature 3637public Object MethodSignature 4552public Object MethodSignature 5557public Object MethodSignature 5798public virtual Object MethodSignature 6028public virtual Object MethodSignature
System.Runtime.Remoting (1)
channels\http\httpserverchannel.cs (1)
695public Object MethodSignature { get { return m_MethodSignature;} }
System.ServiceModel (2)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
592public object MethodSignature
System\ServiceModel\ClientBase.cs (1)
1510public object MethodSignature
System.Workflow.Activities (1)
LocalService\MethodMessage.cs (1)
144object IMethodMessage.MethodSignature
17 references to MethodSignature
mscorlib (15)
system\runtime\remoting\message.cs (10)
1428return _ccmsg.MethodSignature; 1540return _crmsg.MethodSignature; 1671return _mcmsg.MethodSignature; 1796return _mrmsg.MethodSignature; 4169methodSignature = (Type[])msg.MethodSignature; 4200methodSignature = (Type[])msg.MethodSignature; 5726case "__MethodSignature": return _mcmsg.MethodSignature; 5801get { return _msg.MethodSignature; } 5948case "__MethodSignature": return _mrmsg.MethodSignature; 6031get { return _msg.MethodSignature; }
system\runtime\remoting\messagesmuggler.cs (1)
329argsToSerialize.Add(mcm.MethodSignature);
system\runtime\remoting\remotingservices.cs (1)
1898Type[] signature = (Type[])msg.MethodSignature;
system\runtime\remoting\remotingsurrogateselector.cs (1)
373Type[] sig = (Type[])mcm.MethodSignature;
system\runtime\serialization\formatters\binary\binaryobjectwriter.cs (2)
233if (mcm.MethodSignature != null && RemotingServices.IsMethodOverloaded(mcm)) 234methodSignature = mcm.MethodSignature;
System.Runtime.Remoting (1)
channels\sinks\soapformattersinks.cs (1)
258h[2] = new Header("__MethodSignature", mcm.MethodSignature);
System.ServiceModel (1)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
594get { return methodCall.MethodSignature; }