PermissionSet.Copy Method

Definition

Creates a copy of the PermissionSet.

public:
 virtual System::Security::PermissionSet ^ Copy();
public virtual System.Security.PermissionSet Copy ();
abstract member Copy : unit -> System.Security.PermissionSet
override this.Copy : unit -> System.Security.PermissionSet
Public Overridable Function Copy () As PermissionSet

Returns

A copy of the PermissionSet.

Examples

The following code example shows the use of the Copy method to create a copy of a permission set. This code example is part of a larger example provided for the PermissionSet class.

// Create and display a copy of a permission set.
ps7 = ps5->Copy();
Console::WriteLine( "Result of copy = {0}", ps7 );
// Create and display a copy of a permission set.
ps7 = ps5.Copy();
Console.WriteLine("Result of copy = " + ps7.ToString());
' Create and display a copy of a permission set.
ps7 = ps5.Copy()
Console.WriteLine("Result of copy = " & ps7.ToString())

Remarks

A copy of a PermissionSet represents the same access to resources as the original object. Changes made to the copy do not affect the original permission set.

Applies to