HttpListenerException Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe HttpListenerException.
Sobrecargas
HttpListenerException() |
Inicializa uma nova instância da classe HttpListenerException. |
HttpListenerException(Int32) |
Inicializa uma nova instância da classe HttpListenerException usando o código de erro especificado. |
HttpListenerException(Int32, String) |
Inicializa uma nova instância da classe HttpListenerException usando o código de erro e a mensagem especificados. |
HttpListenerException(SerializationInfo, StreamingContext) |
Obsoleto.
Inicializa uma nova instância da classe HttpListenerException das instâncias especificadas das classes SerializationInfo e StreamingContext. |
HttpListenerException()
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
Inicializa uma nova instância da classe HttpListenerException.
public:
HttpListenerException();
public HttpListenerException ();
Public Sub New ()
Comentários
Esse construtor define as ErrorCode propriedades e Message usando o erro mais recente do Windows.
Aplica-se a
HttpListenerException(Int32)
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
Inicializa uma nova instância da classe HttpListenerException usando o código de erro especificado.
public:
HttpListenerException(int errorCode);
public HttpListenerException (int errorCode);
new System.Net.HttpListenerException : int -> System.Net.HttpListenerException
Public Sub New (errorCode As Integer)
Parâmetros
Comentários
O valor de errorCode
é usado para definir a ErrorCode propriedade .
Aplica-se a
HttpListenerException(Int32, String)
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
Inicializa uma nova instância da classe HttpListenerException usando o código de erro e a mensagem especificados.
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)
Parâmetros
Comentários
O valor de errorCode
é usado para definir a ErrorCode propriedade . O message
parâmetro é usado para definir a Message propriedade .
Aplica-se a
HttpListenerException(SerializationInfo, StreamingContext)
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
- Origem:
- HttpListenerException.cs
Cuidado
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Inicializa uma nova instância da classe HttpListenerException das instâncias especificadas das classes SerializationInfo e 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)
Parâmetros
- serializationInfo
- SerializationInfo
Um objeto SerializationInfo que contém as informações necessárias para desserializar o objeto HttpListenerException.
- streamingContext
- StreamingContext
Um objeto StreamingContext.
- Atributos