2 interfaces inheriting from IMethodMessage
mscorlib (2)
system\runtime\remoting\imethodmessage.cs (2)
82public interface IMethodCallMessage : IMethodMessage 101public interface IMethodReturnMessage : IMethodMessage
1 implementation of IMethodMessage
System.Workflow.Activities (1)
LocalService\MethodMessage.cs (1)
26internal sealed class MethodMessage : IMethodMessage, IMethodResponseMessage
45 references to IMethodMessage
mscorlib (19)
system\runtime\remoting\channelservices.cs (1)
835MethodBase method = ((IMethodMessage)msg).MethodBase;
system\runtime\remoting\message.cs (4)
493internal static Object[] CoerceArgs(IMethodMessage m) 504internal static Object[] CoerceArgs(IMethodMessage m, ParameterInfo[] pi) 5227IMethodMessage _mm; 5231internal ArgMapper(IMethodMessage mm, bool fOut)
system\runtime\remoting\messagesmuggler.cs (1)
170IMethodMessage msg,
system\runtime\remoting\remotingservices.cs (5)
350public static String GetSessionIdForMethodMessage(IMethodMessage msg) 1871public static MethodBase GetMethodBaseFromMethodMessage(IMethodMessage msg) 1878internal static MethodBase InternalGetMethodBaseFromMethodMessage(IMethodMessage msg) 1903public static bool IsMethodOverloaded(IMethodMessage msg) 1913private static MethodBase GetMethodBase(IMethodMessage msg, Type t, Type[] signature)
system\runtime\remoting\remotingsurrogateselector.cs (2)
454IMethodMessage msg = obj as IMethodMessage;
system\runtime\remoting\stackbuildersink.cs (3)
315internal bool IsOKToStackBlt(IMethodMessage mcMsg, Object server) 347private static MethodBase GetMethodBase(IMethodMessage msg) 365private static void VerifyIsOkToCallMethod(Object server, IMethodMessage msg)
system\runtime\remoting\terminatorsinks.cs (2)
140IMethodMessage mm = msg as IMethodMessage;
system\runtime\serialization\formatters\binary\binaryobjectwriter.cs (1)
288private static Object[] StoreUserPropertiesForMethodMessage(IMethodMessage msg)
System.Runtime.Remoting (5)
channels\core\corechannel.cs (4)
313IMethodMessage msg = (IMethodMessage)reqMsg; 464IMethodMessage methodMsg = msg as IMethodMessage;
channels\sinks\soapformattersinks.cs (1)
667soapActionToVerify, ((IMethodMessage)requestMsg).MethodBase)))
System.Workflow.Activities (21)
Executors\InboundActivityHelper.cs (3)
56IMethodMessage message = msg as IMethodMessage; 77private static bool ProcessEventParameters(WorkflowParameterBindingCollection parameters, IMethodMessage message, Type interfaceType, string operation)
LocalService\FollowerQueueCreator.cs (2)
55IMethodMessage message = queue.Peek() as IMethodMessage;
LocalService\MethodMessage.cs (11)
113string IMethodMessage.GetArgName(int index) 118object IMethodMessage.GetArg(int argNum) 123string IMethodMessage.Uri 131string IMethodMessage.MethodName 136string IMethodMessage.TypeName 144object IMethodMessage.MethodSignature 151object[] IMethodMessage.Args 195int IMethodMessage.ArgCount 200bool IMethodMessage.HasVarArgs 207LogicalCallContext IMethodMessage.LogicalCallContext 212MethodBase IMethodMessage.MethodBase
WebServiceReceive.cs (3)
270IMethodMessage message = msg as IMethodMessage; 289private void ProcessParameters(ActivityExecutionContext context, IMethodMessage message, Type interfaceType, string operation)
WebServiceResponse.cs (2)
187IMethodMessage message = responseMessage as IMethodMessage;