NTP Analyzer  0.8.2
Analyze the operation of time servers
DriftStatConfiguration.cs
Go to the documentation of this file.
1 using System;
4 
5 namespace Ntp.Analyzer.Config.Node
6 {
8  {
10  string configName,
11  string file,
13  DateTimeKind? timeStamp,
14  int? frequency,
15  bool? initialRun,
16  bool? fixedRun
17  )
18  : base(configName, bulk, timeStamp, frequency, initialRun, fixedRun)
19  {
20  FileName = file;
21  }
22 
23  [NtpaIndex(10)]
24  [NtpaSetting(Symbol.KeywordFile)]
25  public string FileName { get; }
26  }
27 }
DriftStatConfiguration(string configName, string file, ReadingBulkConfiguration bulk, DateTimeKind?timeStamp, int?frequency, bool?initialRun, bool?fixedRun)