AuthenticationException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AuthenticationException 클래스의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| AuthenticationException() |
메시지 없이 클래스의 새 인스턴스를 AuthenticationException 초기화합니다. |
| AuthenticationException(String) |
지정된 메시지를 사용하여 클래스의 AuthenticationException 새 인스턴스를 초기화합니다. |
| AuthenticationException(SerializationInfo, StreamingContext) |
사용되지 않음.
지정된 클래스 인스턴스에서 클래스의 AuthenticationException 새 인스턴스를 SerializationInfoStreamingContext 초기화합니다. |
| AuthenticationException(String, Exception) |
지정된 메시지 및 내부 예외를 AuthenticationException 사용하여 클래스의 새 인스턴스를 초기화합니다. |
AuthenticationException()
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
메시지 없이 클래스의 새 인스턴스를 AuthenticationException 초기화합니다.
public:
AuthenticationException();
public AuthenticationException();
Public Sub New ()
설명
이 생성자는 아무 작업도 수행하지 않습니다.
적용 대상
AuthenticationException(String)
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
지정된 메시지를 사용하여 클래스의 AuthenticationException 새 인스턴스를 초기화합니다.
public:
AuthenticationException(System::String ^ message);
public AuthenticationException(string? message);
public AuthenticationException(string message);
new System.Security.Authentication.AuthenticationException : string -> System.Security.Authentication.AuthenticationException
Public Sub New (message As String)
매개 변수
설명
이 생성자는 매개 변수의 Message 텍스트를 message 사용하여 속성을 초기화합니다.
InnerException 속성은 null로 설정됩니다.
추가 정보
적용 대상
AuthenticationException(SerializationInfo, StreamingContext)
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
주의
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
지정된 클래스 인스턴스에서 클래스의 AuthenticationException 새 인스턴스를 SerializationInfoStreamingContext 초기화합니다.
protected:
AuthenticationException(System::Runtime::Serialization::SerializationInfo ^ serializationInfo, System::Runtime::Serialization::StreamingContext streamingContext);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
protected AuthenticationException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Security.Authentication.AuthenticationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Security.Authentication.AuthenticationException
new System.Security.Authentication.AuthenticationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Security.Authentication.AuthenticationException
Protected Sub New (serializationInfo As SerializationInfo, streamingContext As StreamingContext)
매개 변수
- serializationInfo
- SerializationInfo
SerializationInfo 새 AuthenticationException 인스턴스를 역직렬화하는 데 필요한 정보를 포함하는 인스턴스입니다.
- streamingContext
- StreamingContext
인스턴스입니다 StreamingContext .
- 특성
추가 정보
적용 대상
AuthenticationException(String, Exception)
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
- Source:
- AuthenticationException.cs
지정된 메시지 및 내부 예외를 AuthenticationException 사용하여 클래스의 새 인스턴스를 초기화합니다.
public:
AuthenticationException(System::String ^ message, Exception ^ innerException);
public AuthenticationException(string? message, Exception? innerException);
public AuthenticationException(string message, Exception innerException);
new System.Security.Authentication.AuthenticationException : string * Exception -> System.Security.Authentication.AuthenticationException
Public Sub New (message As String, innerException As Exception)
매개 변수
설명
이 생성자는 매개 변수의 Message 텍스트를 message 사용하여 속성을 초기화하고 매개 변수 값을 사용하여 innerException 속성을 초기화합니다InnerException.