PnrpPermission(PermissionState) Constructor

Definition

Initializes a new instance of the PnrpPermission class with the supplied initial permission state.

public:
 PnrpPermission(System::Security::Permissions::PermissionState state);
public PnrpPermission (System.Security.Permissions.PermissionState state);
new System.Net.PeerToPeer.PnrpPermission : System.Security.Permissions.PermissionState -> System.Net.PeerToPeer.PnrpPermission
Public Sub New (state As PermissionState)

Parameters

state
PermissionState

One of the values in the PermissionState enumeration.

Remarks

Instances of this type have two permission states: they either have no access to the resource(s) protected by the permission, or they have unrestricted full access to those resources.

If state is Unrestricted, the PnrpPermission instance passes all demands. If state contains any other value, the PnrpPermission instance fails all demands.

Applies to

See also