Property Bound
Bound
Whether the driver has been bound to an endpoint with the Bind(NetworkEndpoint) method. Binding to an endpoint is a prerequisite to listening to new connections (with the Listen() method). It is also a prerequiste to making new connections, but the Connect(NetworkEndpoint) method will automatically bind the driver to the wildcard address if it's not already bound.
Declaration
public bool Bound { get; }
Property Value
Type | Description |
---|---|
bool | True if the driver is bound, false otherwise. |