File: system\security\istackwalk.cs | |
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib) |
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // IStackWalk.cs // // <OWNER>ShawnFa</OWNER> // namespace System.Security { [System.Runtime.InteropServices.ComVisible(true)] public interface IStackWalk { [DynamicSecurityMethodAttribute()] void Assert(); [DynamicSecurityMethodAttribute()] void Demand(); [DynamicSecurityMethodAttribute()] void Deny(); [DynamicSecurityMethodAttribute()] void PermitOnly(); } } |