Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- 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;
- }
- }
|