internal MetricNamespace(string id, string type, string name, MetricNamespaceName properties)
 {
     Id         = id;
     Type       = type;
     Name       = name;
     Properties = properties;
 }
Пример #2
0
 internal MetricNamespace(string id, string type, string name, NamespaceClassification?classification, MetricNamespaceName properties)
 {
     Id             = id;
     Type           = type;
     Name           = name;
     Classification = classification;
     Properties     = properties;
 }
Пример #3
0
 private void AreEqual(MetricNamespaceName exp, MetricNamespaceName act)
 {
     Assert.AreEqual(exp.MetricNamespaceNameValue, act.MetricNamespaceNameValue);
 }