Condividi tramite


DataProtectionPermission.Flags Proprietà

Definizione

Ottiene o imposta i flag di protezione di dati e memoria.

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

Valore della proprietà

Combinazione bit per bit dei valori di DataProtectionPermissionFlags.

Eccezioni

Il valore specificato non è una combinazione valida di valori di DataProtectionPermissionFlags.

Esempio

Nell'esempio di codice seguente viene illustrato l'uso della Flags proprietà . Questo esempio di codice fa parte di un esempio più ampio fornito per la DataProtectionPermission classe .

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())

Commenti

Questa proprietà specifica se è possibile utilizzare i Protect metodi e Unprotect delle ProtectedData classi e ProtectedMemory .

Si applica a