Click or drag to resize

SocketFlags Enumeration

Client and server socket flags, specific to the ProtocolHead.

Namespace:  Demo3D.Net
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
[FlagsAttribute]
public enum SocketFlags
Members
  Member nameValueDescription
Persistent1 Connection is persistent.
Shared2 Client or service only. Share connections to the peer.
Private4 Client only. This connection is private. Overrides Shared and also marks the connection as private from the rest of Demo3D.
Exclusive8 Client only. There can be only one Connection to the peer.
NoCloseConnections16 Server only. True to keep client connections open when the server is closed. See also CloseClients.
NoLogConnections32 Server only. True to supress logging connections.
NoLogDisconnections64 Server only. True to supress logging disconnections.
SocketFlags255 All SocketFlags.
See Also