Пример #1
0
 public static NCDCResponse <NCDCDataCollection> GetDataForLocationTypeLocationAndDataType(string datasetName,
                                                                                           string locationTypeId, string locationId, string dataTypeId, string token = null, NCDCOptions options = null)
 {
     token = token ?? NCDCUtilities.GetUnlockedToken(); var command = new ListDataCommand(token, options);
     command.BuildDatasetLocationTypeLocationDataTypeUri(datasetName, locationTypeId, locationId, dataTypeId);
     return(NCDCCommand <NCDCDataCollection> .PerformAction(command));
 }
Пример #2
0
 public static NCDCResponse<NCDCDataCollection> GetDataForLocationTypeLocationAndDataType(string datasetName,
     string locationTypeId, string locationId, string dataTypeId, string token = null, NCDCOptions options = null)
 {
     token = token ?? NCDCUtilities.GetUnlockedToken(); var command = new ListDataCommand(token, options);
     command.BuildDatasetLocationTypeLocationDataTypeUri(datasetName, locationTypeId, locationId, dataTypeId);
     return NCDCCommand<NCDCDataCollection>.PerformAction(command);
 }
Пример #3
0
 public static NCDCResponse <NCDCDataCollection> GetDataForDataset(string datasetName, string token = null, NCDCOptions options = null)
 {
     token = token ?? NCDCUtilities.GetUnlockedToken(); var command = new ListDataCommand(datasetName, token, options);
     return(NCDCCommand <NCDCDataCollection> .PerformAction(command));
 }
Пример #4
0
 public static NCDCResponse<NCDCDataCollection> GetDataForDataset(string datasetName, string token = null, NCDCOptions options = null)
 {
     token = token ?? NCDCUtilities.GetUnlockedToken(); var command = new ListDataCommand(datasetName, token, options);
     return NCDCCommand<NCDCDataCollection>.PerformAction(command);
 }