13 implementations of MethodBase
mscorlib (9)
system\runtime\remoting\message.cs (9)
415public MethodBase MethodBase 1162public MethodBase MethodBase 2377public MethodBase MethodBase 2615public MethodBase MethodBase 3652public MethodBase MethodBase 4558public MethodBase MethodBase 5563public MethodBase MethodBase 5810public virtual MethodBase MethodBase 6040public virtual MethodBase MethodBase
System.Runtime.Remoting (1)
channels\http\httpserverchannel.cs (1)
696public MethodBase MethodBase { get { return null; }}
System.ServiceModel (2)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
582public MethodBase MethodBase
System\ServiceModel\ClientBase.cs (1)
1494public Reflection.MethodBase MethodBase
System.Workflow.Activities (1)
LocalService\MethodMessage.cs (1)
212MethodBase IMethodMessage.MethodBase
38 references to MethodBase
mscorlib (24)
system\runtime\remoting\activationservices.cs (1)
1281MethodBase mb = msg.MethodBase;
system\runtime\remoting\channelservices.cs (2)
710MethodInfo method = (MethodInfo)mcm.MethodBase; 835MethodBase method = ((IMethodMessage)msg).MethodBase;
system\runtime\remoting\channelsinkstacks.cs (1)
416MethodInfo syncMI = (MethodInfo)_msg.MethodBase;
system\runtime\remoting\message.cs (11)
495MethodBase mb = m.MethodBase; 506return CoerceArgs(m.MethodBase, m.Args, pi); 2567_methodBase = mcm.MethodBase; 2583_methodBase = mcm.MethodBase; 2883MI = mcm.MethodBase; 4136MI = (MethodBase)mcm.MethodBase; 4161MI = (MethodBase)msg.MethodBase; 4192MI = (MethodBase)msg.MethodBase; 5234MethodBase mb = (MethodBase)_mm.MethodBase; 5813get { return _msg.MethodBase; } 6043get { return _msg.MethodBase; }
system\runtime\remoting\messagesmuggler.cs (2)
311if (mcm.MethodBase.IsGenericMethod) 313Type[] inst = mcm.MethodBase.GetGenericArguments();
system\runtime\remoting\remotingproxy.cs (1)
265MethodBase mb = reqMcmMsg.MethodBase;
system\runtime\remoting\remotingservices.cs (1)
1906InternalRemotingServices.GetReflectionCachedData(msg.MethodBase);
system\runtime\remoting\remotingsurrogateselector.cs (2)
291MethodBase mb = msg.MethodBase; 368MethodBase mb = mcm.MethodBase;
system\runtime\remoting\stackbuildersink.cs (1)
349MethodBase mb = msg.MethodBase;
system\runtime\serialization\formatters\binary\binaryobjectwriter.cs (2)
220if (mcm.MethodBase.IsGenericMethod) 221instArgs = mcm.MethodBase.GetGenericArguments();
System.Runtime.Remoting (6)
channels\core\corechannel.cs (2)
467MethodBase mb = methodMsg.MethodBase; 470Type type = methodMsg.MethodBase.DeclaringType;
channels\ipc\ipcclientmanager.cs (1)
99_bOneWayRequest = RemotingServices.IsOneWay(mcm.MethodBase);
channels\sinks\soapformattersinks.cs (2)
224MethodBase mb = mcm.MethodBase; 667soapActionToVerify, ((IMethodMessage)requestMsg).MethodBase)))
channels\tcp\tcpclientsocketmanager.cs (1)
110_bOneWayRequest = RemotingServices.IsOneWay(mcm.MethodBase);
System.ServiceModel (8)
System\ServiceModel\Channels\ServiceChannelProxy.cs (4)
87MethodBase method = methodCall.MethodBase; 101if (methodCall.MethodBase == typeof(object).GetMethod("GetType")) 367MethodBase targetMethod = methodCall.MethodBase; 584get { return methodCall.MethodBase; }
System\ServiceModel\ComIntegration\TearOffProxy.cs (1)
48MethodBase typeMethod = msg.MethodBase;
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (3)
350return (methodCall.MethodBase.MethodHandle == this.syncMethod.MethodHandle); 361return (methodCall.MethodBase.MethodHandle == this.beginMethod.MethodHandle); 372return (methodCall.MethodBase.MethodHandle == this.taskMethod.MethodHandle);