Język

CommunicationObjectAbortedException Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy CommunicationObjectAbortedException.

Przeciążenia

Nazwa Opis
CommunicationObjectAbortedException()

Inicjuje nowe wystąpienie klasy CommunicationObjectAbortedException.

CommunicationObjectAbortedException(String)

Inicjuje nowe wystąpienie CommunicationObjectAbortedException klasy z określonym komunikatem.

CommunicationObjectAbortedException(SerializationInfo, StreamingContext)

Inicjuje CommunicationObjectAbortedException nowe wystąpienie klasy używanej do deserializacji danych do CommunicationObjectAbortedException obiektu.

CommunicationObjectAbortedException(String, Exception)

Inicjuje nowe wystąpienie CommunicationObjectAbortedException klasy przy użyciu określonego komunikatu i wyjątku wewnętrznego.

CommunicationObjectAbortedException()

Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs

Inicjuje nowe wystąpienie klasy CommunicationObjectAbortedException.

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

Dotyczy

CommunicationObjectAbortedException(String)

Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs

Inicjuje nowe wystąpienie CommunicationObjectAbortedException klasy z określonym komunikatem.

public:
 CommunicationObjectAbortedException(System::String ^ message);
public CommunicationObjectAbortedException(string message);
new System.ServiceModel.CommunicationObjectAbortedException : string -> System.ServiceModel.CommunicationObjectAbortedException
Public Sub New (message As String)

Parametry

message
String

Komunikat przeniesiony w wyjątku.

Uwagi

Tworzy nowy CommunicationObjectAbortedException przy użyciu określonego messageelementu .

Dotyczy

CommunicationObjectAbortedException(SerializationInfo, StreamingContext)

Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs

Inicjuje CommunicationObjectAbortedException nowe wystąpienie klasy używanej do deserializacji danych do CommunicationObjectAbortedException obiektu.

protected:
 CommunicationObjectAbortedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected CommunicationObjectAbortedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ServiceModel.CommunicationObjectAbortedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ServiceModel.CommunicationObjectAbortedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parametry

info
SerializationInfo

SerializationInfo przechowujące zserializowane dane obiektu dotyczące zgłaszanego wyjątku.

context
StreamingContext

StreamingContext zawierający kontekstowe informacje o źródle lub miejscu docelowym.

Uwagi

Ten konstruktor jest wywoływany podczas deserializacji w celu przywrócenia obiektu wyjątku przesyłanego za pośrednictwem strumienia.

Dotyczy

CommunicationObjectAbortedException(String, Exception)

Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs
Źródło:
CommunicationObjectAbortedException.cs

Inicjuje nowe wystąpienie CommunicationObjectAbortedException klasy przy użyciu określonego komunikatu i wyjątku wewnętrznego.

public:
 CommunicationObjectAbortedException(System::String ^ message, Exception ^ innerException);
public CommunicationObjectAbortedException(string message, Exception innerException);
new System.ServiceModel.CommunicationObjectAbortedException : string * Exception -> System.ServiceModel.CommunicationObjectAbortedException
Public Sub New (message As String, innerException As Exception)

Parametry

message
String

Komunikat o wyjątku.

innerException
Exception

Wyjątek wewnętrzny.

Uwagi

Tworzy nowy CommunicationObjectAbortedException przy użyciu określonych message wartości i innerException.

Dotyczy