Пример #1
0
 public PropertyInfoX(TypeX type, UInt32 propertyId)
 {
     _type       = type;
     _propertyId = propertyId;
     _property   = type.Owner.GetCustomPropertyById(_propertyId);
 }
Пример #2
0
 public PropertyInfoX(PropertyClass prop)
 {
     _property   = prop;
     _type       = prop.RootPointer.TypeDesigntime as TypeX;
     _propertyId = prop.MemberId;
 }
 public ConstructorInfoX(TypeX type)
 {
     _type = type;
 }
 public MethodInfoX(MethodClass method)
 {
     _methodId = method.MethodID;
     _method   = method;
     _type     = method.RootPointer.TypeDesigntime as TypeX;
 }
 public MethodInfoX(TypeX type, UInt32 methodId)
 {
     _methodId = methodId;
     _type     = type;
     _method   = _type.Owner.GetCustomMethodById(methodId);
 }
Пример #6
0
 public EventInfoX(EventClass e)
 {
     _event = e;
     _type  = e.RootPointer.TypeDesigntime;
 }
Пример #7
0
 public MethodInfoEventHandler(EventClass e)
 {
     _event = e;
     _type  = e.RootPointer.TypeDesigntime;
 }