CommunicationObjectAbortedException Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der CommunicationObjectAbortedException-Klasse.
Überlädt
| Name | Beschreibung |
|---|---|
| CommunicationObjectAbortedException() |
Initialisiert eine neue Instanz der CommunicationObjectAbortedException-Klasse. |
| CommunicationObjectAbortedException(String) |
Initialisiert eine neue Instanz der CommunicationObjectAbortedException Klasse mit der angegebenen Nachricht. |
| CommunicationObjectAbortedException(SerializationInfo, StreamingContext) |
Initialisiert eine neue Instanz der Klasse, die CommunicationObjectAbortedException zum Deserialisieren von Daten in ein CommunicationObjectAbortedException Objekt verwendet wird. |
| CommunicationObjectAbortedException(String, Exception) |
Initialisiert eine neue Instanz der CommunicationObjectAbortedException Klasse mithilfe der angegebenen Meldung und inneren Ausnahme. |
CommunicationObjectAbortedException()
Initialisiert eine neue Instanz der CommunicationObjectAbortedException-Klasse.
public:
CommunicationObjectAbortedException();
public CommunicationObjectAbortedException();
Public Sub New ()
Gilt für:
CommunicationObjectAbortedException(String)
Initialisiert eine neue Instanz der CommunicationObjectAbortedException Klasse mit der angegebenen Nachricht.
public:
CommunicationObjectAbortedException(System::String ^ message);
public CommunicationObjectAbortedException(string message);
new System.ServiceModel.CommunicationObjectAbortedException : string -> System.ServiceModel.CommunicationObjectAbortedException
Public Sub New (message As String)
Parameter
- message
- String
Die nachricht, die in der Ausnahme übertragen wurde.
Hinweise
Erstellt eine neue CommunicationObjectAbortedException mit dem angegebenen message.
Gilt für:
CommunicationObjectAbortedException(SerializationInfo, StreamingContext)
Initialisiert eine neue Instanz der Klasse, die CommunicationObjectAbortedException zum Deserialisieren von Daten in ein CommunicationObjectAbortedException Objekt verwendet wird.
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)
Parameter
- info
- SerializationInfo
Das SerializationInfo Objekt enthält die serialisierten Objektdaten zu der Ausnahme, die ausgelöst wird.
- context
- StreamingContext
Die StreamingContext kontextbezogene Informationen zur Quelle oder zum Ziel.
Hinweise
Dieser Konstruktor wird während der Deserialisierung aufgerufen, um das über einen Datenstrom übertragene Ausnahmeobjekt wiederherzustellen.
Gilt für:
CommunicationObjectAbortedException(String, Exception)
Initialisiert eine neue Instanz der CommunicationObjectAbortedException Klasse mithilfe der angegebenen Meldung und inneren Ausnahme.
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)
Parameter
- message
- String
Die Ausnahmemeldung.
- innerException
- Exception
Die innere Ausnahme.
Hinweise
Erstellt eine neue CommunicationObjectAbortedException mit dem angegebenen message und innerException.