共用方式為


DataProtectionPermission.Flags 屬性

定義

取得或設定資料和記憶體保護旗標。

public:
 property System::Security::Permissions::DataProtectionPermissionFlags Flags { System::Security::Permissions::DataProtectionPermissionFlags get(); void set(System::Security::Permissions::DataProtectionPermissionFlags value); };
public System.Security.Permissions.DataProtectionPermissionFlags Flags { get; set; }
member this.Flags : System.Security.Permissions.DataProtectionPermissionFlags with get, set
Public Property Flags As DataProtectionPermissionFlags

屬性值

DataProtectionPermissionFlags

DataProtectionPermissionFlags 值的位元組合。

例外狀況

指定的值不是 DataProtectionPermissionFlags 值的有效組合。

範例

下列程式碼範例示範 如何使用 Flags 屬性。 此程式碼範例是提供給 類別之較大範例的 DataProtectionPermission 一部分。

Console::WriteLine( "Creating the intersection of the second and "
"first permissions." );
sp4 = dynamic_cast<DataProtectionPermission^>(sp2->Intersect( sp1 ));
Console::WriteLine( "The value of the Flags property is: {0}", sp4->Flags );
Console.WriteLine("Creating the intersection of the second and " +
    "first permissions.");
sp4 = (DataProtectionPermission)sp2.Intersect(sp1);
Console.WriteLine("The value of the Flags property is: " +
    sp4.Flags.ToString());
Console.WriteLine("Creating the intersection of the second and " + "first permissions.")
sp4 = CType(sp2.Intersect(sp1), DataProtectionPermission)
Console.WriteLine("The value of the Flags property is: " + sp4.Flags.ToString())

備註

這個屬性會指定是否可以 Protect 使用 和 類別的 ProtectedDataUnprotect ProtectedMemory 方法。

適用於