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