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