Dreamine.Communication.Sockets 1.0.2
Dreamine.Communication.Sockets 통신 기능과 관련 API를 제공합니다.
로딩중...
검색중...
일치하는것 없음
TcpServerTransportOptions.cs
이 파일의 문서화 페이지로 가기
2
4
13public sealed class TcpServerTransportOptions
14{
23 public string Host { get; set; } = "0.0.0.0";
24
33 public int Port { get; set; } = 5000;
34
43 public int Backlog { get; set; } = 100;
44
53 public int ReceiveBufferSize { get; set; } = 8192;
54
63 public int SendBufferSize { get; set; } = 8192;
64
74}