AsnContentException 생성자

정의

오버로드

AsnContentException()

기본 메시지를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

AsnContentException(String)

제공된 메시지를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

AsnContentException(SerializationInfo, StreamingContext)
사용되지 않음.

serialize된 데이터를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

AsnContentException(String, Exception)

제공된 메시지와 이 예외를 발생시킨 예외를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

AsnContentException()

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.cs

기본 메시지를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

public:
 AsnContentException();
public AsnContentException ();
Public Sub New ()

적용 대상

AsnContentException(String)

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.cs

제공된 메시지를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

public:
 AsnContentException(System::String ^ message);
public AsnContentException (string? message);
new System.Formats.Asn1.AsnContentException : string -> System.Formats.Asn1.AsnContentException
Public Sub New (message As String)

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

적용 대상

AsnContentException(SerializationInfo, StreamingContext)

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.cs

주의

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

serialize된 데이터를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

protected:
 AsnContentException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected AsnContentException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[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 AsnContentException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Formats.Asn1.AsnContentException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Formats.Asn1.AsnContentException
[<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.Formats.Asn1.AsnContentException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Formats.Asn1.AsnContentException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

serialize된 개체 데이터를 보유하는 개체입니다.

context
StreamingContext

원본 또는 대상에 대한 컨텍스트 정보입니다.

특성

적용 대상

AsnContentException(String, Exception)

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.cs

제공된 메시지와 이 예외를 발생시킨 예외를 사용하여 AsnContentException 클래스의 새 인스턴스를 초기화합니다.

public:
 AsnContentException(System::String ^ message, Exception ^ inner);
public AsnContentException (string? message, Exception? inner);
new System.Formats.Asn1.AsnContentException : string * Exception -> System.Formats.Asn1.AsnContentException
Public Sub New (message As String, inner As Exception)

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

inner
Exception

현재 예외의 원인인 예외입니다.

적용 대상