Ejemplo n.º 1
0
 public FabricPerformanceCounterDefinition(
     int id,
     string name,
     string description,
     FabricPerformanceCounterType counterType,
     string symbol) :
     this(id, Int32.MinValue, name, description, counterType, symbol, new List <string>())
 {
 }
Ejemplo n.º 2
0
 public FabricPerformanceCounterDefinition(
     int id,
     string name,
     string description,
     FabricPerformanceCounterType counterType,
     string symbol,
     IEnumerable <string> attributes) :
     this(id, Int32.MinValue, name, description, counterType, symbol, attributes)
 {
 }
Ejemplo n.º 3
0
 public FabricPerformanceCounterDefinition(
     int id,
     int baseId,
     string name,
     string description,
     FabricPerformanceCounterType counterType,
     string symbol,
     IEnumerable <string> attributes)
 {
     Id          = id;
     BaseId      = baseId;
     Name        = name;
     Description = description;
     CounterType = counterType;
     Symbol      = symbol;
     Attributes  = attributes;
 }