Bagikan melalui


HttpListener.Start Metode

Definisi

Memungkinkan instans ini menerima permintaan masuk.

public:
 void Start();
public void Start ();
member this.Start : unit -> unit
Public Sub Start ()

Pengecualian

Panggilan fungsi Win32 gagal. Periksa properti pengecualian ErrorCode untuk menentukan penyebab pengecualian.

Objek ini ditutup.

Contoh

Contoh kode berikut menunjukkan menggunakan Start metode untuk mulai memproses permintaan masuk.


public static void NonblockingListener(string [] prefixes)
{
    HttpListener listener = new HttpListener();
    foreach (string s in prefixes)
    {
        listener.Prefixes.Add(s);
    }
    listener.Start();
    IAsyncResult result = listener.BeginGetContext(new AsyncCallback(ListenerCallback),listener);
    // Applications can do some work here while waiting for the
    // request. If no work can be done until you have processed a request,
    // use a wait handle to prevent this thread from terminating
    // while the asynchronous operation completes.
    Console.WriteLine("Waiting for request to be processed asyncronously.");
    result.AsyncWaitHandle.WaitOne();
    Console.WriteLine("Request processed asyncronously.");
    listener.Close();
}
Public Shared Sub NonblockingListener(ByVal prefixes As String())
    Dim listener As HttpListener = New HttpListener()

    For Each s As String In prefixes
        listener.Prefixes.Add(s)
    Next

    listener.Start()
    Dim result As IAsyncResult = listener.BeginGetContext(New AsyncCallback(AddressOf ListenerCallback), listener)
    ' Applications can do some work here while waiting for the 
    ' request. If no work can be done until you have processed a request,
    ' use a wait handle to prevent this thread from terminating
    ' while the asynchronous operation completes.
    Console.WriteLine("Waiting for request to be processed asyncronously.")
    result.AsyncWaitHandle.WaitOne()
    Console.WriteLine("Request processed asyncronously.")
    listener.Close()
End Sub

Keterangan

Metode ini harus dipanggil sebelum Anda memanggil GetContext metode atau BeginGetContext .

Setelah memulai HttpListener objek, Anda dapat menggunakan Stop metode untuk menghentikannya.

Catatan

Jika instans pendengar ini menggunakan https, Anda harus menginstal dan memilih Sertifikat Server. Jika tidak, HttpWebRequest kueri ini HttpListener akan gagal dengan penutupan koneksi yang tidak terduga. Anda dapat mengonfigurasi Sertifikat Server dan opsi pendengar lainnya dengan menggunakan HttpCfg.exe.

Catatan Bagi Pemanggil

Anggota ini mengeluarkan informasi pelacakan saat Anda mengaktifkan pelacakan jaringan di aplikasi Anda. Untuk informasi selengkapnya, lihat Pelacakan Jaringan di .NET Framework.

Berlaku untuk