Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Class: RT.Servers.HttpEndpoint

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
  • Overrides: object.GetHashCode()
Returns a hash value for this object.
string
  • Overrides: object.ToString()
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. (see also remarks)
intThe 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.