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)
Syntaxpublic enum ConnectionSharing
Members|
| Member name | Value | Description |
|---|
| Default | 0 |
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.
|
| New | 1 |
Open request: Must not share any existing connection to the peer, but must instead result in a new direct connection to the peer.
|
| Shared | 2 |
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.
|
| Exclusive | 3 |
Open request: Connection should have exclusive access to the peer.
|
See Also