Click or drag to resize

BaseEndpoint Class

The default Crosser endpoint that will expect the client to use the Crosser protocol.
Inheritance Hierarchy

Namespace:  Crosser.Server.Modules.Endpoint
Assembly:  Crosser.Server (in Crosser.Server.dll) Version: 0.0.5
Syntax
C#
public abstract class BaseEndpoint : IBaseEndpoint, 
	IDisposable

The BaseEndpoint type exposes the following members.

Constructors
  NameDescription
Public methodBaseEndpoint
Ctor
Top
Properties
  NameDescription
Public propertyAllowedPingFails
How many continous failed pings is allowed before disposing the connection?
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.
Public propertyBacklog
How large the backlog for incoming connections will be
Public propertyCertificate
The server-side certificate X509Certificate2. Certificates can be loaded with the helper => GetCertificateFromStore(String, StoreLocation)
Public propertyCertificateRequired
If true the client need to provide a certificate
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-.
Public propertyIPEndpoint
Connection endpoint
Public propertyLocation
The location of the endpoint, default is 'localhost'
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
Public propertyPort
Port number for the endpoint
Public propertyReadBufferSize
Size of the read buffer for the ITransport on the endpoint
Public propertySecureRequired
True if the endpoint uses encrypted communication
Public propertyServer
Reference to the IServer
Public propertySslProtocols
The accepted SslProtocols. Default is Tls12
Public propertyUseNagleAlgorithm
Default true
Public propertyWriteBufferSize
Size of the write buffer for the ITransport on the endpoint
Top
Methods
  NameDescription
Public methodConfig
Override this in the implementing Endpoint class
Public methodDispose
Cleans up resources and stop accepting client
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodProcessConnectionAttempt
Implement this in the concrete endpoint class
Public methodStart
Creates the IPEndpoint and starts listening for connections on the specified location:port
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also