Class Udp.Bound
This message is sent by the listener actor in response to a Udp.Bind command. If the address to bind to specified a port number of zero, then this message can be inspected to find out which port was automatically assigned.
Implements
Inherited Members
Namespace: Akka.IO
Assembly: Akka.dll
Syntax
public sealed class Udp.Bound : Udp.Event, INoSerializationVerificationNeeded
Constructors
| Edit this page View SourceBound(EndPoint)
Creates a new Bound event with the specified local address.
Declaration
public Bound(EndPoint localAddress)
Parameters
| Type | Name | Description |
|---|---|---|
| EndPoint | localAddress | The local address the socket was bound to. |
Properties
| Edit this page View SourceLocalAddress
The local address the socket was bound to.
Declaration
public EndPoint LocalAddress { get; }
Property Value
| Type | Description |
|---|---|
| EndPoint |
Methods
| Edit this page View SourceToString()
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string |
Edit this page