Bagikan melalui


HttpListenerException Konstruktor

Definisi

Menginisialisasi instans baru kelas HttpListenerException.

Overload

HttpListenerException()

Menginisialisasi instans baru kelas HttpListenerException.

HttpListenerException(Int32)

Menginisialisasi instans HttpListenerException baru kelas menggunakan kode kesalahan yang ditentukan.

HttpListenerException(Int32, String)

Menginisialisasi instans HttpListenerException baru kelas menggunakan kode kesalahan dan pesan yang ditentukan.

HttpListenerException(SerializationInfo, StreamingContext)
Kedaluwarsa.

Menginisialisasi instans HttpListenerException baru kelas dari instans SerializationInfo dan StreamingContext kelas yang ditentukan.

HttpListenerException()

Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs

Menginisialisasi instans baru kelas HttpListenerException.

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

Keterangan

Konstruktor ini mengatur ErrorCode properti dan Message menggunakan kesalahan Windows terbaru.

Berlaku untuk

HttpListenerException(Int32)

Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs

Menginisialisasi instans HttpListenerException baru kelas menggunakan kode kesalahan yang ditentukan.

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

Parameter

errorCode
Int32

Int32 Nilai yang mengidentifikasi kesalahan yang terjadi.

Keterangan

Nilai digunakan errorCode untuk mengatur ErrorCode properti.

Berlaku untuk

HttpListenerException(Int32, String)

Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs

Menginisialisasi instans HttpListenerException baru kelas menggunakan kode kesalahan dan pesan yang ditentukan.

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)

Parameter

errorCode
Int32

Int32 Nilai yang mengidentifikasi kesalahan yang terjadi.

message
String

Yang String menjelaskan kesalahan yang terjadi.

Keterangan

Nilai digunakan errorCode untuk mengatur ErrorCode properti. Parameter message digunakan untuk mengatur Message properti .

Berlaku untuk

HttpListenerException(SerializationInfo, StreamingContext)

Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs
Sumber:
HttpListenerException.cs

Perhatian

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

Menginisialisasi instans HttpListenerException baru kelas dari instans SerializationInfo dan StreamingContext kelas yang ditentukan.

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)

Parameter

serializationInfo
SerializationInfo

Objek SerializationInfo yang berisi informasi yang diperlukan untuk mendeserialisasi objek baru HttpListenerException .

streamingContext
StreamingContext

Objek StreamingContext.

Atribut

Lihat juga

Berlaku untuk