AdysTech.InfluxDB.Client.Net.InfluxMeasurement.InfluxMeasurement C# (CSharp) 메소드

InfluxMeasurement() 공개 메소드

public InfluxMeasurement ( string name ) : System
name string
리턴 System
        public InfluxMeasurement(string name)
        {
            Name = name;
            _fields = new HashSet<string>();
            _tags = new HashSet<string>();
        }