UdpClient.Ttl Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
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.