Socket.Bind(SocketAddress) Method

Definition

Binds the socket to a local address.

[Android.Runtime.Register("bind", "(Ljava/net/SocketAddress;)V", "GetBind_Ljava_net_SocketAddress_Handler")]
public virtual void Bind (Java.Net.SocketAddress? bindpoint);
[<Android.Runtime.Register("bind", "(Ljava/net/SocketAddress;)V", "GetBind_Ljava_net_SocketAddress_Handler")>]
abstract member Bind : Java.Net.SocketAddress -> unit
override this.Bind : Java.Net.SocketAddress -> unit

Parameters

bindpoint
SocketAddress

the SocketAddress to bind to

Attributes

Exceptions

if the given SocketAddress is invalid or not supported.

if the socket is already bound or an error occurs while binding.

Remarks

Binds the socket to a local address.

If the address is null, then the system will pick up an ephemeral port and a valid local address to bind the socket.

Added in 1.4.

Java documentation for java.net.Socket.bind(java.net.SocketAddress).

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