AsnContentException コンストラクター

定義

オーバーロード

AsnContentException()

既定のメッセージを使用して AsnContentException クラスの新しいインスタンスを初期化します。

AsnContentException(String)

提供されたメッセージを使用して AsnContentException クラスの新しいインスタンスを初期化します。

AsnContentException(SerializationInfo, StreamingContext)
古い.

シリアル化したデータを使用して、AsnContentException クラスの新しいインスタンスを初期化します。

AsnContentException(String, Exception)

この例外の原因となった、提供されたメッセージと例外を使用して AsnContentException クラスの新しいインスタンスを初期化します。

AsnContentException()

ソース:
AsnContentException.cs
ソース:
AsnContentException.cs
ソース:
AsnContentException.cs

既定のメッセージを使用して AsnContentException クラスの新しいインスタンスを初期化します。

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

適用対象

AsnContentException(String)

ソース:
AsnContentException.cs
ソース:
AsnContentException.cs
ソース:
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)

ソース:
AsnContentException.cs
ソース:
AsnContentException.cs
ソース:
AsnContentException.cs

注意事項

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

シリアル化したデータを使用して、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

シリアル化されたオブジェクト データを保持するオブジェクト。

context
StreamingContext

転送元または転送先に関するコンテキスト情報。

属性

適用対象

AsnContentException(String, Exception)

ソース:
AsnContentException.cs
ソース:
AsnContentException.cs
ソース:
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

現在の例外の原因となった例外。

適用対象