CodeAccessPermission.RevertDeny-Methode
Veranlasst, dass ein vorhergehendes Deny für den aktuellen Rahmen entfernt wird und nicht mehr wirksam ist.
Namespace: System.Security
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared Sub RevertDeny
'Usage
CodeAccessPermission.RevertDeny
public static void RevertDeny ()
public:
static void RevertDeny ()
public static void RevertDeny ()
public static function RevertDeny ()
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
Es ist kein vorheriges Deny für den aktuellen Rahmen vorhanden. |
Hinweise
Wenn für den aktuellen Rahmen kein Deny vorhanden ist, wird eine ExecutionEngineException ausgelöst.
Beispiel
Im folgenden Codebeispiel wird die Verwendung der RevertDeny-Methode zum Wiederherstellen vorheriger Überschreibungen für den aktuellen Rahmen veranschaulicht. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die RevertAll-Methode.
' Create a new UIPermission that allows access only to OwnClipboard.
Dim clipboardPermission As New UIPermission(UIPermissionClipboard.OwnClipboard)
' Deny access to OwnClipboard.
Console.WriteLine("Denying access to OwnClipboard")
clipboardPermission.Deny()
' Demand access to files in the specified path.
DemandOwnClipboardAccess()
' Revert the Deny.
Console.WriteLine("Reverting the Deny.")
CodeAccessPermission.RevertDeny()
DemandOwnClipboardAccess()
// Create a new UIPermission that allows access only to OwnClipboard.
UIPermission clipboardPermission = new UIPermission(UIPermissionClipboard.OwnClipboard);
// Deny access to OwnClipboard.
Console.WriteLine("Denying access to OwnClipboard");
clipboardPermission.Deny();
// Demand access to files in the specified path.
DemandOwnClipboardAccess();
// Revert the Deny.
Console.WriteLine("Reverting the Deny.");
CodeAccessPermission.RevertDeny();
DemandOwnClipboardAccess();
// Create a new UIPermission that allows access only to OwnClipboard.
UIPermission^ clipboardPermission = gcnew UIPermission(
UIPermissionClipboard::OwnClipboard );
// Deny access to OwnClipboard.
Console::WriteLine( L"Denying access to OwnClipboard" );
clipboardPermission->Deny();
// Demand access to files in the specified path.
DemandOwnClipboardAccess();
// Revert the Deny.
Console::WriteLine( L"Reverting the Deny." );
CodeAccessPermission::RevertDeny();
DemandOwnClipboardAccess();
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
CodeAccessPermission-Klasse
CodeAccessPermission-Member
System.Security-Namespace