次の方法で共有


IsolatedStorageFilePermissionAttribute クラス

宣言セキュリティを使用して、 IsolatedStorageFilePermission のセキュリティ アクションをコードに適用できるようにします。このクラスは継承できません。

この型のすべてのメンバの一覧については、IsolatedStorageFilePermissionAttribute メンバ を参照してください。

System.Object
   System.Attribute
      System.Security.Permissions.SecurityAttribute
         System.Security.Permissions.CodeAccessSecurityAttribute
            System.Security.Permissions.IsolatedStoragePermissionAttribute
               System.Security.Permissions.IsolatedStorageFilePermissionAttribute

<AttributeUsage(AttributeTargets.Assembly Or AttributeTargets.Class _
   Or AttributeTargets.Struct Or AttributeTargets.Constructor Or _
   AttributeTargets.Method)>
<Serializable>
NotInheritable Public Class _   IsolatedStorageFilePermissionAttribute   Inherits IsolatedStoragePermissionAttribute
[C#]
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class
   | AttributeTargets.Struct | AttributeTargets.Constructor |
   AttributeTargets.Method)]
[Serializable]
public sealed class IsolatedStorageFilePermissionAttribute :   IsolatedStoragePermissionAttribute
[C++]
[AttributeUsage(AttributeTargets::Assembly |
   AttributeTargets::Class | AttributeTargets::Struct |
   AttributeTargets::Constructor | AttributeTargets::Method)]
[Serializable]
public __gc __sealed class IsolatedStorageFilePermissionAttribute   : public IsolatedStoragePermissionAttribute
[JScript]
public
   AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class |
   AttributeTargets.Struct | AttributeTargets.Constructor |
   AttributeTargets.Method)
 Serializable
class IsolatedStorageFilePermissionAttribute extends   IsolatedStoragePermissionAttribute

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

解説

宣言の許容スコープは、使用する SecurityAction によって異なります。

セキュリティ属性によって宣言されたセキュリティ情報は、属性ターゲットのメタデータに格納され、実行時にシステムによってアクセスされます。セキュリティ属性は宣言セキュリティにだけ使用されます。強制セキュリティの場合は、対応するアクセス許可クラスを使用します。

使用例

[Visual Basic, C#, C++] IsolatedStorageFilePermission を要求する正しい方法を示し、コードを実行するためには少なくともこのアクセス許可が必要であり、さらに最大ユーザー クォータが 5 MB 必要であることを次の宣言属性の例に示します。

 
<Assembly: IsolatedStorageFilePermissionAttribute( _
SecurityAction.RequestMinimum, UserQuota := 5242880)>
'In Visual Basic, you must specify that you are using the assembly scope when making a request.

[C#] 
[assembly:IsolatedStorageFilePermissionAttribute(
SecurityAction.RequestMinimum, UserQuota=5242880)]
//In C#, you must specify that you are using the assembly scope when making a request.

[C++] 
[assembly:IsolatedStorageFilePermissionAttribute(
SecurityAction::RequestMinimum, UserQuota=5242880)];
//In C++, you must specify that you are using the assembly scope when making a request.

[Visual Basic, C#, C++] リンク時に、呼び出し元のコードに無制限の IsolatedStorageFilePermission を要求する方法の例を次に示します。通常、メソッドやクラスを不正なコードから保護するための要求がマネージ ライブラリ (DLL) で作成されます。

 
<IsolatedStorageFilePermissionAttribute( _
 SecurityAction.Demand, Unrestricted := True)> _
 Public Class SampleClass

[C#] 
[IsolatedStorageFilePermissionAttribute(SecurityAction.Demand,
Unrestricted=true)]

[C++] 
[IsolatedStorageFilePermissionAttribute(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 内)

参照

IsolatedStorageFilePermissionAttribute メンバ | System.Security.Permissions 名前空間 | 属性を使用したメタデータの拡張 | IsolatedStorageFilePermission | IsolatedStoragePermission | IsolatedStoragePermissionAttribute | IsolatedStorageContainment