Windows apps
Collapse the table of content
Expand the table of content
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.

SecurityException::DenySetInstance Property

 

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

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

public:
[ComVisibleAttribute(false)]
property Object^ DenySetInstance {
	[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::NoFlags | SecurityPermissionFlag::ControlEvidence | SecurityPermissionFlag::ControlPolicy)]
	Object^ get();
	void set(Object^ value);
}

Property Value

Type: System::Object^

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

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 GetType method or a specific language operator, such as the operator in C# or the operator in Visual Basic.

SecurityPermission

for the ability to provide evidence and view and modify policy. Associated enumerations: SecurityPermissionFlag::ControlEvidence, SecurityPermissionFlag::ControlPolicy Security action: Demand

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft