예제 #1
0
 public DynamicProxyEvent(EventInfo info, DynamicProperty implementation)
     : base(info.Name, info.EventHandlerType)
 {
     this._baseEvent      = info;
     this._implementation = implementation;
 }
예제 #2
0
 public DynamicProxyProperty(PropertyInfo info, DynamicProperty implementation)
     : base(info.Name, info.PropertyType, !info.CanWrite)
 {
     this._baseProperty   = info;
     this._implementation = implementation;
 }