private System.IAsyncResult BeginGetSite(string siteID, System.AsyncCallback callback, object asyncState)
 {
     Chart.ChartServiceReference.GetSiteRequest inValue = new Chart.ChartServiceReference.GetSiteRequest();
     inValue.Body        = new Chart.ChartServiceReference.GetSiteRequestBody();
     inValue.Body.siteID = siteID;
     return(((Chart.ChartServiceReference.ChartSoap)(this)).BeginGetSite(inValue, callback, asyncState));
 }
 public System.IAsyncResult BeginGetSite(Chart.ChartServiceReference.GetSiteRequest request, System.AsyncCallback callback, object asyncState)
 {
     object[] _args = new object[1];
     _args[0] = request;
     System.IAsyncResult _result = base.BeginInvoke("GetSite", _args, callback, asyncState);
     return(_result);
 }
 System.IAsyncResult Chart.ChartServiceReference.ChartSoap.BeginGetSite(Chart.ChartServiceReference.GetSiteRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetSite(request, callback, asyncState));
 }