Поделиться через


HttpListenerException Конструкторы

Определение

Инициализирует новый экземпляр класса HttpListenerException.

Перегрузки

HttpListenerException()

Инициализирует новый экземпляр класса HttpListenerException.

HttpListenerException(Int32)

Инициализирует новый экземпляр класса HttpListenerException, используя указанный код ошибки.

HttpListenerException(Int32, String)

Инициализирует новый экземпляр класса HttpListenerException с указанным сообщением и кодом ошибки.

HttpListenerException(SerializationInfo, StreamingContext)
Устаревшие..

Инициализирует новый экземпляр класса HttpListenerException на основе указанных экземпляров классов SerializationInfo и StreamingContext.

HttpListenerException()

Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs

Инициализирует новый экземпляр класса HttpListenerException.

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

Комментарии

Этот конструктор задает ErrorCode свойства и Message с помощью последней ошибки Windows.

Применяется к

HttpListenerException(Int32)

Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs

Инициализирует новый экземпляр класса HttpListenerException, используя указанный код ошибки.

public:
 HttpListenerException(int errorCode);
public HttpListenerException (int errorCode);
new System.Net.HttpListenerException : int -> System.Net.HttpListenerException
Public Sub New (errorCode As Integer)

Параметры

errorCode
Int32

Значение Int32, идентифицирующее произошедшую ошибку.

Комментарии

Значение errorCode используется для задания ErrorCode свойства .

Применяется к

HttpListenerException(Int32, String)

Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs

Инициализирует новый экземпляр класса HttpListenerException с указанным сообщением и кодом ошибки.

public:
 HttpListenerException(int errorCode, System::String ^ message);
public HttpListenerException (int errorCode, string message);
new System.Net.HttpListenerException : int * string -> System.Net.HttpListenerException
Public Sub New (errorCode As Integer, message As String)

Параметры

errorCode
Int32

Значение Int32, идентифицирующее произошедшую ошибку.

message
String

Значение типа String, описывающее возникшую ошибку.

Комментарии

Значение errorCode используется для задания ErrorCode свойства . Параметр message используется для задания Message свойства .

Применяется к

HttpListenerException(SerializationInfo, StreamingContext)

Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs
Исходный код:
HttpListenerException.cs

Внимание!

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

Инициализирует новый экземпляр класса HttpListenerException на основе указанных экземпляров классов SerializationInfo и StreamingContext.

protected:
 HttpListenerException(System::Runtime::Serialization::SerializationInfo ^ serializationInfo, System::Runtime::Serialization::StreamingContext streamingContext);
protected HttpListenerException (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 HttpListenerException (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);
new System.Net.HttpListenerException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Net.HttpListenerException
[<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.Net.HttpListenerException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Net.HttpListenerException
Protected Sub New (serializationInfo As SerializationInfo, streamingContext As StreamingContext)

Параметры

serializationInfo
SerializationInfo

Объект SerializationInfo, который содержит сведения, требуемые для десериализации нового объекта HttpListenerException.

streamingContext
StreamingContext

Объект StreamingContext.

Атрибуты

См. также раздел

Применяется к