Class TransportOptions
- Namespace
- RDCore.SDK.Server.Configuration
- Assembly
- RDCore.SDK.dll
Transport-level configuration. RDCore uses NamedPipe by default.
public record TransportOptions : IEquatable<TransportOptions>
- Inheritance
-
TransportOptions
- Implements
- Inherited Members
Properties
PipeConfig
Configuration settings for named pipe-enabled transport.
public NamedPipeTransportOptions PipeConfig { get; set; }
Property Value
SocketConfig
Configration settings for socket-enabled transport.
public SocketTransportOptions SocketConfig { get; set; }
Property Value
Type
The type of transport layer (platform-wide).
public ServerTransportLayerMode Type { get; set; }
Property Value
Remarks
👉 Only NamedPipe is supported for now, but StdIO and Sockets could technically be made to work as well.