Click or drag to resize

ConnectionSharing Enumeration

How and whether to share connections to the same address.

Namespace:  Demo3D.Net
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 10.0.0.0 (10.0.0.0)
Syntax
C#
public enum ConnectionSharing
Members
  Member nameValueDescription
Default0 Open request: Don't share the underlying connection to the peer unless forced. Service flags: Connections using this service may be shared, but it's not compulsory.
New1 Open request: Must not share any existing connection to the peer, but must instead result in a new direct connection to the peer.
Shared2 Open request: If there's an existing connection to the peer, then the Connection returned must share it. Service flags: Connections using this service must share protocol streams.
Exclusive3 Open request: Connection should have exclusive access to the peer.
See Also