Bagikan melalui


UdpClient.Ttl Properti

Definisi

Mendapatkan atau menetapkan nilai yang menentukan nilai Time to Live (TTL) paket Protokol Internet (IP) yang dikirim oleh UdpClient.

public:
 property short Ttl { short get(); void set(short value); };
public short Ttl { get; set; }
member this.Ttl : int16 with get, set
Public Property Ttl As Short

Nilai Properti

Nilai TTL.

Contoh

Contoh kode berikut menunjukkan penggunaan Ttl properti .

static void GetSetTtl( UdpClient^ u )
{
   // Set the Time To Live (TTL) for this client.
   u->Ttl = 42;
   Console::WriteLine(  "Ttl value is {0}", u->Ttl );
}
public static void GetSetTtl(UdpClient u)
{
    // Set the Time To Live (TTL) for this client.
    u.Ttl = 42;
    Console.WriteLine("Ttl value is {0}",
        u.Ttl);
}

Keterangan

Nilai TTL menunjukkan jumlah maksimum router yang dapat dilalui paket sebelum perute membuang paket dan pesan kesalahan Internet Control Message Protocol (ICMP) "TTL terlampaui" dikembalikan ke pengirim.

Berlaku untuk