RemotingServices.GetMethodBaseFromMethodMessage メソッド
特定の IMethodMessage からメソッド ベースを返します。
Public Shared Function GetMethodBaseFromMethodMessage( _
ByVal msg As IMethodMessage _) As MethodBase
[C#]
public static MethodBase GetMethodBaseFromMethodMessage(IMethodMessagemsg);
[C++]
public: static MethodBase* GetMethodBaseFromMethodMessage(IMethodMessage* msg);
[JScript]
public static function GetMethodBaseFromMethodMessage(
msg : IMethodMessage) : MethodBase;
パラメータ
- msg
メソッド ベースの抽出元となるメソッド メッセージ。
戻り値
msg パラメータから抽出されたメソッド ベース。
例外
例外の種類 | 条件 |
---|---|
SecurityException | 直前の呼び出し元にインフラストラクチャ アクセス許可がありません。または、コールスタックの上位にある 1 つ以上の呼び出し元に非パブリック メンバの型情報を取得するためのアクセス許可がありません。 |
解説
これは、 IMethodMessage の TypeName 、 MethodName 、 MethodSignature の各プロパティからメソッド ベースを決定し、 IMethodMessage インターフェイスを実装しているクラスで使用されます。 IMethodMessage クラスのコンシューマは、 IMethodMessage.MethodBase プロパティを参照する必要があります。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
.NET Framework セキュリティ:
- SecurityPermission (インフラストラクチャ コードを操作するために必要なアクセス許可)要求値: SecurityAction.LinkDemand; アクセス許可値: SecurityPermissionFlag.Infrastructure
- ReflectionPermission (非パブリック メンバの型情報を取得するために必要なアクセス許可)要求値: SecurityAction.Demand; アクセス許可値: ReflectionPermissionFlag.TypeInformation
参照
RemotingServices クラス | RemotingServices メンバ | System.Runtime.Remoting 名前空間