UdpClient.Ttl 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,它指定由 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”错误消息返回到发送方。