SocketOptions.SoOobinline Field

Definition

Caution

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

When the OOBINLINE option is set, any TCP urgent data received on the socket will be received through the socket input stream.

[Android.Runtime.Register("SO_OOBINLINE")]
[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 SoOobinline = 4099;
[<Android.Runtime.Register("SO_OOBINLINE")>]
[<System.Obsolete("This constant will be removed in the future version. Use Java.Net.SocketOption enum directly instead of this field.", true)>]
val mutable SoOobinline : Java.Net.SocketOption

Field Value

Value = 4099
Attributes

Remarks

When the OOBINLINE option is set, any TCP urgent data received on the socket will be received through the socket input stream. When the option is disabled (which is the default) urgent data is silently discarded.

Java documentation for java.net.SocketOptions.SO_OOBINLINE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to