System.Security.SecurityException.SecurityException C# (CSharp) Method

SecurityException() public method

public SecurityException ( String message, Type type, String state ) : System.Security
message String
type System.Type
state String
return System.Security
        public SecurityException(String message, Type type, String state ) 
            : base(message)
        {
            PermissionSet.s_fullTrust.Assert();
            SetErrorCode(System.__HResults.COR_E_SECURITY);
            m_typeOfPermissionThatFailed = type;
            m_demanded = state;
        }

Same methods

SecurityException::SecurityException ( ) : System.Security
SecurityException::SecurityException ( PermissionSet grantedSetObj, PermissionSet refusedSetObj ) : System.Security
SecurityException::SecurityException ( SerializationInfo info, StreamingContext context ) : System.Security
SecurityException::SecurityException ( String message ) : System.Security
SecurityException::SecurityException ( String message, Exception inner ) : System.Security
SecurityException::SecurityException ( String message, PermissionSet grantedSetObj, PermissionSet refusedSetObj ) : System.Security
SecurityException::SecurityException ( String message, Type type ) : System.Security
SecurityException::SecurityException ( string message, AssemblyName assemblyName, PermissionSet grant, PermissionSet refused, MethodInfo method, SecurityAction action, Object demanded, IPermission permThatFailed, Evidence evidence ) : System.Security
SecurityException::SecurityException ( string message, Object deny, Object permitOnly, MethodInfo method, Object demanded, IPermission permThatFailed ) : System.Security