Example #1
0
 public MappedField(TypeSystemServices tss, FieldInfo field, MixedGenericType parentType) : base(tss, field)
 {
     _parentType = parentType;
 }
Example #2
0
 public MappedEvent(TypeSystemServices tss, EventInfo evt, MixedGenericType parentType) : base(tss, evt)
 {
     _parentType = parentType;
 }
Example #3
0
 public MappedConstructor(TypeSystemServices tss, ConstructorInfo ci, MixedGenericType parentType) : base(tss, ci, parentType)
 {
 }
Example #4
0
 public MappedProperty(TypeSystemServices tss, PropertyInfo property, MixedGenericType parentType) : base(tss, property)
 {
     _parentType = parentType;
 }
Example #5
0
 public MappedMethod(TypeSystemServices tss, MethodBase method, MixedGenericType parentType) : base(tss, method)
 {
     _parentType = parentType;
 }