public PropertyAnalysis( string name, MethodInfo getterInfo, TraceLoggingTypeInfo typeInfo, EventFieldAttribute fieldAttribute) { this.name = name; this.getterInfo = getterInfo; this.typeInfo = typeInfo; this.fieldAttribute = fieldAttribute; }
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; }