Ejemplo n.º 1
0
 /// <nodoc />
 public TypeQuery(DeserializationContext context, LineInfo location)
     : base(location)
 {
     EntityName = Read <NamedTypeReference>(context);
 }
Ejemplo n.º 2
0
 /// <nodoc />
 public TypeQuery(NamedTypeReference entityName, LineInfo location)
     : base(location)
 {
     Contract.Requires(entityName != null);
     EntityName = entityName;
 }