SecurityException.PermitOnlySetInstance Property

Definition

Gets or sets the permission, permission set, or permission set collection that is part of the permit-only stack frame that caused a security check to fail.

public:
 property System::Object ^ PermitOnlySetInstance { System::Object ^ get(); void set(System::Object ^ value); };
public object? PermitOnlySetInstance { get; set; }
public object PermitOnlySetInstance { get; set; }
[System.Runtime.InteropServices.ComVisible(false)]
public object PermitOnlySetInstance { get; set; }
member this.PermitOnlySetInstance : obj with get, set
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.PermitOnlySetInstance : obj with get, set
Public Property PermitOnlySetInstance As Object

Property Value

A permission, permission set, or permission set collection object.

Attributes

Remarks

The PermitOnlySetInstance property represents the permitted permission, permission set, or permission set collection contained in the stack frame that caused the security exception. For instance, when a security exception occurs because of a PermissionSet.Demand failure, the permitted permission appears in this property and the demanded PermissionSet is contained in the Demanded property.

This property is of type Object because permissions, permission sets, or permission set collections can all be demanded and Object is their common base class. To test the run-time type of this property, you can use the GetType method or a specific language operator, such as the is operator in C# or the TypeOf operator in Visual Basic.

Applies to