AdysTech.InfluxDB.Client.Net.InfluxMeasurement.InfluxMeasurement C# (CSharp) Method

InfluxMeasurement() public method

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