DataProtectionPermission.Copy Method
Creates and returns an identical copy of the current permission.
Namespace: System.Security.Permissions
Assembly: System.Security (in System.Security.dll)
The following code example shows the use of the Copy method. This code example is part of a larger example provided for the DataProtectionPermission class.
Note |
|---|
The code example is intended to show the behavior of the method, not to demonstrate its use. In general, the methods of permission classes are used by the security infrastructure; they are not typically used in applications. |
Console.WriteLine("Copying the second permission to the fourth " + "permission.") sp4 = CType(sp2.Copy(), DataProtectionPermission) rc = sp4.Equals(sp2) Console.WriteLine("Is the fourth permission equal to the second " + "permission? " + IIf(rc, "Yes", "No")) 'TODO: For performance reasons this should be changed to nested IF statements
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note