mscorlib(4.0.0.0) API with additions
AuthenticationException.cs
1
using
System
.
Runtime
.
Serialization
;
2
3
namespace
System.Security.Authentication
4
{
6
[Serializable]
7
public
class
AuthenticationException
:
SystemException
8
{
10
public
AuthenticationException
()
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
}
System.Security.Authentication.AuthenticationException
The exception that is thrown when authentication fails for an authentication stream.
Definition:
AuthenticationException.cs:7
System.SystemException
Serves as the base class for system exceptions namespace.
Definition:
SystemException.cs:9
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Security.Authentication.AuthenticationException.AuthenticationException
AuthenticationException(string message, Exception innerException)
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class with...
Definition:
AuthenticationException.cs:32
System.Runtime.Serialization.SerializationInfo
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Definition:
SerializationInfo.cs:12
System.Security.Authentication.AuthenticationException.AuthenticationException
AuthenticationException(string message)
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class with...
Definition:
AuthenticationException.cs:24
System.Security.Authentication
Definition:
AuthenticationException.cs:3
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Security.Authentication.AuthenticationException.AuthenticationException
AuthenticationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class from...
Definition:
AuthenticationException.cs:17
System.Security.Authentication.AuthenticationException.AuthenticationException
AuthenticationException()
Initializes a new instance of the T:System.Security.Authentication.AuthenticationException class with...
Definition:
AuthenticationException.cs:10
All cs
System.Security.Authentication
AuthenticationException.cs
Generated by
1.8.15