Click or drag to resize

HttpEndpoint Properties

The HttpEndpoint type exposes the following members.

Properties
  NameDescription
Public propertyAllowedOrigins
Accepts all origins by default ('*'). See AllowedOrigins for example
Public propertyAllowedPingFails
How many continous failed pings is allowed before disposing the connection?
(Inherited from BaseEndpoint.)
Public propertyAuthRequired
True if the client need to authenticate before being able to send/receive other data. If true the client have to authenticate before the AuthTimeout expires.
(Inherited from BaseEndpoint.)
Public propertyBacklog
How large the backlog for incoming connections will be
(Inherited from BaseEndpoint.)
Public propertyCertificate
The server-side certificate X509Certificate2. Certificates can be loaded with the helper => GetCertificateFromStore(String, StoreLocation)
(Inherited from BaseEndpoint.)
Public propertyCertificateRequired
If true the client need to provide a certificate
(Inherited from BaseEndpoint.)
Public propertyInteractive
If true the full-duplex client will get confirmation messages for every operation. Default is true, but client can turn of when sending initial message of just by calling interact+/interact-.
(Inherited from BaseEndpoint.)
Public propertyIPEndpoint
Connection endpoint
(Inherited from BaseEndpoint.)
Public propertyLocation
The location of the endpoint, default is 'localhost'
(Inherited from BaseEndpoint.)
Public propertyPingTimeout
The PING timeout for this endpoint. Less or equal to zero will disable PING/PONG on the endpoint. By default this is set to PingTimeout
(Inherited from BaseEndpoint.)
Public propertyPort
Port number for the endpoint
(Inherited from BaseEndpoint.)
Public propertyReadBufferSize
Size of the read buffer for the ITransport on the endpoint
(Inherited from BaseEndpoint.)
Public propertySecureRequired
True if the endpoint uses encrypted communication
(Inherited from BaseEndpoint.)
Public propertyServer
Reference to the IServer
(Inherited from BaseEndpoint.)
Public propertySslProtocols
The accepted SslProtocols. Default is Tls12
(Inherited from BaseEndpoint.)
Public propertyUseNagleAlgorithm
Default true
(Inherited from BaseEndpoint.)
Public propertyWriteBufferSize
Size of the write buffer for the ITransport on the endpoint
(Inherited from BaseEndpoint.)
Top
See Also