System.Security.SecurityException
namespace System.Security
{
public class SecurityException : SystemException
{
public object Demanded { get; set; }
public object DenySetInstance { get; set; }
public AssemblyName FailedAssemblyInfo { get; set; }
public string GrantedSet { get; set; }
public MethodInfo Method { get; set; }
public string PermissionState { get; set; }
public Type PermissionType { get; set; }
public object PermitOnlySetInstance { get; set; }
public string RefusedSet { get; set; }
public string Url { get; set; }
public SecurityException();
protected SecurityException(SerializationInfo info, StreamingContext context);
public SecurityException(string message);
public SecurityException(string message, Exception inner);
public SecurityException(string message, Type type);
public SecurityException(string message, Type type, string state);
}
}