Summary
Contains endpoint information that specifies where the HTTP server will listen for incoming connections.
Constructors
HttpEndpoint(string bindAddress, int port, bool secure = false) |
Creates an instance of HttpEndpoint. |
Instance methods
bool | |
Compares two HttpEndpoint objects for equality. |
int | | Returns a hash value for this object. |
string | | Returns a human-readable representation of this endpoint. |
Instance properties
string | |
The IP address of the interface to which the HTTP server should bind, or null to let the server listen
on all network interfaces. |
int | | The port on which the server should listen for connections. |
bool | |
Specifies whether this should be a secured (HTTPS) connection. The X509 certificate defined in the HttpServerOptions must not be null . |