WebPermissionAttribute クラス
アセンブリ: System (system.dll 内)

<SerializableAttribute> _ <AttributeUsageAttribute(AttributeTargets.Assembly Or AttributeTargets.Class Or AttributeTargets.Struct Or AttributeTargets.Constructor Or AttributeTargets.Method, AllowMultiple:=True, Inherited:=False)> _ Public NotInheritable Class WebPermissionAttribute Inherits CodeAccessSecurityAttribute
[SerializableAttribute] [AttributeUsageAttribute(AttributeTargets.Assembly|AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Constructor|AttributeTargets.Method, AllowMultiple=true, Inherited=false)] public sealed class WebPermissionAttribute : CodeAccessSecurityAttribute
[SerializableAttribute] [AttributeUsageAttribute(AttributeTargets::Assembly|AttributeTargets::Class|AttributeTargets::Struct|AttributeTargets::Constructor|AttributeTargets::Method, AllowMultiple=true, Inherited=false)] public ref class WebPermissionAttribute sealed : public CodeAccessSecurityAttribute
/** @attribute SerializableAttribute() */ /** @attribute AttributeUsageAttribute(AttributeTargets.Assembly|AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Constructor|AttributeTargets.Method, AllowMultiple=true, Inherited=false) */ public final class WebPermissionAttribute extends CodeAccessSecurityAttribute

WebPermissionAttribute を使用すると、どの URI 文字列と正規表現文字列をクラスで使用できるかを宣言によって指定できます。
WebPermissionAttribute で指定されたセキュリティ情報は、WebPermissionAttribute が適用されるクラスである属性ターゲットのメタデータに格納されます。その後、システムは、実行時にこの情報にアクセスします。コンストラクタに渡される System.Security.Permissions.SecurityAction は、許容 WebPermissionAttribute ターゲットを判断します。システムは、CreatePermission メソッドで返される WebPermission を使用して、属性ターゲットのセキュリティ情報をメタデータに格納されるシリアル化できる形式に変換します。
![]() |
---|
WebPermissionAttribute は、宣言セキュリティ でだけ使用されます。強制セキュリティ に対しては、対応する WebPermission を使用します。 |

WebPermissionAttribute をメソッドに適用する方法を次の例に示します。
' Deny access to a specific resource by setting the ConnectPattern property. <WebPermission(SecurityAction.Deny, ConnectPattern := "http://www\.contoso\.com/.*")> Public Sub Connect() ' Create a Connection. Dim myWebRequest As HttpWebRequest = CType(WebRequest.Create("http://www.contoso.com"), HttpWebRequest) Console.WriteLine("This line should never be printed")
// Deny access to a specific resource by setting the ConnectPattern property. [WebPermission(SecurityAction.Deny, ConnectPattern=@"http://www\.contoso\.com/")] public void Connect() { // Create a Connection. HttpWebRequest myWebRequest = (HttpWebRequest)WebRequest.Create("http://www.contoso.com"); Console.WriteLine("This line should never be printed"); }
public: // Deny access to a specific resource by setting the ConnectPattern property. [method:WebPermission(SecurityAction::Deny,ConnectPattern="http://www.contoso.com/")] void Connect() { // Create a Connection. HttpWebRequest^ myWebRequest = (HttpWebRequest^)(WebRequest::Create( "http://www.contoso.com" )); Console::WriteLine( "This line should never be printed" ); }
// Deny access to a specific resource by setting the ConnectPattern property. /** @attribute WebPermission(SecurityAction.Deny, ConnectPattern = "http://www\\.contoso\\.com/") */ public void Connect() { // Create a Connection. HttpWebRequest myWebRequest = (HttpWebRequest) WebRequest.Create("http://www.contoso.com"); Console.WriteLine("This line should never be printed"); } //Connect

System.Attribute
System.Security.Permissions.SecurityAttribute
System.Security.Permissions.CodeAccessSecurityAttribute
System.Net.WebPermissionAttribute


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


WebPermissionAttribute コンストラクタ
アセンブリ: System (system.dll 内)




WebPermissionAttribute をメソッドに適用する方法を次の例に示します。
' Set the declarative security for the URI. <WebPermission(SecurityAction.Deny, Connect := "http://www.contoso.com/")> _ Public Sub Connect() ' Throw an exception. Try Dim myWebRequest As HttpWebRequest = CType(WebRequest.Create("http://www.contoso.com"), HttpWebRequest) Catch e As Exception Console.WriteLine(("Exception : " + e.ToString())) End Try End Sub 'Connect
// Set the declarative security for the URI. [WebPermission(SecurityAction.Deny, Connect = @"http://www.contoso.com/")] public void Connect() { // Throw an exception. try { HttpWebRequest myWebRequest = (HttpWebRequest)WebRequest.Create("http://www.contoso.com/"); } catch(Exception e) { Console.WriteLine("Exception : " + e.ToString()); }
public: // Set the declarative security for the URI. [WebPermission(SecurityAction::Deny,Connect="http://www.contoso.com/")] void Connect() { // Throw an exception. try { HttpWebRequest^ myWebRequest = dynamic_cast<HttpWebRequest^>(WebRequest::Create( "http://www.contoso.com/" )); } catch ( Exception^ e ) { Console::WriteLine( "Exception : {0}", e ); }
// Set the declarative security for the URI. /** @attribute WebPermission(SecurityAction.Deny, Connect = "http://www.contoso.com/") */ public void Connect() { // Throw an exception. try { HttpWebRequest myWebRequest = (HttpWebRequest)( WebRequest.Create("http://www.contoso.com/")); } catch (System.Exception e) { Console.WriteLine("Exception : " + e.ToString()); } } //Connect

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


