Exemplo n.º 1
0
 public static NCDCResponse <NCDCDataCollection> GetDataForLocationAndStation(string datasetName, string locationId, string stationId, string token = null, NCDCOptions options = null)
 {
     token = token ?? NCDCUtilities.GetUnlockedToken(); var command = new ListDataCommand(token, options);
     command.BuildDatasetLocationStationUri(datasetName, locationId, stationId);
     return(NCDCCommand <NCDCDataCollection> .PerformAction(command));
 }
Exemplo n.º 2
0
 public static NCDCResponse<NCDCDataCollection> GetDataForLocationAndStation(string datasetName, string locationId, string stationId, string token = null, NCDCOptions options = null)
 {
     token = token ?? NCDCUtilities.GetUnlockedToken(); var command = new ListDataCommand(token, options);
     command.BuildDatasetLocationStationUri(datasetName, locationId, stationId);
     return NCDCCommand<NCDCDataCollection>.PerformAction(command);
 }