Dreamine.Communication.Abstractions 1.0.2
Dreamine.Communication.Abstractions 공용 계약과 추상화를 제공합니다.
로딩중...
검색중...
일치하는것 없음
TransportOptions.cs
이 파일의 문서화 페이지로 가기
2
4
13public sealed class TransportOptions
14{
23 public TransportKind Kind { get; set; } = TransportKind.Tcp;
24
33 public string Host { get; set; } = "127.0.0.1";
34
43 public int Port { get; set; } = 0;
44
53 public string PortName { get; set; } = "COM1";
54
63 public int BaudRate { get; set; } = 9600;
64
73 public int ReadTimeoutMs { get; set; } = 3000;
74
83 public int WriteTimeoutMs { get; set; } = 3000;
84}