Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IPermission::Copy Method ()

 

Creates and returns an identical copy of the current permission.

Namespace:   System.Security
Assembly:  mscorlib (in mscorlib.dll)

IPermission^ Copy()

Return Value

Type: System.Security::IPermission^

A copy of the current permission.

A copy of a permission represents the same access to resources as the original permission.

The following code example demonstrates implementing the Copy method. This code example is part of a larger example provided for the IPermission class.

    // Return a new object that matches 'this' object's permissions.
public:
    virtual IPermission^ Copy () override sealed
    {
        return (IPermission^) Clone();
    }

.NET Framework
Available since 1.1
Return to top
Show: