Esempio n. 1
0
 internal StructEventPropertyWithReflection(ITypeWithReflection declaringType, EventInfo @event)
 {
     this.@event = new EventPropertyWithReflection(declaringType, @event);
 }
Esempio n. 2
0
 internal ExplicitInterfaceEventWithReflection(ITypeWithReflection declaringType, Type interfaceType, EventInfo @event)
 {
     this.@event       = new EventPropertyWithReflection(declaringType, @event);
     explicitInterface = new InterfaceReferenceWithReflection(interfaceType);
 }
Esempio n. 3
0
 internal SealedClassEventPropertyWithReflection(IInternalTypeWithReflection declaringType, EventInfo @event)
 {
     this.@event        = new EventPropertyWithReflection(declaringType, @event);
     this.declaringType = declaringType;
 }