csharp
public record class WebSocketTransportOptionsHow the transport behaves.
No guide page documents this yet — the page shows what the code says about itself.
Fields and properties (6)
public Uri ListenAddressWhere a server listens. A port of zero lets the operating system choose.
public Uri RemoteAddressWhere a client connects.
public int MaxConnectionsHow many clients a server will hold.
public TimeSpan TimeoutHow long without hearing anything before a peer is considered gone.
public TimeSpan KeepAliveIntervalHow often to say something when there is nothing to say.
public TimeSpan ConnectTimeoutHow long a client waits for the handshake before giving up.
Used by (4)
- CompositeTransportTestsVixen.Net.Transport.Composite.Tests
- RealWebSocketTestsVixen.Net.Transport.WebSocket.Tests
- WebSocketTransportVixen.Net.Transport.WebSocket
- WebSocketTransportConformanceTestsVixen.Net.Transport.WebSocket.Tests