Vixen
02b45cc4
csharp
public record class WebSocketTransportOptions

How the transport behaves.

No guide page documents this yet — the page shows what the code says about itself.

Fields and properties (6)

  • public Uri ListenAddress

    Where a server listens. A port of zero lets the operating system choose.

  • public Uri RemoteAddress

    Where a client connects.

  • public int MaxConnections

    How many clients a server will hold.

  • public TimeSpan Timeout

    How long without hearing anything before a peer is considered gone.

  • public TimeSpan KeepAliveInterval

    How often to say something when there is nothing to say.

  • public TimeSpan ConnectTimeout

    How 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