March 2002
Intermediate to advanced
864 pages
31h 8m
English
PropertyBuilder
This class represents a dynamically created property. To create a PropertyBuilder object, use the TypeBuilder.DefineProperty() method,
and specify the parameter types, return value type, and any additional special
settings through the System.Reflection.PropertyAttributes
enumeration. You can specify MethodBuilder objects for the property
get and property set methods using SetGetMethod() and SetSetMethod(). You
can also set the property’s default value using the SetConstant() method.
public sealed class PropertyBuilder : System.Reflection.PropertyInfo { // Public Instance Properties public override field PropertyAttributes Attributes{get; } // overrides System.Reflection.PropertyInfo public override field bool CanRead{get; } // overrides System.Reflection.PropertyInfo public override field bool CanWrite{get; } // overrides System.Reflection.PropertyInfo public override field Type DeclaringType{get; } // overrides System.Reflection.MemberInfo public override field string Name{get; } // overrides System.Reflection.MemberInfo public field PropertyToken PropertyToken{get; } public override field Type PropertyType{get; } // overrides System.Reflection.PropertyInfo public override field Type ReflectedType{get; } // overrides System.Reflection.MemberInfo // Public Instance Methods public method void AddOtherMethod( MethodBuilder mdBuilder); public override method MethodInfo[] GetAccessors( // overrides System.Reflection.PropertyInfo bool nonPublic); public override ...