SecurityException.DenySetInstance Property

Definition

Gets or sets the denied security permission, permission set, or permission set collection that caused a demand to fail.

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

Property Value

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

Attributes

Remarks

This property contains the denied permission, permission set, or permission set collection that caused the security check to fail. It is null for exceptions that are not caused by a Deny. The property is of type Object because it can contain a permission, a permission set, or a permission set collection. To test the run-time type of this property, you can use the Object.GetType method or a specific language operator, such as the is operator in C# or the TypeOf operator in Visual Basic.

Applies to