Example #1
0
        public static NCDCResponse <NCDCLocation> GetLocationInformation(string datasetName, string locationId, string token = null, NCDCOptions options = null)
        {
            token = token ?? NCDCUtilities.GetUnlockedToken();
            var command = new ShowLocationCommand(datasetName, locationId, token, options);

            return(NCDCCommand <NCDCLocation> .PerformAction(command));
        }
Example #2
0
 public static NCDCResponse<NCDCLocation> GetLocationInformation(string datasetName, string locationId, string token = null, NCDCOptions options = null)
 {
     token = token ?? NCDCUtilities.GetUnlockedToken();
     var command = new ShowLocationCommand(datasetName, locationId, token, options);
     return NCDCCommand<NCDCLocation>.PerformAction(command);
 }