Esempio n. 1
0
 public WriteMessage(InfluxKey key, IDictionary <string, object> fields)
 {
     Key     = key;
     _fields = fields == null ? new SortedDictionary <string, object>(StringComparer.Ordinal) : fields.ToValidatedSortable();
 }
Esempio n. 2
0
 public WriteMessage(InfluxKey key, IDictionary<string, object> fields)
 {
     Key = key;
     _fields = fields == null ? new SortedDictionary<string, object>(StringComparer.Ordinal) : fields.ToValidatedSortable();
 }
Esempio n. 3
0
 public WriteMessage(InfluxKey key)
 {
     Key     = key;
     _fields = new SortedDictionary <string, object>(StringComparer.Ordinal);
 }
Esempio n. 4
0
 public WriteMessage(InfluxKey key)
 {
     Key = key;
     _fields = new SortedDictionary<string, object>(StringComparer.Ordinal);
 }