Method GetLocalEndPoint
GetLocalEndPoint()
Get the local endpoint (the endpoint remote peers will use to reach this driver) used by the first driver inside NetworkDriverStore. This is similar to calling GetLocalEndPoint(int) with NetworkDriverStore.FirstDriverId as argument.
Declaration
public NetworkEndpoint GetLocalEndPoint()
Returns
Type | Description |
---|---|
NetworkEndpoint | The local endpoint of the first driver. |
GetLocalEndPoint(int)
Get the local endpoint used by the driver (the endpoint remote peers will use to reach this driver).
When multiple drivers exist, e.g. when using both IPC and Socket connection, multiple drivers will be available
in the NetworkDriverStore.
Declaration
public NetworkEndpoint GetLocalEndPoint(int driverId)
Parameters
Type | Name | Description |
---|---|---|
int | driverId | Id of the driver. See GetNetworkDriver(int) |
Returns
Type | Description |
---|---|
NetworkEndpoint | The local endpoint of the driver. |