Ejemplo n.º 1
0
 public QueryConnectionsResult(List<Location> ambiguousFrom, List<Location> ambiguousVia, List<Location> ambiguousTo)
 {
     this.status = QueryConnectionsResult.Status.AMBIGUOUS;
     this.ambiguousFrom = ambiguousFrom;
     this.ambiguousVia = ambiguousVia;
     this.ambiguousTo = ambiguousTo;
     this.queryUri = (string)null;
     this.from = (Location)null;
     this.via = (Location)null;
     this.to = (Location)null;
     this.CommandEarlier = (string)null;
     this.connections = (List<Connection>)null;
 }
Ejemplo n.º 2
0
 public QueryConnectionsResult(string queryUri, Location from, Location via, Location to, string commandEarlier, string commandLater, List<Connection> connections)
 {
     this.status = QueryConnectionsResult.Status.OK;
     this.queryUri = queryUri;
     this.from = from;
     this.via = via;
     this.to = to;
     this.CommandEarlier = commandEarlier;
     this.CommandLater = commandLater;
     this.connections = connections;
     this.ambiguousFrom = (List<Location>)null;
     this.ambiguousVia = (List<Location>)null;
     this.ambiguousTo = (List<Location>)null;
 }
Ejemplo n.º 3
-1
 public QueryConnectionsResult(QueryConnectionsResult.Status status)
 {
     this.status = status;
     this.ambiguousFrom = (List<Location>)null;
     this.ambiguousVia = (List<Location>)null;
     this.ambiguousTo = (List<Location>)null;
     this.queryUri = (string)null;
     this.from = (Location)null;
     this.via = (Location)null;
     this.to = (Location)null;
     this.CommandEarlier = (string)null;
     this.connections = (List<Connection>)null;
 }