DatagramSocket.SetOption(ISocketOption, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the value of a socket option.
[Android.Runtime.Register("setOption", "(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/DatagramSocket;", "GetSetOption_Ljava_net_SocketOption_Ljava_lang_Object_Handler", ApiSince=33)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
public virtual Java.Net.DatagramSocket? SetOption (Java.Net.ISocketOption? name, Java.Lang.Object? value);
[<Android.Runtime.Register("setOption", "(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/DatagramSocket;", "GetSetOption_Ljava_net_SocketOption_Ljava_lang_Object_Handler", ApiSince=33)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
abstract member SetOption : Java.Net.ISocketOption * Java.Lang.Object -> Java.Net.DatagramSocket
override this.SetOption : Java.Net.ISocketOption * Java.Lang.Object -> Java.Net.DatagramSocket
Parameters
- name
- ISocketOption
The socket option
- value
- Object
The value of the socket option. A value of null
may be valid for some options.
Returns
this DatagramSocket
- Attributes
Remarks
Sets the value of a socket option.
Added in 9.
Java documentation for java.net.DatagramSocket.setOption(java.net.SocketOption<T>, T)
.
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.