Click or drag to resize

VaserServer Class

This class is used to start servers. Use: VaserServer srv = new VaserServer(...);
Inheritance Hierarchy
SystemObject
  VaserVaserServer

Namespace:  Vaser
Assembly:  Vaser (in Vaser.dll) Version: 1.1.23.0 (1.1.23.0)
Syntax
C#
public class VaserServer

The VaserServer type exposes the following members.

Constructors
  NameDescription
Public methodVaserServer(String, PortalCollection)
Creates a new internal pipe server for a client.
Public methodVaserServer(IPAddress, Int32, PortalCollection)
Creates a new unencrypted TCP server and listen for clients.
Public methodVaserServer(IPAddress, Int32, PortalCollection, VaserKerberosServer)
Creates a new Kerberos Server and listen for clients.
Public methodVaserServer(IPAddress, Int32, PortalCollection, VaserSSLServer)
Creates a new SSL Server and listen for clients.
Top
Properties
  NameDescription
Public propertyLinkList
A copy of all active links in this server
Public propertyPCollection
The PortalCollection of this server.
Top
Methods
  NameDescription
Protected methodOnDisconnectingLink
Raises an event when a client is disconnected.
Protected methodOnNewLink
Raises an event when a new client is connected.
Public methodStart
Starts listening for clients on selected Mode.
Public methodStop
Stops the Vaser Server
Public methodStatic memberStopEngine
Stops the garbage collector Timer
Top
Events
  NameDescription
Public eventDisconnectingLink
EventHandler for disconnecting links.
Public eventNewLink
EventHandler for new connected links.
Top
See Also