RemotingServices.GetMethodBaseFromMethodMessage(IMethodMessage) 方法

定义

从给定的 IMethodMessage 返回方法库。

public:
 static System::Reflection::MethodBase ^ GetMethodBaseFromMethodMessage(System::Runtime::Remoting::Messaging::IMethodMessage ^ msg);
public static System.Reflection.MethodBase GetMethodBaseFromMethodMessage (System.Runtime.Remoting.Messaging.IMethodMessage msg);
[System.Security.SecurityCritical]
public static System.Reflection.MethodBase GetMethodBaseFromMethodMessage (System.Runtime.Remoting.Messaging.IMethodMessage msg);
static member GetMethodBaseFromMethodMessage : System.Runtime.Remoting.Messaging.IMethodMessage -> System.Reflection.MethodBase
[<System.Security.SecurityCritical>]
static member GetMethodBaseFromMethodMessage : System.Runtime.Remoting.Messaging.IMethodMessage -> System.Reflection.MethodBase
Public Shared Function GetMethodBaseFromMethodMessage (msg As IMethodMessage) As MethodBase

参数

msg
IMethodMessage

从其中提取方法库的方法消息。

返回

MethodBase

msg 参数提取的方法库。

属性

例外

直接调用方没有基础结构权限,或者调用堆栈上部至少有一个调用方没有检索非公共成员的类型信息的权限。

注解

这从实现接口的IMethodMessage类中确定方法基TypeNameMethodName以及MethodSignature其属性。IMethodMessage 类的 IMethodMessage 使用者应引用该 IMethodMessage.MethodBase 属性。

适用于