WebPermissionAttribute プロパティ

名前 | 説明 | |
---|---|---|
![]() | Accept | 現在の WebPermissionAttribute で受け入れられる URI 文字列を取得または設定します。 |
![]() | AcceptPattern | 現在の WebPermissionAttribute で受け入れられる URI を記述する正規表現パターンを取得または設定します。 |
![]() | Action | セキュリティ アクションを取得または設定します。 ( SecurityAttribute から継承されます。) |
![]() | Connect | 現在の WebPermissionAttribute で制御される URI 接続文字列を取得または設定します。 |
![]() | ConnectPattern | 現在の WebPermissionAttribute で制御される URI 接続を記述する正規表現パターンを取得または設定します。 |
![]() | TypeId | 派生クラスに実装されている場合は、この Attribute の一意の識別子を取得します。 ( Attribute から継承されます。) |
![]() | Unrestricted | 属性によって保護されているリソースに対して完全な (無制限の) アクセス許可が宣言されているかどうかを示す値を取得または設定します。 ( SecurityAttribute から継承されます。) |

WebPermissionAttribute メソッド

名前 | 説明 | |
---|---|---|
![]() | CreatePermission | オーバーライドされます。 WebPermission クラスの新しいインスタンスを作成して返します。 |
![]() | Equals | オーバーロードされます。 ( Attribute から継承されます。) |
![]() | GetCustomAttribute | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用された指定した型のカスタム属性を取得します。 ( Attribute から継承されます。) |
![]() | GetCustomAttributes | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されたカスタム属性の配列を取得します。 ( Attribute から継承されます。) |
![]() | GetHashCode | このインスタンスのハッシュ コードを返します。 ( Attribute から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | IsDefaultAttribute | 派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラスの既定値かどうかを示します。 ( Attribute から継承されます。) |
![]() | IsDefined | オーバーロードされます。 指定した型のカスタム属性が、アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されているかどうかを判断します。 ( Attribute から継承されます。) |
![]() | Match | 派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。 ( Attribute から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

WebPermissionAttribute メンバ
インターネット リソースへのアクセス許可を指定します。このクラスは継承できません。
WebPermissionAttribute データ型で公開されるメンバを以下の表に示します。

名前 | 説明 | |
---|---|---|
![]() | WebPermissionAttribute | このクラスで実行できるセキュリティ アクションを指定する値で、WebPermissionAttribute クラスの新しいインスタンスを初期化します。 |

名前 | 説明 | |
---|---|---|
![]() | Accept | 現在の WebPermissionAttribute で受け入れられる URI 文字列を取得または設定します。 |
![]() | AcceptPattern | 現在の WebPermissionAttribute で受け入れられる URI を記述する正規表現パターンを取得または設定します。 |
![]() | Action | セキュリティ アクションを取得または設定します。(SecurityAttribute から継承されます。) |
![]() | Connect | 現在の WebPermissionAttribute で制御される URI 接続文字列を取得または設定します。 |
![]() | ConnectPattern | 現在の WebPermissionAttribute で制御される URI 接続を記述する正規表現パターンを取得または設定します。 |
![]() | TypeId | 派生クラスに実装されている場合は、この Attribute の一意の識別子を取得します。(Attribute から継承されます。) |
![]() | Unrestricted | 属性によって保護されているリソースに対して完全な (無制限の) アクセス許可が宣言されているかどうかを示す値を取得または設定します。(SecurityAttribute から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | CreatePermission | オーバーライドされます。 WebPermission クラスの新しいインスタンスを作成して返します。 |
![]() | Equals | オーバーロードされます。 ( Attribute から継承されます。) |
![]() | GetCustomAttribute | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用された指定した型のカスタム属性を取得します。 (Attribute から継承されます。) |
![]() | GetCustomAttributes | オーバーロードされます。 アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されたカスタム属性の配列を取得します。 (Attribute から継承されます。) |
![]() | GetHashCode | このインスタンスのハッシュ コードを返します。 (Attribute から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | IsDefaultAttribute | 派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラスの既定値かどうかを示します。 (Attribute から継承されます。) |
![]() | IsDefined | オーバーロードされます。 指定した型のカスタム属性が、アセンブリ、モジュール、型のメンバ、またはメソッド パラメータに適用されているかどうかを判断します。 (Attribute から継承されます。) |
![]() | Match | 派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンスが等しいかどうかを示す値を返します。 (Attribute から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

- WebPermissionAttributeのページへのリンク