public string GetVariableInfo(string Variable, String authToken) { VariablesResponseType aVType = GetVariableInfoObject(Variable, null); string xml = WSUtils.ConvertToXml(aVType, typeof(VariablesResponseType)); return(xml); }
public string GetSites(string[] SiteNumbers, String authToken) { SiteInfoResponseType aSite = GetSitesObject(SiteNumbers, null); string xml = WSUtils.ConvertToXml(aSite, typeof(SiteInfoResponseType)); return(xml); }
public virtual string GetSiteInfo(string SiteNumber, String authToken) { SiteInfoResponseType aSite = GetSiteInfoObject(SiteNumber, null); string xml = WSUtils.ConvertToXml(aSite, typeof(SiteInfoResponseType)); return(xml); }
public virtual string GetValues(string locationParam, string VariableCode, string StartDate, string EndDate, String authToken) { TimeSeriesResponseType aSite = GetValuesObject(locationParam, VariableCode, StartDate, EndDate, null); return(WSUtils.ConvertToXml(aSite, typeof(TimeSeriesResponseType))); }
public override string GetVariableInfo(string variable, String authToken) { VariablesResponseTypeGeneric aVType = GetVariableInfoObject(variable, null); string xml = WSUtils.ConvertToXml(aVType, typeof(xsd.VariablesResponse)); return(xml); }
public override string GetSiteInfo(string site, String authToken) { SiteInfoResponseTypeGeneric aSite = GetSiteInfoObject(site, null); string xml = WSUtils.ConvertToXml(aSite, typeof(xsd.SiteInfoResponse)); return(xml); }
public virtual string GetValues(string location, string variable, string startDate, string endDate, String authToken) { TimeSeriesResponseType aSite = GetValuesObject(location, variable, startDate, endDate, null); return(WSUtils.ConvertToXml(aSite, typeof(TimeSeriesResponseType))); }