ReflectionPermissionAttribute クラス
宣言セキュリティを使用して、 ReflectionPermission のセキュリティ アクションをコードに適用できるようにします。このクラスは継承できません。
この型のすべてのメンバの一覧については、ReflectionPermissionAttribute メンバ を参照してください。
System.Object
System.Attribute
System.Security.Permissions.SecurityAttribute
System.Security.Permissions.CodeAccessSecurityAttribute
System.Security.Permissions.ReflectionPermissionAttribute
<AttributeUsage(AttributeTargets.Assembly Or AttributeTargets.Class _
Or AttributeTargets.Struct Or AttributeTargets.Constructor Or _
AttributeTargets.Method)>
<Serializable>
NotInheritable Public Class ReflectionPermissionAttribute Inherits CodeAccessSecurityAttribute
[C#]
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class
| AttributeTargets.Struct | AttributeTargets.Constructor |
AttributeTargets.Method)]
[Serializable]
public sealed class ReflectionPermissionAttribute : CodeAccessSecurityAttribute
[C++]
[AttributeUsage(AttributeTargets::Assembly |
AttributeTargets::Class | AttributeTargets::Struct |
AttributeTargets::Constructor | AttributeTargets::Method)]
[Serializable]
public __gc __sealed class ReflectionPermissionAttribute : public CodeAccessSecurityAttribute
[JScript]
public
AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class |
AttributeTargets.Struct | AttributeTargets.Constructor |
AttributeTargets.Method)
Serializable
class ReflectionPermissionAttribute extends CodeAccessSecurityAttribute
スレッドセーフ
この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。
解説
宣言の許容スコープは、使用する SecurityAction によって異なります。
セキュリティ属性によって宣言されたセキュリティ情報は、属性ターゲットのメタデータに格納され、実行時にシステムによってアクセスされます。セキュリティ属性は宣言セキュリティにだけ使用されます。強制セキュリティの場合は、対応するアクセス許可クラスを使用します。
使用例
[Visual Basic, C#, C++] ReflectionEmit の ReflectionPermission を要求する正しい方法を示し、コードを実行するためには少なくともこのアクセス許可が必要であることを次の宣言属性の例に示します。
<Assembly: ReflectionPermissionAttribute(SecurityAction.RequestMinimum, _
ReflectionEmit := True)>
'In Visual Basic, you must specify that you are using the assembly scope when making a request.
[C#]
[assembly:ReflectionPermissionAttribute(SecurityAction.RequestMinimum,
ReflectionEmit=true)]
//In C#, you must specify that you are using the assembly scope when making a request.
[C++]
[assembly:ReflectionPermissionAttribute(SecurityAction::RequestMinimum,
ReflectionEmit=true)];
//In C++, you must specify that you are using the assembly scope when making a request.
[Visual Basic, C#, C++] リンク時に、呼び出し元のコードに無制限の ReflectionPermission を要求する方法の例を次に示します。通常、メソッドやクラスを不正なコードから保護するための要求がマネージ ライブラリ (DLL) で作成されます。
<ReflectionPermissionAttribute(SecurityAction.Demand, _
Unrestricted := True)> Public Class SampleClass
[C#]
[ReflectionPermissionAttribute(SecurityAction.Demand, Unrestricted=true)]
[C++]
[ReflectionPermissionAttribute(SecurityAction::Demand, Unrestricted=true)]
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
名前空間: System.Security.Permissions
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
アセンブリ: Mscorlib (Mscorlib.dll 内)
参照
ReflectionPermissionAttribute メンバ | System.Security.Permissions 名前空間 | 属性を使用したメタデータの拡張 | ReflectionPermission | ReflectionPermissionFlag