System.Security.IStackWalk.Deny Method

Causes every IStackWalk.Demand for the current object that passes through the calling code to fail.

Syntax

public void Deny ()

Remarks

This method prevents callers higher in the call stack from accessing the protected resource through the code that calls this method, even if those callers have been granted permission to access it. The call stack is typically represented as growing down, so that methods higher in the call stack call methods lower in the call stack.

IStackWalk.Deny can limit the liability of the programmer or help prevent accidental security vulnerabilities because it helps prevent the method that calls IStackWalk.Deny from being used to access the resource protected by the denied permission. If a method calls IStackWalk.Deny on a permission, and if a IStackWalk.Demand for that permission is invoked by a caller lower in the call stack, that security check will fail when it reaches the IStackWalk.Deny.

IStackWalk.Deny is ignored for a permission not granted because a demand for that permission will not succeed.

Requirements

Namespace: System.Security
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0