Exemplo n.º 1
0
 public TraceMethodCallAttribute(string functionName, string operationName = null, string labelName = null)
 {
     this.region        = ViewRegions.None;
     this.featureName   = functionName;
     this.OperationName = operationName;
     this.LabelName     = labelName;
 }
Exemplo n.º 2
0
 public FeatureInfo(ViewRegions region, string featureName, string methodName, object newValue)
 {
     this.Region      = region;
     this.FeatureName = featureName;
     this.MethodName  = methodName;
     if (newValue == null)
     {
         return;
     }
     this.NewValue = newValue.ToString();
 }
 public TracePropertyListCountAttribute(ViewRegions region, string feature)
     : base(region, feature)
 {
 }
Exemplo n.º 4
0
 public TracePropertyCallAttribute(ViewRegions region, string feature)
 {
     this.region      = region;
     this.featureName = feature;
 }
Exemplo n.º 5
0
 public FeatureInfo(ViewRegions region, string featureName, string methodName)
     : this(region, featureName, methodName, (object)null)
 {
 }