Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- using Microsoft.Extensions.Options;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace JT808.DotNetty.CleintBenchmark.Configs
- {
- public class ClientBenchmarkOptions : IOptions<ClientBenchmarkOptions>
- {
- public string IP { get; set; }
- public int Port { get; set; }
- public int DeviceCount { get; set; } = 10;
- /// <summary>
- /// 5000ms毫秒
- /// </summary>
- public int Interval { get; set; } = 5000;
- public ClientBenchmarkOptions Value =>this;
- }
- }
|