UdpClient.Ttl 属性

定义

获取或设置一个值,它指定由 UdpClient 发送的 Internet 协议 (IP) 数据包的生存时间 (TTL)。

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

属性值

TTL 值。

示例

下面的代码示例演示如何使用 Ttl 属性。

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);
}

注解

TTL 值指示在路由器放弃数据包之前数据包可以遍历的最大路由器数,并且 Internet 控制消息协议 (ICMP) “超出 TTL”错误消息返回到发送方。

适用于