Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PropertyAnalysis.cs
Go to the documentation of this file.
2
4
5internal sealed class PropertyAnalysis
6{
7 internal readonly string name;
8
9 internal readonly PropertyInfo propertyInfo;
10
11 internal readonly Func<PropertyValue, PropertyValue> getter;
12
13 internal readonly TraceLoggingTypeInfo typeInfo;
14
16
18 {
19 this.name = name;
20 this.propertyInfo = propertyInfo;
22 this.typeInfo = typeInfo;
23 this.fieldAttribute = fieldAttribute;
24 }
25}
PropertyAnalysis(string name, PropertyInfo propertyInfo, TraceLoggingTypeInfo typeInfo, EventFieldAttribute fieldAttribute)
readonly Func< PropertyValue, PropertyValue > getter
readonly EventFieldAttribute fieldAttribute
static Func< PropertyValue, PropertyValue > GetPropertyGetter(PropertyInfo property)