mscorlib(4.0.0.0) API with additions
AuthenticationException.cs
2 
4 {
6  [Serializable]
8  {
11  {
12  }
13 
17  protected AuthenticationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
18  : base(serializationInfo, streamingContext)
19  {
20  }
21 
24  public AuthenticationException(string message)
25  : base(message)
26  {
27  }
28 
32  public AuthenticationException(string message, Exception innerException)
33  : base(message, innerException)
34  {
35  }
36  }
37 }
The exception that is thrown when authentication fails for an authentication stream.
Serves as the base class for system exceptions namespace.
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
AuthenticationException(string message, Exception innerException)
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class with...
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
AuthenticationException(string message)
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class with...
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
AuthenticationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class from...
AuthenticationException()
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class with...