Exemplo n.º 1
0
 public System.IAsyncResult BeginDownload(string name, System.AsyncCallback callback, object asyncState)
 {
     Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequest inValue = new Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequest();
     inValue.Body      = new Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequestBody();
     inValue.Body.name = name;
     return(((Sitecore.Rocks.SitecoreRocksPlugins.SitecoreRocksPluginsSoap)(this)).BeginDownload(inValue, callback, asyncState));
 }
Exemplo n.º 2
0
 public string Download(string name)
 {
     Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequest inValue = new Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequest();
     inValue.Body      = new Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequestBody();
     inValue.Body.name = name;
     Sitecore.Rocks.SitecoreRocksPlugins.DownloadResponse retVal = ((Sitecore.Rocks.SitecoreRocksPlugins.SitecoreRocksPluginsSoap)(this)).Download(inValue);
     return(retVal.Body.DownloadResult);
 }
Exemplo n.º 3
0
 System.IAsyncResult Sitecore.Rocks.SitecoreRocksPlugins.SitecoreRocksPluginsSoap.BeginDownload(Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginDownload(request, callback, asyncState));
 }
Exemplo n.º 4
0
 Sitecore.Rocks.SitecoreRocksPlugins.DownloadResponse Sitecore.Rocks.SitecoreRocksPlugins.SitecoreRocksPluginsSoap.Download(Sitecore.Rocks.SitecoreRocksPlugins.DownloadRequest request)
 {
     return(base.Channel.Download(request));
 }