Exemple #1
0
 public PropertyAnalysis(
     string name,
     MethodInfo getterInfo,
     TraceLoggingTypeInfo typeInfo,
     EventFieldAttribute fieldAttribute)
 {
     this.name           = name;
     this.getterInfo     = getterInfo;
     this.typeInfo       = typeInfo;
     this.fieldAttribute = fieldAttribute;
 }
Exemple #2
0
 public PropertyAnalysis(
     string name,
     MethodInfo getterInfo,
     TraceLoggingTypeInfo typeInfo,
     EventFieldAttribute fieldAttribute)
 {
     this.name = name;
     this.getterInfo = getterInfo;
     this.typeInfo = typeInfo;
     this.fieldAttribute = fieldAttribute;
 }
Exemple #3
0
 public PropertyAnalysis(
     string name,
     PropertyInfo propertyInfo,
     TraceLoggingTypeInfo typeInfo,
     EventFieldAttribute fieldAttribute)
 {
     this.name           = name;
     this.propertyInfo   = propertyInfo;
     this.getter         = PropertyValue.GetPropertyGetter(propertyInfo);
     this.typeInfo       = typeInfo;
     this.fieldAttribute = fieldAttribute;
 }
Exemple #4
0
 public PropertyAnalysis(
     string name,
     PropertyInfo propertyInfo,
     TraceLoggingTypeInfo typeInfo,
     EventFieldAttribute fieldAttribute)
 {
     this.name = name;
     this.propertyInfo = propertyInfo;
     this.getter = PropertyValue.GetPropertyGetter(propertyInfo);
     this.typeInfo = typeInfo;
     this.fieldAttribute = fieldAttribute;
 }