SocketOptions.SoTimeout 字段

定义

注意

This constant will be removed in the future version. Use Java.Net.SocketOption enum directly instead of this field.

设置阻止套接字操作的超时:

[Android.Runtime.Register("SO_TIMEOUT")]
[System.Obsolete("This constant will be removed in the future version. Use Java.Net.SocketOption enum directly instead of this field.", true)]
public const Java.Net.SocketOption SoTimeout = 4102;
[<Android.Runtime.Register("SO_TIMEOUT")>]
[<System.Obsolete("This constant will be removed in the future version. Use Java.Net.SocketOption enum directly instead of this field.", true)>]
val mutable SoTimeout : Java.Net.SocketOption

字段值

Value = 4102
属性

注解

设置阻止套接字操作的超时:

ServerSocket.accept();
            SocketInputStream.read();
            DatagramSocket.receive();

在输入阻止操作生效之前,必须设置该选项。 如果超时过期,并且操作将继续阻止, <则会引发 B>java.io.InterruptedIOException</B> 。 在这种情况下,套接字未关闭。

适用于所有套接字:SocketImpl、DatagramSocketImpl

适用于 . 的 java.net.SocketOptions.SO_TIMEOUTJava 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于