From 92133e2c20d2a760b67a5707d912c2b8d3fc9d35 Mon Sep 17 00:00:00 2001 From: robvde Date: Tue, 4 Sep 2012 17:34:39 +0400 Subject: [PATCH] Domain management optimized and simplified: Creation of websites and pointers decoupled from Domains in order to choose freely the hostname of a website or pointer. Quota enforcement around domain pointers disabled, though registration is still in place --- WebsitePanel/Database/update_db.sql | 107 + .../PackagesProxy.cs | 303 +- .../ServersProxy.cs | 7140 ++++----- .../WebServersProxy.cs | 11937 +++++++--------- .../Code/DnsServers/DnsServerController.cs | 8 +- .../Code/Packages/PackageController.cs | 5 +- .../Code/Servers/ServerController.cs | 13 +- .../Code/WebServers/WebServerController.cs | 85 +- .../Code/Wizards/UserCreationWizard.cs | 10 +- .../esPackages.asmx.cs | 8 +- .../esServers.asmx.cs | 4 +- .../esWebServers.asmx.cs | 116 +- .../App_Data/SiteSettings.config | 4 +- .../UserCreateSpace.ascx.resx | 3 + .../DesktopModules/WebsitePanel/Domains.ascx | 6 +- .../WebsitePanel/Domains.ascx.designer.cs | 3 +- .../WebsitePanel/DomainsAddDomain.ascx | 13 +- .../WebsitePanel/DomainsAddDomain.ascx.cs | 31 +- .../DomainsAddDomain.ascx.designer.cs | 39 +- .../DomainsAddDomainSelectType.ascx | 4 +- ...omainsAddDomainSelectType.ascx.designer.cs | 3 +- .../WebsitePanel/UserCreateSpace.ascx | 13 + .../WebsitePanel/UserCreateSpace.ascx.cs | 4 +- .../UserCreateSpace.ascx.designer.cs | 36 + .../WebsitePanel/WebSitesAddPointer.ascx | 8 +- .../WebsitePanel/WebSitesAddPointer.ascx.cs | 2 +- .../WebSitesAddPointer.ascx.designer.cs | 30 +- .../WebsitePanel/WebSitesAddSite.ascx | 8 +- .../WebsitePanel/WebSitesAddSite.ascx.cs | 2 +- .../WebSitesAddSite.ascx.designer.cs | 30 +- WebsitePanel/Sources/generate_es_proxies.bat | 8 +- 31 files changed, 9005 insertions(+), 10978 deletions(-) diff --git a/WebsitePanel/Database/update_db.sql b/WebsitePanel/Database/update_db.sql index 4b0cff19..b92aa24b 100644 --- a/WebsitePanel/Database/update_db.sql +++ b/WebsitePanel/Database/update_db.sql @@ -5235,5 +5235,112 @@ INNER JOIN Servers AS S ON P.ServerID = S.ServerID INNER JOIN HostingPlans AS HP ON P.PlanID = HP.PlanID WHERE P.UserID = @UserID +RETURN +GO + + + + + + + +ALTER PROCEDURE [dbo].[GetDomainsPaged] +( + @ActorID int, + @PackageID int, + @ServerID int, + @Recursive bit, + @FilterColumn nvarchar(50) = '', + @FilterValue nvarchar(50) = '', + @SortColumn nvarchar(50), + @StartRow int, + @MaximumRows int +) +AS +SET NOCOUNT ON + +-- check rights +IF dbo.CheckActorPackageRights(@ActorID, @PackageID) = 0 +RAISERROR('You are not allowed to access this package', 16, 1) + +-- build query and run it to the temporary table +DECLARE @sql nvarchar(2000) + +IF @SortColumn = '' OR @SortColumn IS NULL +SET @SortColumn = 'DomainName' + +SET @sql = ' +DECLARE @Domains TABLE +( + ItemPosition int IDENTITY(1,1), + DomainID int +) +INSERT INTO @Domains (DomainID) +SELECT + D.DomainID +FROM Domains AS D +INNER JOIN Packages AS P ON D.PackageID = P.PackageID +INNER JOIN UsersDetailed AS U ON P.UserID = U.UserID +LEFT OUTER JOIN ServiceItems AS Z ON D.ZoneItemID = Z.ItemID +LEFT OUTER JOIN Services AS S ON Z.ServiceID = S.ServiceID +LEFT OUTER JOIN Servers AS SRV ON S.ServerID = SRV.ServerID +WHERE (D.IsInstantAlias = 0 AND D.IsDomainPointer = 0) AND + ((@Recursive = 0 AND D.PackageID = @PackageID) + OR (@Recursive = 1 AND dbo.CheckPackageParent(@PackageID, D.PackageID) = 1)) +AND (@ServerID = 0 OR (@ServerID > 0 AND S.ServerID = @ServerID)) +' + +IF @FilterColumn <> '' AND @FilterValue <> '' +SET @sql = @sql + ' AND ' + @FilterColumn + ' LIKE @FilterValue ' + +IF @SortColumn <> '' AND @SortColumn IS NOT NULL +SET @sql = @sql + ' ORDER BY ' + @SortColumn + ' ' + +SET @sql = @sql + ' SELECT COUNT(DomainID) FROM @Domains;SELECT + D.DomainID, + D.PackageID, + D.ZoneItemID, + D.DomainName, + D.HostingAllowed, + ISNULL(WS.ItemID, 0) AS WebSiteID, + WS.ItemName AS WebSiteName, + ISNULL(MD.ItemID, 0) AS MailDomainID, + MD.ItemName AS MailDomainName, + D.IsSubDomain, + D.IsInstantAlias, + D.IsDomainPointer, + + -- packages + P.PackageName, + + -- server + ISNULL(SRV.ServerID, 0) AS ServerID, + ISNULL(SRV.ServerName, '''') AS ServerName, + ISNULL(SRV.Comments, '''') AS ServerComments, + ISNULL(SRV.VirtualServer, 0) AS VirtualServer, + + -- user + P.UserID, + U.Username, + U.FirstName, + U.LastName, + U.FullName, + U.RoleID, + U.Email +FROM @Domains AS SD +INNER JOIN Domains AS D ON SD.DomainID = D.DomainID +INNER JOIN Packages AS P ON D.PackageID = P.PackageID +INNER JOIN UsersDetailed AS U ON P.UserID = U.UserID +LEFT OUTER JOIN ServiceItems AS WS ON D.WebSiteID = WS.ItemID +LEFT OUTER JOIN ServiceItems AS MD ON D.MailDomainID = MD.ItemID +LEFT OUTER JOIN ServiceItems AS Z ON D.ZoneItemID = Z.ItemID +LEFT OUTER JOIN Services AS S ON Z.ServiceID = S.ServiceID +LEFT OUTER JOIN Servers AS SRV ON S.ServerID = SRV.ServerID +WHERE SD.ItemPosition BETWEEN @StartRow + 1 AND @StartRow + @MaximumRows' + +exec sp_executesql @sql, N'@StartRow int, @MaximumRows int, @PackageID int, @FilterValue nvarchar(50), @ServerID int, @Recursive bit', +@StartRow, @MaximumRows, @PackageID, @FilterValue, @ServerID, @Recursive + + RETURN GO \ No newline at end of file diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/PackagesProxy.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/PackagesProxy.cs index 3c204247..83b3a007 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/PackagesProxy.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/PackagesProxy.cs @@ -29,7 +29,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.3074 +// Runtime Version:2.0.50727.6387 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -37,7 +37,7 @@ //------------------------------------------------------------------------------ // -// This source code was auto-generated by wsdl, Version=2.0.50727.42. +// This source code was auto-generated by wsdl, Version=2.0.50727.3038. // namespace WebsitePanel.EnterpriseServer { using System.Xml.Serialization; @@ -50,7 +50,7 @@ namespace WebsitePanel.EnterpriseServer { /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Web.Services.WebServiceBindingAttribute(Name="esPackagesSoap", Namespace="http://smbsaas/websitepanel/enterpriseserver")] @@ -178,7 +178,7 @@ namespace WebsitePanel.EnterpriseServer { /// public esPackages() { - this.Url = "http://127.0.0.1:9002/esPackages.asmx"; + this.Url = "http://localhost:9002/esPackages.asmx"; } /// @@ -2646,7 +2646,7 @@ namespace WebsitePanel.EnterpriseServer { /// [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddPackageWithResources", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public PackageResult AddPackageWithResources(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount) { + public PackageResult AddPackageWithResources(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName) { object[] results = this.Invoke("AddPackageWithResources", new object[] { userId, planId, @@ -2659,12 +2659,13 @@ namespace WebsitePanel.EnterpriseServer { createWebSite, createFtpAccount, ftpAccountName, - createMailAccount}); + createMailAccount, + hostName}); return ((PackageResult)(results[0])); } /// - public System.IAsyncResult BeginAddPackageWithResources(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount, System.AsyncCallback callback, object asyncState) { + public System.IAsyncResult BeginAddPackageWithResources(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddPackageWithResources", new object[] { userId, planId, @@ -2677,7 +2678,8 @@ namespace WebsitePanel.EnterpriseServer { createWebSite, createFtpAccount, ftpAccountName, - createMailAccount}, callback, asyncState); + createMailAccount, + hostName}, callback, asyncState); } /// @@ -2687,12 +2689,12 @@ namespace WebsitePanel.EnterpriseServer { } /// - public void AddPackageWithResourcesAsync(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount) { - this.AddPackageWithResourcesAsync(userId, planId, spaceName, statusId, sendLetter, createResources, domainName, tempDomain, createWebSite, createFtpAccount, ftpAccountName, createMailAccount, null); + public void AddPackageWithResourcesAsync(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName) { + this.AddPackageWithResourcesAsync(userId, planId, spaceName, statusId, sendLetter, createResources, domainName, tempDomain, createWebSite, createFtpAccount, ftpAccountName, createMailAccount, hostName, null); } /// - public void AddPackageWithResourcesAsync(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount, object userState) { + public void AddPackageWithResourcesAsync(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName, object userState) { if ((this.AddPackageWithResourcesOperationCompleted == null)) { this.AddPackageWithResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddPackageWithResourcesOperationCompleted); } @@ -2708,7 +2710,8 @@ namespace WebsitePanel.EnterpriseServer { createWebSite, createFtpAccount, ftpAccountName, - createMailAccount}, this.AddPackageWithResourcesOperationCompleted, userState); + createMailAccount, + hostName}, this.AddPackageWithResourcesOperationCompleted, userState); } private void OnAddPackageWithResourcesOperationCompleted(object arg) { @@ -2739,7 +2742,8 @@ namespace WebsitePanel.EnterpriseServer { bool createWebSite, bool createFtpAccount, string ftpAccountName, - bool createMailAccount) { + bool createMailAccount, + string hostName) { object[] results = this.Invoke("CreateUserWizard", new object[] { parentPackageId, username, @@ -2759,7 +2763,8 @@ namespace WebsitePanel.EnterpriseServer { createWebSite, createFtpAccount, ftpAccountName, - createMailAccount}); + createMailAccount, + hostName}); return ((int)(results[0])); } @@ -2784,6 +2789,7 @@ namespace WebsitePanel.EnterpriseServer { bool createFtpAccount, string ftpAccountName, bool createMailAccount, + string hostName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("CreateUserWizard", new object[] { @@ -2805,7 +2811,8 @@ namespace WebsitePanel.EnterpriseServer { createWebSite, createFtpAccount, ftpAccountName, - createMailAccount}, callback, asyncState); + createMailAccount, + hostName}, callback, asyncState); } /// @@ -2834,8 +2841,9 @@ namespace WebsitePanel.EnterpriseServer { bool createWebSite, bool createFtpAccount, string ftpAccountName, - bool createMailAccount) { - this.CreateUserWizardAsync(parentPackageId, username, password, roleId, firstName, lastName, email, secondaryEmail, htmlMail, sendAccountLetter, createPackage, planId, sendPackageLetter, domainName, tempDomain, createWebSite, createFtpAccount, ftpAccountName, createMailAccount, null); + bool createMailAccount, + string hostName) { + this.CreateUserWizardAsync(parentPackageId, username, password, roleId, firstName, lastName, email, secondaryEmail, htmlMail, sendAccountLetter, createPackage, planId, sendPackageLetter, domainName, tempDomain, createWebSite, createFtpAccount, ftpAccountName, createMailAccount, hostName, null); } /// @@ -2859,6 +2867,7 @@ namespace WebsitePanel.EnterpriseServer { bool createFtpAccount, string ftpAccountName, bool createMailAccount, + string hostName, object userState) { if ((this.CreateUserWizardOperationCompleted == null)) { this.CreateUserWizardOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateUserWizardOperationCompleted); @@ -2882,7 +2891,8 @@ namespace WebsitePanel.EnterpriseServer { createWebSite, createFtpAccount, ftpAccountName, - createMailAccount}, this.CreateUserWizardOperationCompleted, userState); + createMailAccount, + hostName}, this.CreateUserWizardOperationCompleted, userState); } private void OnCreateUserWizardOperationCompleted(object arg) { @@ -3143,8 +3153,7 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDiskspaceOverusageDetailsReport" + - "", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDiskspaceOverusageDetailsReport", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public System.Data.DataSet GetDiskspaceOverusageDetailsReport(int userId, int packageId) { object[] results = this.Invoke("GetDiskspaceOverusageDetailsReport", new object[] { userId, @@ -3188,8 +3197,7 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetBandwidthOverusageDetailsReport" + - "", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetBandwidthOverusageDetailsReport", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public System.Data.DataSet GetBandwidthOverusageDetailsReport(int userId, int packageId, System.DateTime startDate, System.DateTime endDate) { object[] results = this.Invoke("GetBandwidthOverusageDetailsReport", new object[] { userId, @@ -3244,23 +3252,12 @@ namespace WebsitePanel.EnterpriseServer { } } - - - - - - - - - - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetHostingPlansCompletedEventHandler(object sender, GetHostingPlansCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetHostingPlansCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3282,11 +3279,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetHostingAddonsCompletedEventHandler(object sender, GetHostingAddonsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetHostingAddonsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3308,11 +3305,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetHostingPlanCompletedEventHandler(object sender, GetHostingPlanCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetHostingPlanCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3334,11 +3331,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetHostingPlanQuotasCompletedEventHandler(object sender, GetHostingPlanQuotasCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetHostingPlanQuotasCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3360,11 +3357,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetHostingPlanContextCompletedEventHandler(object sender, GetHostingPlanContextCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetHostingPlanContextCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3386,11 +3383,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetUserAvailableHostingPlansCompletedEventHandler(object sender, GetUserAvailableHostingPlansCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetUserAvailableHostingPlansCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3412,11 +3409,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetUserAvailableHostingAddonsCompletedEventHandler(object sender, GetUserAvailableHostingAddonsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetUserAvailableHostingAddonsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3438,11 +3435,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddHostingPlanCompletedEventHandler(object sender, AddHostingPlanCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class AddHostingPlanCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3464,11 +3461,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateHostingPlanCompletedEventHandler(object sender, UpdateHostingPlanCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class UpdateHostingPlanCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3490,11 +3487,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteHostingPlanCompletedEventHandler(object sender, DeleteHostingPlanCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class DeleteHostingPlanCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3516,11 +3513,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackagesCompletedEventHandler(object sender, GetPackagesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackagesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3542,11 +3539,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetNestedPackagesSummaryCompletedEventHandler(object sender, GetNestedPackagesSummaryCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetNestedPackagesSummaryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3568,11 +3565,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawPackagesCompletedEventHandler(object sender, GetRawPackagesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetRawPackagesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3594,11 +3591,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void SearchServiceItemsPagedCompletedEventHandler(object sender, SearchServiceItemsPagedCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class SearchServiceItemsPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3620,11 +3617,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackagesPagedCompletedEventHandler(object sender, GetPackagesPagedCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackagesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3646,11 +3643,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetNestedPackagesPagedCompletedEventHandler(object sender, GetNestedPackagesPagedCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetNestedPackagesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3672,11 +3669,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackagePackagesCompletedEventHandler(object sender, GetPackagePackagesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackagePackagesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3698,11 +3695,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetMyPackagesCompletedEventHandler(object sender, GetMyPackagesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetMyPackagesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3724,11 +3721,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawMyPackagesCompletedEventHandler(object sender, GetRawMyPackagesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetRawMyPackagesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3750,11 +3747,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageCompletedEventHandler(object sender, GetPackageCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3776,11 +3773,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageContextCompletedEventHandler(object sender, GetPackageContextCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageContextCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3802,11 +3799,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageQuotasCompletedEventHandler(object sender, GetPackageQuotasCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageQuotasCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3828,11 +3825,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageQuotasForEditCompletedEventHandler(object sender, GetPackageQuotasForEditCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageQuotasForEditCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3854,11 +3851,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddPackageCompletedEventHandler(object sender, AddPackageCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class AddPackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3880,11 +3877,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdatePackageCompletedEventHandler(object sender, UpdatePackageCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class UpdatePackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3906,11 +3903,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdatePackageLiteralCompletedEventHandler(object sender, UpdatePackageLiteralCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class UpdatePackageLiteralCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3932,11 +3929,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdatePackageNameCompletedEventHandler(object sender, UpdatePackageNameCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class UpdatePackageNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3958,11 +3955,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeletePackageCompletedEventHandler(object sender, DeletePackageCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class DeletePackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -3984,11 +3981,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void ChangePackageStatusCompletedEventHandler(object sender, ChangePackageStatusCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class ChangePackageStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4010,11 +4007,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void EvaluateUserPackageTempateCompletedEventHandler(object sender, EvaluateUserPackageTempateCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class EvaluateUserPackageTempateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4036,11 +4033,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageSettingsCompletedEventHandler(object sender, GetPackageSettingsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageSettingsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4062,11 +4059,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdatePackageSettingsCompletedEventHandler(object sender, UpdatePackageSettingsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class UpdatePackageSettingsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4088,11 +4085,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageAddonsCompletedEventHandler(object sender, GetPackageAddonsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageAddonsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4114,11 +4111,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageAddonCompletedEventHandler(object sender, GetPackageAddonCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageAddonCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4140,11 +4137,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddPackageAddonByIdCompletedEventHandler(object sender, AddPackageAddonByIdCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class AddPackageAddonByIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4166,11 +4163,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddPackageAddonCompletedEventHandler(object sender, AddPackageAddonCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class AddPackageAddonCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4192,11 +4189,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddPackageAddonLiteralCompletedEventHandler(object sender, AddPackageAddonLiteralCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class AddPackageAddonLiteralCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4218,11 +4215,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdatePackageAddonCompletedEventHandler(object sender, UpdatePackageAddonCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class UpdatePackageAddonCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4244,11 +4241,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdatePackageAddonLiteralCompletedEventHandler(object sender, UpdatePackageAddonLiteralCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class UpdatePackageAddonLiteralCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4270,11 +4267,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeletePackageAddonCompletedEventHandler(object sender, DeletePackageAddonCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class DeletePackageAddonCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4296,11 +4293,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetSearchableServiceItemTypesCompletedEventHandler(object sender, GetSearchableServiceItemTypesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetSearchableServiceItemTypesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4322,11 +4319,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawPackageItemsByTypeCompletedEventHandler(object sender, GetRawPackageItemsByTypeCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetRawPackageItemsByTypeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4348,11 +4345,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawPackageItemsPagedCompletedEventHandler(object sender, GetRawPackageItemsPagedCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetRawPackageItemsPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4374,11 +4371,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawPackageItemsCompletedEventHandler(object sender, GetRawPackageItemsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetRawPackageItemsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4400,11 +4397,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DetachPackageItemCompletedEventHandler(object sender, DetachPackageItemCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class DetachPackageItemCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4426,11 +4423,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void MovePackageItemCompletedEventHandler(object sender, MovePackageItemCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class MovePackageItemCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4452,11 +4449,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageQuotaCompletedEventHandler(object sender, GetPackageQuotaCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageQuotaCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4478,11 +4475,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void SendAccountSummaryLetterCompletedEventHandler(object sender, SendAccountSummaryLetterCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class SendAccountSummaryLetterCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4504,11 +4501,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void SendPackageSummaryLetterCompletedEventHandler(object sender, SendPackageSummaryLetterCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class SendPackageSummaryLetterCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4530,11 +4527,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetEvaluatedPackageTemplateBodyCompletedEventHandler(object sender, GetEvaluatedPackageTemplateBodyCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetEvaluatedPackageTemplateBodyCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4556,11 +4553,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetEvaluatedAccountTemplateBodyCompletedEventHandler(object sender, GetEvaluatedAccountTemplateBodyCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetEvaluatedAccountTemplateBodyCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4582,11 +4579,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddPackageWithResourcesCompletedEventHandler(object sender, AddPackageWithResourcesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class AddPackageWithResourcesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4608,11 +4605,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void CreateUserWizardCompletedEventHandler(object sender, CreateUserWizardCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class CreateUserWizardCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4634,11 +4631,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackagesBandwidthPagedCompletedEventHandler(object sender, GetPackagesBandwidthPagedCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackagesBandwidthPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4660,11 +4657,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackagesDiskspacePagedCompletedEventHandler(object sender, GetPackagesDiskspacePagedCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackagesDiskspacePagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4686,11 +4683,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageBandwidthCompletedEventHandler(object sender, GetPackageBandwidthCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageBandwidthCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4712,11 +4709,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageDiskspaceCompletedEventHandler(object sender, GetPackageDiskspaceCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetPackageDiskspaceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4738,11 +4735,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetOverusageSummaryReportCompletedEventHandler(object sender, GetOverusageSummaryReportCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetOverusageSummaryReportCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4764,11 +4761,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDiskspaceOverusageDetailsReportCompletedEventHandler(object sender, GetDiskspaceOverusageDetailsReportCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetDiskspaceOverusageDetailsReportCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -4790,11 +4787,11 @@ namespace WebsitePanel.EnterpriseServer { } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetBandwidthOverusageDetailsReportCompletedEventHandler(object sender, GetBandwidthOverusageDetailsReportCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetBandwidthOverusageDetailsReportCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/ServersProxy.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/ServersProxy.cs index 1b51bbe5..0641dfb4 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/ServersProxy.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/ServersProxy.cs @@ -29,7 +29,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.5456 +// Runtime Version:2.0.50727.6387 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -37,10 +37,9 @@ //------------------------------------------------------------------------------ // -// This source code was auto-generated by wsdl, Version=2.0.50727.42. +// This source code was auto-generated by wsdl, Version=2.0.50727.3038. // -namespace WebsitePanel.EnterpriseServer -{ +namespace WebsitePanel.EnterpriseServer { using System.Xml.Serialization; using System.Web.Services; using System.ComponentModel; @@ -48,209 +47,208 @@ namespace WebsitePanel.EnterpriseServer using System; using System.Diagnostics; using System.Data; + using WebsitePanel.Providers; using WebsitePanel.Providers.Common; using WebsitePanel.Server; using WebsitePanel.Providers.DNS; using WebsitePanel.Providers.ResultObjects; - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Web.Services.WebServiceBindingAttribute(Name = "esServersSoap", Namespace = "http://smbsaas/websitepanel/enterpriseserver")] - public partial class esServers : Microsoft.Web.Services3.WebServicesClientProtocol - { - + [System.Web.Services.WebServiceBindingAttribute(Name="esServersSoap", Namespace="http://smbsaas/websitepanel/enterpriseserver")] + public partial class esServers : Microsoft.Web.Services3.WebServicesClientProtocol { + private System.Threading.SendOrPostCallback GetAllServersOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawAllServersOperationCompleted; - + private System.Threading.SendOrPostCallback GetServersOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawServersOperationCompleted; - + private System.Threading.SendOrPostCallback GetServerShortDetailsOperationCompleted; - + private System.Threading.SendOrPostCallback GetServerByIdOperationCompleted; - + private System.Threading.SendOrPostCallback GetServerByNameOperationCompleted; - + private System.Threading.SendOrPostCallback CheckServerAvailableOperationCompleted; - + private System.Threading.SendOrPostCallback AddServerOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateServerOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateServerConnectionPasswordOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateServerADPasswordOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteServerOperationCompleted; - + private System.Threading.SendOrPostCallback GetVirtualServersOperationCompleted; - + private System.Threading.SendOrPostCallback GetAvailableVirtualServicesOperationCompleted; - + private System.Threading.SendOrPostCallback GetVirtualServicesOperationCompleted; - + private System.Threading.SendOrPostCallback AddVirtualServicesOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteVirtualServicesOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateVirtualGroupsOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawServicesByServerIdOperationCompleted; - + private System.Threading.SendOrPostCallback GetServicesByServerIdOperationCompleted; - + private System.Threading.SendOrPostCallback GetServicesByServerIdGroupNameOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawServicesByGroupIdOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawServicesByGroupNameOperationCompleted; - + private System.Threading.SendOrPostCallback GetServiceInfoOperationCompleted; - + private System.Threading.SendOrPostCallback AddServiceOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateServiceOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteServiceOperationCompleted; - + private System.Threading.SendOrPostCallback GetServiceSettingsOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateServiceSettingsOperationCompleted; - + private System.Threading.SendOrPostCallback InstallServiceOperationCompleted; - + private System.Threading.SendOrPostCallback GetProviderServiceQuotaOperationCompleted; - + private System.Threading.SendOrPostCallback GetInstalledProvidersOperationCompleted; - + private System.Threading.SendOrPostCallback GetResourceGroupsOperationCompleted; - + private System.Threading.SendOrPostCallback GetResourceGroupOperationCompleted; - + private System.Threading.SendOrPostCallback GetProviderOperationCompleted; - + private System.Threading.SendOrPostCallback GetProvidersOperationCompleted; - + private System.Threading.SendOrPostCallback GetProvidersByGroupIdOperationCompleted; - + private System.Threading.SendOrPostCallback GetPackageServiceProviderOperationCompleted; - + private System.Threading.SendOrPostCallback IsInstalledOperationCompleted; - + private System.Threading.SendOrPostCallback GetServerVersionOperationCompleted; - + private System.Threading.SendOrPostCallback GetIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback GetIPAddressesPagedOperationCompleted; - + private System.Threading.SendOrPostCallback GetIPAddressOperationCompleted; - + private System.Threading.SendOrPostCallback AddIPAddressOperationCompleted; - + private System.Threading.SendOrPostCallback AddIPAddressesRangeOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateIPAddressOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteIPAddressOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback GetUnallottedIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback GetPackageIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback GetPackageUnassignedIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback AllocatePackageIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback AllocateMaximumPackageIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback DeallocatePackageIPAddressesOperationCompleted; - + private System.Threading.SendOrPostCallback GetClustersOperationCompleted; - + private System.Threading.SendOrPostCallback AddClusterOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteClusterOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawDnsRecordsByServiceOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawDnsRecordsByServerOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawDnsRecordsByPackageOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawDnsRecordsByGroupOperationCompleted; - + private System.Threading.SendOrPostCallback GetDnsRecordsByServiceOperationCompleted; - + private System.Threading.SendOrPostCallback GetDnsRecordsByServerOperationCompleted; - + private System.Threading.SendOrPostCallback GetDnsRecordsByPackageOperationCompleted; - + private System.Threading.SendOrPostCallback GetDnsRecordsByGroupOperationCompleted; - + private System.Threading.SendOrPostCallback GetDnsRecordOperationCompleted; - + private System.Threading.SendOrPostCallback AddDnsRecordOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateDnsRecordOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteDnsRecordOperationCompleted; - + private System.Threading.SendOrPostCallback GetDomainsOperationCompleted; - + private System.Threading.SendOrPostCallback GetMyDomainsOperationCompleted; - + private System.Threading.SendOrPostCallback GetResellerDomainsOperationCompleted; - + private System.Threading.SendOrPostCallback GetDomainsPagedOperationCompleted; - + private System.Threading.SendOrPostCallback GetDomainOperationCompleted; - + private System.Threading.SendOrPostCallback AddDomainOperationCompleted; - + private System.Threading.SendOrPostCallback AddDomainWithProvisioningOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateDomainOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteDomainOperationCompleted; - + private System.Threading.SendOrPostCallback DetachDomainOperationCompleted; - + private System.Threading.SendOrPostCallback EnableDomainDnsOperationCompleted; - + private System.Threading.SendOrPostCallback DisableDomainDnsOperationCompleted; - + private System.Threading.SendOrPostCallback CreateDomainInstantAliasOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteDomainInstantAliasOperationCompleted; - + private System.Threading.SendOrPostCallback GetDnsZoneRecordsOperationCompleted; - + private System.Threading.SendOrPostCallback GetRawDnsZoneRecordsOperationCompleted; - + private System.Threading.SendOrPostCallback AddDnsZoneRecordOperationCompleted; - + private System.Threading.SendOrPostCallback UpdateDnsZoneRecordOperationCompleted; - + private System.Threading.SendOrPostCallback DeleteDnsZoneRecordOperationCompleted; - + private System.Threading.SendOrPostCallback GetTerminalServicesSessionsOperationCompleted; - + private System.Threading.SendOrPostCallback CloseTerminalServicesSessionOperationCompleted; - + private System.Threading.SendOrPostCallback GetWindowsProcessesOperationCompleted; - + private System.Threading.SendOrPostCallback TerminateWindowsProcessOperationCompleted; - + private System.Threading.SendOrPostCallback InitWPIFeedsOperationCompleted; private System.Threading.SendOrPostCallback GetWPITabsOperationCompleted; @@ -274,307 +272,306 @@ namespace WebsitePanel.EnterpriseServer private System.Threading.SendOrPostCallback WpiGetLogsInDirectoryOperationCompleted; private System.Threading.SendOrPostCallback GetWindowsServicesOperationCompleted; - + private System.Threading.SendOrPostCallback ChangeWindowsServiceStatusOperationCompleted; - + private System.Threading.SendOrPostCallback GetLogNamesOperationCompleted; - + private System.Threading.SendOrPostCallback GetLogEntriesOperationCompleted; - + private System.Threading.SendOrPostCallback GetLogEntriesPagedOperationCompleted; - + private System.Threading.SendOrPostCallback ClearLogOperationCompleted; - + private System.Threading.SendOrPostCallback RebootSystemOperationCompleted; - + /// - public esServers() - { + public esServers() { this.Url = "http://localhost:9002/esServers.asmx"; } - + /// public event GetAllServersCompletedEventHandler GetAllServersCompleted; - + /// public event GetRawAllServersCompletedEventHandler GetRawAllServersCompleted; - + /// public event GetServersCompletedEventHandler GetServersCompleted; - + /// public event GetRawServersCompletedEventHandler GetRawServersCompleted; - + /// public event GetServerShortDetailsCompletedEventHandler GetServerShortDetailsCompleted; - + /// public event GetServerByIdCompletedEventHandler GetServerByIdCompleted; - + /// public event GetServerByNameCompletedEventHandler GetServerByNameCompleted; - + /// public event CheckServerAvailableCompletedEventHandler CheckServerAvailableCompleted; - + /// public event AddServerCompletedEventHandler AddServerCompleted; - + /// public event UpdateServerCompletedEventHandler UpdateServerCompleted; - + /// public event UpdateServerConnectionPasswordCompletedEventHandler UpdateServerConnectionPasswordCompleted; - + /// public event UpdateServerADPasswordCompletedEventHandler UpdateServerADPasswordCompleted; - + /// public event DeleteServerCompletedEventHandler DeleteServerCompleted; - + /// public event GetVirtualServersCompletedEventHandler GetVirtualServersCompleted; - + /// public event GetAvailableVirtualServicesCompletedEventHandler GetAvailableVirtualServicesCompleted; - + /// public event GetVirtualServicesCompletedEventHandler GetVirtualServicesCompleted; - + /// public event AddVirtualServicesCompletedEventHandler AddVirtualServicesCompleted; - + /// public event DeleteVirtualServicesCompletedEventHandler DeleteVirtualServicesCompleted; - + /// public event UpdateVirtualGroupsCompletedEventHandler UpdateVirtualGroupsCompleted; - + /// public event GetRawServicesByServerIdCompletedEventHandler GetRawServicesByServerIdCompleted; - + /// public event GetServicesByServerIdCompletedEventHandler GetServicesByServerIdCompleted; - + /// public event GetServicesByServerIdGroupNameCompletedEventHandler GetServicesByServerIdGroupNameCompleted; - + /// public event GetRawServicesByGroupIdCompletedEventHandler GetRawServicesByGroupIdCompleted; - + /// public event GetRawServicesByGroupNameCompletedEventHandler GetRawServicesByGroupNameCompleted; - + /// public event GetServiceInfoCompletedEventHandler GetServiceInfoCompleted; - + /// public event AddServiceCompletedEventHandler AddServiceCompleted; - + /// public event UpdateServiceCompletedEventHandler UpdateServiceCompleted; - + /// public event DeleteServiceCompletedEventHandler DeleteServiceCompleted; - + /// public event GetServiceSettingsCompletedEventHandler GetServiceSettingsCompleted; - + /// public event UpdateServiceSettingsCompletedEventHandler UpdateServiceSettingsCompleted; - + /// public event InstallServiceCompletedEventHandler InstallServiceCompleted; - + /// public event GetProviderServiceQuotaCompletedEventHandler GetProviderServiceQuotaCompleted; - + /// public event GetInstalledProvidersCompletedEventHandler GetInstalledProvidersCompleted; - + /// public event GetResourceGroupsCompletedEventHandler GetResourceGroupsCompleted; - + /// public event GetResourceGroupCompletedEventHandler GetResourceGroupCompleted; - + /// public event GetProviderCompletedEventHandler GetProviderCompleted; - + /// public event GetProvidersCompletedEventHandler GetProvidersCompleted; - + /// public event GetProvidersByGroupIdCompletedEventHandler GetProvidersByGroupIdCompleted; - + /// public event GetPackageServiceProviderCompletedEventHandler GetPackageServiceProviderCompleted; - + /// public event IsInstalledCompletedEventHandler IsInstalledCompleted; - + /// public event GetServerVersionCompletedEventHandler GetServerVersionCompleted; - + /// public event GetIPAddressesCompletedEventHandler GetIPAddressesCompleted; - + /// public event GetIPAddressesPagedCompletedEventHandler GetIPAddressesPagedCompleted; - + /// public event GetIPAddressCompletedEventHandler GetIPAddressCompleted; - + /// public event AddIPAddressCompletedEventHandler AddIPAddressCompleted; - + /// public event AddIPAddressesRangeCompletedEventHandler AddIPAddressesRangeCompleted; - + /// public event UpdateIPAddressCompletedEventHandler UpdateIPAddressCompleted; - + /// public event UpdateIPAddressesCompletedEventHandler UpdateIPAddressesCompleted; - + /// public event DeleteIPAddressCompletedEventHandler DeleteIPAddressCompleted; - + /// public event DeleteIPAddressesCompletedEventHandler DeleteIPAddressesCompleted; - + /// public event GetUnallottedIPAddressesCompletedEventHandler GetUnallottedIPAddressesCompleted; - + /// public event GetPackageIPAddressesCompletedEventHandler GetPackageIPAddressesCompleted; - + /// public event GetPackageUnassignedIPAddressesCompletedEventHandler GetPackageUnassignedIPAddressesCompleted; - + /// public event AllocatePackageIPAddressesCompletedEventHandler AllocatePackageIPAddressesCompleted; - + /// public event AllocateMaximumPackageIPAddressesCompletedEventHandler AllocateMaximumPackageIPAddressesCompleted; - + /// public event DeallocatePackageIPAddressesCompletedEventHandler DeallocatePackageIPAddressesCompleted; - + /// public event GetClustersCompletedEventHandler GetClustersCompleted; - + /// public event AddClusterCompletedEventHandler AddClusterCompleted; - + /// public event DeleteClusterCompletedEventHandler DeleteClusterCompleted; - + /// public event GetRawDnsRecordsByServiceCompletedEventHandler GetRawDnsRecordsByServiceCompleted; - + /// public event GetRawDnsRecordsByServerCompletedEventHandler GetRawDnsRecordsByServerCompleted; - + /// public event GetRawDnsRecordsByPackageCompletedEventHandler GetRawDnsRecordsByPackageCompleted; - + /// public event GetRawDnsRecordsByGroupCompletedEventHandler GetRawDnsRecordsByGroupCompleted; - + /// public event GetDnsRecordsByServiceCompletedEventHandler GetDnsRecordsByServiceCompleted; - + /// public event GetDnsRecordsByServerCompletedEventHandler GetDnsRecordsByServerCompleted; - + /// public event GetDnsRecordsByPackageCompletedEventHandler GetDnsRecordsByPackageCompleted; - + /// public event GetDnsRecordsByGroupCompletedEventHandler GetDnsRecordsByGroupCompleted; - + /// public event GetDnsRecordCompletedEventHandler GetDnsRecordCompleted; - + /// public event AddDnsRecordCompletedEventHandler AddDnsRecordCompleted; - + /// public event UpdateDnsRecordCompletedEventHandler UpdateDnsRecordCompleted; - + /// public event DeleteDnsRecordCompletedEventHandler DeleteDnsRecordCompleted; - + /// public event GetDomainsCompletedEventHandler GetDomainsCompleted; - + /// public event GetMyDomainsCompletedEventHandler GetMyDomainsCompleted; - + /// public event GetResellerDomainsCompletedEventHandler GetResellerDomainsCompleted; - + /// public event GetDomainsPagedCompletedEventHandler GetDomainsPagedCompleted; - + /// public event GetDomainCompletedEventHandler GetDomainCompleted; - + /// public event AddDomainCompletedEventHandler AddDomainCompleted; - + /// public event AddDomainWithProvisioningCompletedEventHandler AddDomainWithProvisioningCompleted; - + /// public event UpdateDomainCompletedEventHandler UpdateDomainCompleted; - + /// public event DeleteDomainCompletedEventHandler DeleteDomainCompleted; - + /// public event DetachDomainCompletedEventHandler DetachDomainCompleted; - + /// public event EnableDomainDnsCompletedEventHandler EnableDomainDnsCompleted; - + /// public event DisableDomainDnsCompletedEventHandler DisableDomainDnsCompleted; - + /// public event CreateDomainInstantAliasCompletedEventHandler CreateDomainInstantAliasCompleted; - + /// public event DeleteDomainInstantAliasCompletedEventHandler DeleteDomainInstantAliasCompleted; - + /// public event GetDnsZoneRecordsCompletedEventHandler GetDnsZoneRecordsCompleted; - + /// public event GetRawDnsZoneRecordsCompletedEventHandler GetRawDnsZoneRecordsCompleted; - + /// public event AddDnsZoneRecordCompletedEventHandler AddDnsZoneRecordCompleted; - + /// public event UpdateDnsZoneRecordCompletedEventHandler UpdateDnsZoneRecordCompleted; - + /// public event DeleteDnsZoneRecordCompletedEventHandler DeleteDnsZoneRecordCompleted; - + /// public event GetTerminalServicesSessionsCompletedEventHandler GetTerminalServicesSessionsCompleted; - + /// public event CloseTerminalServicesSessionCompletedEventHandler CloseTerminalServicesSessionCompleted; - + /// public event GetWindowsProcessesCompletedEventHandler GetWindowsProcessesCompleted; - + /// public event TerminateWindowsProcessCompletedEventHandler TerminateWindowsProcessCompleted; - + /// public event InitWPIFeedsCompletedEventHandler InitWPIFeedsCompleted; @@ -610,2102 +607,1765 @@ namespace WebsitePanel.EnterpriseServer /// public event GetWindowsServicesCompletedEventHandler GetWindowsServicesCompleted; - + /// public event ChangeWindowsServiceStatusCompletedEventHandler ChangeWindowsServiceStatusCompleted; - + /// public event GetLogNamesCompletedEventHandler GetLogNamesCompleted; - + /// public event GetLogEntriesCompletedEventHandler GetLogEntriesCompleted; - + /// public event GetLogEntriesPagedCompletedEventHandler GetLogEntriesPagedCompleted; - + /// public event ClearLogCompletedEventHandler ClearLogCompleted; - + /// public event RebootSystemCompletedEventHandler RebootSystemCompleted; - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetAllServers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServerInfo[] GetAllServers() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetAllServers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServerInfo[] GetAllServers() { object[] results = this.Invoke("GetAllServers", new object[0]); return ((ServerInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetAllServers(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetAllServers(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetAllServers", new object[0], callback, asyncState); } - + /// - public ServerInfo[] EndGetAllServers(System.IAsyncResult asyncResult) - { + public ServerInfo[] EndGetAllServers(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServerInfo[])(results[0])); } - + /// - public void GetAllServersAsync() - { + public void GetAllServersAsync() { this.GetAllServersAsync(null); } - + /// - public void GetAllServersAsync(object userState) - { - if ((this.GetAllServersOperationCompleted == null)) - { + public void GetAllServersAsync(object userState) { + if ((this.GetAllServersOperationCompleted == null)) { this.GetAllServersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAllServersOperationCompleted); } this.InvokeAsync("GetAllServers", new object[0], this.GetAllServersOperationCompleted, userState); } - - private void OnGetAllServersOperationCompleted(object arg) - { - if ((this.GetAllServersCompleted != null)) - { + + private void OnGetAllServersOperationCompleted(object arg) { + if ((this.GetAllServersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetAllServersCompleted(this, new GetAllServersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawAllServers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawAllServers() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawAllServers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawAllServers() { object[] results = this.Invoke("GetRawAllServers", new object[0]); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawAllServers(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawAllServers(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawAllServers", new object[0], callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawAllServers(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawAllServers(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawAllServersAsync() - { + public void GetRawAllServersAsync() { this.GetRawAllServersAsync(null); } - + /// - public void GetRawAllServersAsync(object userState) - { - if ((this.GetRawAllServersOperationCompleted == null)) - { + public void GetRawAllServersAsync(object userState) { + if ((this.GetRawAllServersOperationCompleted == null)) { this.GetRawAllServersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawAllServersOperationCompleted); } this.InvokeAsync("GetRawAllServers", new object[0], this.GetRawAllServersOperationCompleted, userState); } - - private void OnGetRawAllServersOperationCompleted(object arg) - { - if ((this.GetRawAllServersCompleted != null)) - { + + private void OnGetRawAllServersOperationCompleted(object arg) { + if ((this.GetRawAllServersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawAllServersCompleted(this, new GetRawAllServersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServerInfo[] GetServers() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServerInfo[] GetServers() { object[] results = this.Invoke("GetServers", new object[0]); return ((ServerInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetServers(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServers(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServers", new object[0], callback, asyncState); } - + /// - public ServerInfo[] EndGetServers(System.IAsyncResult asyncResult) - { + public ServerInfo[] EndGetServers(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServerInfo[])(results[0])); } - + /// - public void GetServersAsync() - { + public void GetServersAsync() { this.GetServersAsync(null); } - + /// - public void GetServersAsync(object userState) - { - if ((this.GetServersOperationCompleted == null)) - { + public void GetServersAsync(object userState) { + if ((this.GetServersOperationCompleted == null)) { this.GetServersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServersOperationCompleted); } this.InvokeAsync("GetServers", new object[0], this.GetServersOperationCompleted, userState); } - - private void OnGetServersOperationCompleted(object arg) - { - if ((this.GetServersCompleted != null)) - { + + private void OnGetServersOperationCompleted(object arg) { + if ((this.GetServersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServersCompleted(this, new GetServersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawServers() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawServers() { object[] results = this.Invoke("GetRawServers", new object[0]); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawServers(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawServers(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawServers", new object[0], callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawServers(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawServers(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawServersAsync() - { + public void GetRawServersAsync() { this.GetRawServersAsync(null); } - + /// - public void GetRawServersAsync(object userState) - { - if ((this.GetRawServersOperationCompleted == null)) - { + public void GetRawServersAsync(object userState) { + if ((this.GetRawServersOperationCompleted == null)) { this.GetRawServersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawServersOperationCompleted); } this.InvokeAsync("GetRawServers", new object[0], this.GetRawServersOperationCompleted, userState); } - - private void OnGetRawServersOperationCompleted(object arg) - { - if ((this.GetRawServersCompleted != null)) - { + + private void OnGetRawServersOperationCompleted(object arg) { + if ((this.GetRawServersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawServersCompleted(this, new GetRawServersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerShortDetails", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServerInfo GetServerShortDetails(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerShortDetails", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServerInfo GetServerShortDetails(int serverId) { object[] results = this.Invoke("GetServerShortDetails", new object[] { serverId}); return ((ServerInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetServerShortDetails(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServerShortDetails(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServerShortDetails", new object[] { serverId}, callback, asyncState); } - + /// - public ServerInfo EndGetServerShortDetails(System.IAsyncResult asyncResult) - { + public ServerInfo EndGetServerShortDetails(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServerInfo)(results[0])); } - + /// - public void GetServerShortDetailsAsync(int serverId) - { + public void GetServerShortDetailsAsync(int serverId) { this.GetServerShortDetailsAsync(serverId, null); } - + /// - public void GetServerShortDetailsAsync(int serverId, object userState) - { - if ((this.GetServerShortDetailsOperationCompleted == null)) - { + public void GetServerShortDetailsAsync(int serverId, object userState) { + if ((this.GetServerShortDetailsOperationCompleted == null)) { this.GetServerShortDetailsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerShortDetailsOperationCompleted); } this.InvokeAsync("GetServerShortDetails", new object[] { serverId}, this.GetServerShortDetailsOperationCompleted, userState); } - - private void OnGetServerShortDetailsOperationCompleted(object arg) - { - if ((this.GetServerShortDetailsCompleted != null)) - { + + private void OnGetServerShortDetailsOperationCompleted(object arg) { + if ((this.GetServerShortDetailsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServerShortDetailsCompleted(this, new GetServerShortDetailsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerById", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServerInfo GetServerById(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerById", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServerInfo GetServerById(int serverId) { object[] results = this.Invoke("GetServerById", new object[] { serverId}); return ((ServerInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetServerById(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServerById(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServerById", new object[] { serverId}, callback, asyncState); } - + /// - public ServerInfo EndGetServerById(System.IAsyncResult asyncResult) - { + public ServerInfo EndGetServerById(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServerInfo)(results[0])); } - + /// - public void GetServerByIdAsync(int serverId) - { + public void GetServerByIdAsync(int serverId) { this.GetServerByIdAsync(serverId, null); } - + /// - public void GetServerByIdAsync(int serverId, object userState) - { - if ((this.GetServerByIdOperationCompleted == null)) - { + public void GetServerByIdAsync(int serverId, object userState) { + if ((this.GetServerByIdOperationCompleted == null)) { this.GetServerByIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerByIdOperationCompleted); } this.InvokeAsync("GetServerById", new object[] { serverId}, this.GetServerByIdOperationCompleted, userState); } - - private void OnGetServerByIdOperationCompleted(object arg) - { - if ((this.GetServerByIdCompleted != null)) - { + + private void OnGetServerByIdOperationCompleted(object arg) { + if ((this.GetServerByIdCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServerByIdCompleted(this, new GetServerByIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerByName", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServerInfo GetServerByName(string serverName) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerByName", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServerInfo GetServerByName(string serverName) { object[] results = this.Invoke("GetServerByName", new object[] { serverName}); return ((ServerInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetServerByName(string serverName, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServerByName(string serverName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServerByName", new object[] { serverName}, callback, asyncState); } - + /// - public ServerInfo EndGetServerByName(System.IAsyncResult asyncResult) - { + public ServerInfo EndGetServerByName(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServerInfo)(results[0])); } - + /// - public void GetServerByNameAsync(string serverName) - { + public void GetServerByNameAsync(string serverName) { this.GetServerByNameAsync(serverName, null); } - + /// - public void GetServerByNameAsync(string serverName, object userState) - { - if ((this.GetServerByNameOperationCompleted == null)) - { + public void GetServerByNameAsync(string serverName, object userState) { + if ((this.GetServerByNameOperationCompleted == null)) { this.GetServerByNameOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerByNameOperationCompleted); } this.InvokeAsync("GetServerByName", new object[] { serverName}, this.GetServerByNameOperationCompleted, userState); } - - private void OnGetServerByNameOperationCompleted(object arg) - { - if ((this.GetServerByNameCompleted != null)) - { + + private void OnGetServerByNameOperationCompleted(object arg) { + if ((this.GetServerByNameCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServerByNameCompleted(this, new GetServerByNameCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckServerAvailable", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int CheckServerAvailable(string serverUrl, string password) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckServerAvailable", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int CheckServerAvailable(string serverUrl, string password) { object[] results = this.Invoke("CheckServerAvailable", new object[] { serverUrl, password}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginCheckServerAvailable(string serverUrl, string password, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginCheckServerAvailable(string serverUrl, string password, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("CheckServerAvailable", new object[] { serverUrl, password}, callback, asyncState); } - + /// - public int EndCheckServerAvailable(System.IAsyncResult asyncResult) - { + public int EndCheckServerAvailable(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void CheckServerAvailableAsync(string serverUrl, string password) - { + public void CheckServerAvailableAsync(string serverUrl, string password) { this.CheckServerAvailableAsync(serverUrl, password, null); } - + /// - public void CheckServerAvailableAsync(string serverUrl, string password, object userState) - { - if ((this.CheckServerAvailableOperationCompleted == null)) - { + public void CheckServerAvailableAsync(string serverUrl, string password, object userState) { + if ((this.CheckServerAvailableOperationCompleted == null)) { this.CheckServerAvailableOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckServerAvailableOperationCompleted); } this.InvokeAsync("CheckServerAvailable", new object[] { serverUrl, password}, this.CheckServerAvailableOperationCompleted, userState); } - - private void OnCheckServerAvailableOperationCompleted(object arg) - { - if ((this.CheckServerAvailableCompleted != null)) - { + + private void OnCheckServerAvailableOperationCompleted(object arg) { + if ((this.CheckServerAvailableCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.CheckServerAvailableCompleted(this, new CheckServerAvailableCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddServer", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddServer(ServerInfo server, bool autoDiscovery) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddServer", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddServer(ServerInfo server, bool autoDiscovery) { object[] results = this.Invoke("AddServer", new object[] { server, autoDiscovery}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddServer(ServerInfo server, bool autoDiscovery, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddServer(ServerInfo server, bool autoDiscovery, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddServer", new object[] { server, autoDiscovery}, callback, asyncState); } - + /// - public int EndAddServer(System.IAsyncResult asyncResult) - { + public int EndAddServer(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddServerAsync(ServerInfo server, bool autoDiscovery) - { + public void AddServerAsync(ServerInfo server, bool autoDiscovery) { this.AddServerAsync(server, autoDiscovery, null); } - + /// - public void AddServerAsync(ServerInfo server, bool autoDiscovery, object userState) - { - if ((this.AddServerOperationCompleted == null)) - { + public void AddServerAsync(ServerInfo server, bool autoDiscovery, object userState) { + if ((this.AddServerOperationCompleted == null)) { this.AddServerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddServerOperationCompleted); } this.InvokeAsync("AddServer", new object[] { server, autoDiscovery}, this.AddServerOperationCompleted, userState); } - - private void OnAddServerOperationCompleted(object arg) - { - if ((this.AddServerCompleted != null)) - { + + private void OnAddServerOperationCompleted(object arg) { + if ((this.AddServerCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddServerCompleted(this, new AddServerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServer", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateServer(ServerInfo server) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServer", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateServer(ServerInfo server) { object[] results = this.Invoke("UpdateServer", new object[] { server}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateServer(ServerInfo server, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateServer(ServerInfo server, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateServer", new object[] { server}, callback, asyncState); } - + /// - public int EndUpdateServer(System.IAsyncResult asyncResult) - { + public int EndUpdateServer(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateServerAsync(ServerInfo server) - { + public void UpdateServerAsync(ServerInfo server) { this.UpdateServerAsync(server, null); } - + /// - public void UpdateServerAsync(ServerInfo server, object userState) - { - if ((this.UpdateServerOperationCompleted == null)) - { + public void UpdateServerAsync(ServerInfo server, object userState) { + if ((this.UpdateServerOperationCompleted == null)) { this.UpdateServerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateServerOperationCompleted); } this.InvokeAsync("UpdateServer", new object[] { server}, this.UpdateServerOperationCompleted, userState); } - - private void OnUpdateServerOperationCompleted(object arg) - { - if ((this.UpdateServerCompleted != null)) - { + + private void OnUpdateServerOperationCompleted(object arg) { + if ((this.UpdateServerCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateServerCompleted(this, new UpdateServerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServerConnectionPassword", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateServerConnectionPassword(int serverId, string password) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServerConnectionPassword", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateServerConnectionPassword(int serverId, string password) { object[] results = this.Invoke("UpdateServerConnectionPassword", new object[] { serverId, password}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateServerConnectionPassword(int serverId, string password, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateServerConnectionPassword(int serverId, string password, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateServerConnectionPassword", new object[] { serverId, password}, callback, asyncState); } - + /// - public int EndUpdateServerConnectionPassword(System.IAsyncResult asyncResult) - { + public int EndUpdateServerConnectionPassword(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateServerConnectionPasswordAsync(int serverId, string password) - { + public void UpdateServerConnectionPasswordAsync(int serverId, string password) { this.UpdateServerConnectionPasswordAsync(serverId, password, null); } - + /// - public void UpdateServerConnectionPasswordAsync(int serverId, string password, object userState) - { - if ((this.UpdateServerConnectionPasswordOperationCompleted == null)) - { + public void UpdateServerConnectionPasswordAsync(int serverId, string password, object userState) { + if ((this.UpdateServerConnectionPasswordOperationCompleted == null)) { this.UpdateServerConnectionPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateServerConnectionPasswordOperationCompleted); } this.InvokeAsync("UpdateServerConnectionPassword", new object[] { serverId, password}, this.UpdateServerConnectionPasswordOperationCompleted, userState); } - - private void OnUpdateServerConnectionPasswordOperationCompleted(object arg) - { - if ((this.UpdateServerConnectionPasswordCompleted != null)) - { + + private void OnUpdateServerConnectionPasswordOperationCompleted(object arg) { + if ((this.UpdateServerConnectionPasswordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateServerConnectionPasswordCompleted(this, new UpdateServerConnectionPasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServerADPassword", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateServerADPassword(int serverId, string adPassword) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServerADPassword", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateServerADPassword(int serverId, string adPassword) { object[] results = this.Invoke("UpdateServerADPassword", new object[] { serverId, adPassword}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateServerADPassword(int serverId, string adPassword, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateServerADPassword(int serverId, string adPassword, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateServerADPassword", new object[] { serverId, adPassword}, callback, asyncState); } - + /// - public int EndUpdateServerADPassword(System.IAsyncResult asyncResult) - { + public int EndUpdateServerADPassword(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateServerADPasswordAsync(int serverId, string adPassword) - { + public void UpdateServerADPasswordAsync(int serverId, string adPassword) { this.UpdateServerADPasswordAsync(serverId, adPassword, null); } - + /// - public void UpdateServerADPasswordAsync(int serverId, string adPassword, object userState) - { - if ((this.UpdateServerADPasswordOperationCompleted == null)) - { + public void UpdateServerADPasswordAsync(int serverId, string adPassword, object userState) { + if ((this.UpdateServerADPasswordOperationCompleted == null)) { this.UpdateServerADPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateServerADPasswordOperationCompleted); } this.InvokeAsync("UpdateServerADPassword", new object[] { serverId, adPassword}, this.UpdateServerADPasswordOperationCompleted, userState); } - - private void OnUpdateServerADPasswordOperationCompleted(object arg) - { - if ((this.UpdateServerADPasswordCompleted != null)) - { + + private void OnUpdateServerADPasswordOperationCompleted(object arg) { + if ((this.UpdateServerADPasswordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateServerADPasswordCompleted(this, new UpdateServerADPasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteServer", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteServer(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteServer", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteServer(int serverId) { object[] results = this.Invoke("DeleteServer", new object[] { serverId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteServer(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteServer(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteServer", new object[] { serverId}, callback, asyncState); } - + /// - public int EndDeleteServer(System.IAsyncResult asyncResult) - { + public int EndDeleteServer(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteServerAsync(int serverId) - { + public void DeleteServerAsync(int serverId) { this.DeleteServerAsync(serverId, null); } - + /// - public void DeleteServerAsync(int serverId, object userState) - { - if ((this.DeleteServerOperationCompleted == null)) - { + public void DeleteServerAsync(int serverId, object userState) { + if ((this.DeleteServerOperationCompleted == null)) { this.DeleteServerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteServerOperationCompleted); } this.InvokeAsync("DeleteServer", new object[] { serverId}, this.DeleteServerOperationCompleted, userState); } - - private void OnDeleteServerOperationCompleted(object arg) - { - if ((this.DeleteServerCompleted != null)) - { + + private void OnDeleteServerOperationCompleted(object arg) { + if ((this.DeleteServerCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteServerCompleted(this, new DeleteServerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualServers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetVirtualServers() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualServers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetVirtualServers() { object[] results = this.Invoke("GetVirtualServers", new object[0]); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetVirtualServers(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetVirtualServers(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetVirtualServers", new object[0], callback, asyncState); } - + /// - public System.Data.DataSet EndGetVirtualServers(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetVirtualServers(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetVirtualServersAsync() - { + public void GetVirtualServersAsync() { this.GetVirtualServersAsync(null); } - + /// - public void GetVirtualServersAsync(object userState) - { - if ((this.GetVirtualServersOperationCompleted == null)) - { + public void GetVirtualServersAsync(object userState) { + if ((this.GetVirtualServersOperationCompleted == null)) { this.GetVirtualServersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVirtualServersOperationCompleted); } this.InvokeAsync("GetVirtualServers", new object[0], this.GetVirtualServersOperationCompleted, userState); } - - private void OnGetVirtualServersOperationCompleted(object arg) - { - if ((this.GetVirtualServersCompleted != null)) - { + + private void OnGetVirtualServersOperationCompleted(object arg) { + if ((this.GetVirtualServersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetVirtualServersCompleted(this, new GetVirtualServersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetAvailableVirtualServices", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetAvailableVirtualServices(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetAvailableVirtualServices", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetAvailableVirtualServices(int serverId) { object[] results = this.Invoke("GetAvailableVirtualServices", new object[] { serverId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetAvailableVirtualServices(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetAvailableVirtualServices(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetAvailableVirtualServices", new object[] { serverId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetAvailableVirtualServices(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetAvailableVirtualServices(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetAvailableVirtualServicesAsync(int serverId) - { + public void GetAvailableVirtualServicesAsync(int serverId) { this.GetAvailableVirtualServicesAsync(serverId, null); } - + /// - public void GetAvailableVirtualServicesAsync(int serverId, object userState) - { - if ((this.GetAvailableVirtualServicesOperationCompleted == null)) - { + public void GetAvailableVirtualServicesAsync(int serverId, object userState) { + if ((this.GetAvailableVirtualServicesOperationCompleted == null)) { this.GetAvailableVirtualServicesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAvailableVirtualServicesOperationCompleted); } this.InvokeAsync("GetAvailableVirtualServices", new object[] { serverId}, this.GetAvailableVirtualServicesOperationCompleted, userState); } - - private void OnGetAvailableVirtualServicesOperationCompleted(object arg) - { - if ((this.GetAvailableVirtualServicesCompleted != null)) - { + + private void OnGetAvailableVirtualServicesOperationCompleted(object arg) { + if ((this.GetAvailableVirtualServicesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetAvailableVirtualServicesCompleted(this, new GetAvailableVirtualServicesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualServices", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetVirtualServices(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualServices", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetVirtualServices(int serverId) { object[] results = this.Invoke("GetVirtualServices", new object[] { serverId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetVirtualServices(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetVirtualServices(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetVirtualServices", new object[] { serverId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetVirtualServices(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetVirtualServices(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetVirtualServicesAsync(int serverId) - { + public void GetVirtualServicesAsync(int serverId) { this.GetVirtualServicesAsync(serverId, null); } - + /// - public void GetVirtualServicesAsync(int serverId, object userState) - { - if ((this.GetVirtualServicesOperationCompleted == null)) - { + public void GetVirtualServicesAsync(int serverId, object userState) { + if ((this.GetVirtualServicesOperationCompleted == null)) { this.GetVirtualServicesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVirtualServicesOperationCompleted); } this.InvokeAsync("GetVirtualServices", new object[] { serverId}, this.GetVirtualServicesOperationCompleted, userState); } - - private void OnGetVirtualServicesOperationCompleted(object arg) - { - if ((this.GetVirtualServicesCompleted != null)) - { + + private void OnGetVirtualServicesOperationCompleted(object arg) { + if ((this.GetVirtualServicesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetVirtualServicesCompleted(this, new GetVirtualServicesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddVirtualServices", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddVirtualServices(int serverId, int[] ids) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddVirtualServices", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddVirtualServices(int serverId, int[] ids) { object[] results = this.Invoke("AddVirtualServices", new object[] { serverId, ids}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddVirtualServices(int serverId, int[] ids, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddVirtualServices(int serverId, int[] ids, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddVirtualServices", new object[] { serverId, ids}, callback, asyncState); } - + /// - public int EndAddVirtualServices(System.IAsyncResult asyncResult) - { + public int EndAddVirtualServices(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddVirtualServicesAsync(int serverId, int[] ids) - { + public void AddVirtualServicesAsync(int serverId, int[] ids) { this.AddVirtualServicesAsync(serverId, ids, null); } - + /// - public void AddVirtualServicesAsync(int serverId, int[] ids, object userState) - { - if ((this.AddVirtualServicesOperationCompleted == null)) - { + public void AddVirtualServicesAsync(int serverId, int[] ids, object userState) { + if ((this.AddVirtualServicesOperationCompleted == null)) { this.AddVirtualServicesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddVirtualServicesOperationCompleted); } this.InvokeAsync("AddVirtualServices", new object[] { serverId, ids}, this.AddVirtualServicesOperationCompleted, userState); } - - private void OnAddVirtualServicesOperationCompleted(object arg) - { - if ((this.AddVirtualServicesCompleted != null)) - { + + private void OnAddVirtualServicesOperationCompleted(object arg) { + if ((this.AddVirtualServicesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddVirtualServicesCompleted(this, new AddVirtualServicesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteVirtualServices", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteVirtualServices(int serverId, int[] ids) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteVirtualServices", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteVirtualServices(int serverId, int[] ids) { object[] results = this.Invoke("DeleteVirtualServices", new object[] { serverId, ids}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteVirtualServices(int serverId, int[] ids, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteVirtualServices(int serverId, int[] ids, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteVirtualServices", new object[] { serverId, ids}, callback, asyncState); } - + /// - public int EndDeleteVirtualServices(System.IAsyncResult asyncResult) - { + public int EndDeleteVirtualServices(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteVirtualServicesAsync(int serverId, int[] ids) - { + public void DeleteVirtualServicesAsync(int serverId, int[] ids) { this.DeleteVirtualServicesAsync(serverId, ids, null); } - + /// - public void DeleteVirtualServicesAsync(int serverId, int[] ids, object userState) - { - if ((this.DeleteVirtualServicesOperationCompleted == null)) - { + public void DeleteVirtualServicesAsync(int serverId, int[] ids, object userState) { + if ((this.DeleteVirtualServicesOperationCompleted == null)) { this.DeleteVirtualServicesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteVirtualServicesOperationCompleted); } this.InvokeAsync("DeleteVirtualServices", new object[] { serverId, ids}, this.DeleteVirtualServicesOperationCompleted, userState); } - - private void OnDeleteVirtualServicesOperationCompleted(object arg) - { - if ((this.DeleteVirtualServicesCompleted != null)) - { + + private void OnDeleteVirtualServicesOperationCompleted(object arg) { + if ((this.DeleteVirtualServicesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteVirtualServicesCompleted(this, new DeleteVirtualServicesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateVirtualGroups", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateVirtualGroups(int serverId, VirtualGroupInfo[] groups) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateVirtualGroups", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateVirtualGroups(int serverId, VirtualGroupInfo[] groups) { object[] results = this.Invoke("UpdateVirtualGroups", new object[] { serverId, groups}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateVirtualGroups(int serverId, VirtualGroupInfo[] groups, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateVirtualGroups(int serverId, VirtualGroupInfo[] groups, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateVirtualGroups", new object[] { serverId, groups}, callback, asyncState); } - + /// - public int EndUpdateVirtualGroups(System.IAsyncResult asyncResult) - { + public int EndUpdateVirtualGroups(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateVirtualGroupsAsync(int serverId, VirtualGroupInfo[] groups) - { + public void UpdateVirtualGroupsAsync(int serverId, VirtualGroupInfo[] groups) { this.UpdateVirtualGroupsAsync(serverId, groups, null); } - + /// - public void UpdateVirtualGroupsAsync(int serverId, VirtualGroupInfo[] groups, object userState) - { - if ((this.UpdateVirtualGroupsOperationCompleted == null)) - { + public void UpdateVirtualGroupsAsync(int serverId, VirtualGroupInfo[] groups, object userState) { + if ((this.UpdateVirtualGroupsOperationCompleted == null)) { this.UpdateVirtualGroupsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateVirtualGroupsOperationCompleted); } this.InvokeAsync("UpdateVirtualGroups", new object[] { serverId, groups}, this.UpdateVirtualGroupsOperationCompleted, userState); } - - private void OnUpdateVirtualGroupsOperationCompleted(object arg) - { - if ((this.UpdateVirtualGroupsCompleted != null)) - { + + private void OnUpdateVirtualGroupsOperationCompleted(object arg) { + if ((this.UpdateVirtualGroupsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateVirtualGroupsCompleted(this, new UpdateVirtualGroupsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServicesByServerId", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawServicesByServerId(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServicesByServerId", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawServicesByServerId(int serverId) { object[] results = this.Invoke("GetRawServicesByServerId", new object[] { serverId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawServicesByServerId(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawServicesByServerId(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawServicesByServerId", new object[] { serverId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawServicesByServerId(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawServicesByServerId(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawServicesByServerIdAsync(int serverId) - { + public void GetRawServicesByServerIdAsync(int serverId) { this.GetRawServicesByServerIdAsync(serverId, null); } - + /// - public void GetRawServicesByServerIdAsync(int serverId, object userState) - { - if ((this.GetRawServicesByServerIdOperationCompleted == null)) - { + public void GetRawServicesByServerIdAsync(int serverId, object userState) { + if ((this.GetRawServicesByServerIdOperationCompleted == null)) { this.GetRawServicesByServerIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawServicesByServerIdOperationCompleted); } this.InvokeAsync("GetRawServicesByServerId", new object[] { serverId}, this.GetRawServicesByServerIdOperationCompleted, userState); } - - private void OnGetRawServicesByServerIdOperationCompleted(object arg) - { - if ((this.GetRawServicesByServerIdCompleted != null)) - { + + private void OnGetRawServicesByServerIdOperationCompleted(object arg) { + if ((this.GetRawServicesByServerIdCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawServicesByServerIdCompleted(this, new GetRawServicesByServerIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServicesByServerId", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServiceInfo[] GetServicesByServerId(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServicesByServerId", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServiceInfo[] GetServicesByServerId(int serverId) { object[] results = this.Invoke("GetServicesByServerId", new object[] { serverId}); return ((ServiceInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetServicesByServerId(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServicesByServerId(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServicesByServerId", new object[] { serverId}, callback, asyncState); } - + /// - public ServiceInfo[] EndGetServicesByServerId(System.IAsyncResult asyncResult) - { + public ServiceInfo[] EndGetServicesByServerId(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServiceInfo[])(results[0])); } - + /// - public void GetServicesByServerIdAsync(int serverId) - { + public void GetServicesByServerIdAsync(int serverId) { this.GetServicesByServerIdAsync(serverId, null); } - + /// - public void GetServicesByServerIdAsync(int serverId, object userState) - { - if ((this.GetServicesByServerIdOperationCompleted == null)) - { + public void GetServicesByServerIdAsync(int serverId, object userState) { + if ((this.GetServicesByServerIdOperationCompleted == null)) { this.GetServicesByServerIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServicesByServerIdOperationCompleted); } this.InvokeAsync("GetServicesByServerId", new object[] { serverId}, this.GetServicesByServerIdOperationCompleted, userState); } - - private void OnGetServicesByServerIdOperationCompleted(object arg) - { - if ((this.GetServicesByServerIdCompleted != null)) - { + + private void OnGetServicesByServerIdOperationCompleted(object arg) { + if ((this.GetServicesByServerIdCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServicesByServerIdCompleted(this, new GetServicesByServerIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServicesByServerIdGroupName", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServiceInfo[] GetServicesByServerIdGroupName(int serverId, string groupName) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServicesByServerIdGroupName", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServiceInfo[] GetServicesByServerIdGroupName(int serverId, string groupName) { object[] results = this.Invoke("GetServicesByServerIdGroupName", new object[] { serverId, groupName}); return ((ServiceInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetServicesByServerIdGroupName(int serverId, string groupName, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServicesByServerIdGroupName(int serverId, string groupName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServicesByServerIdGroupName", new object[] { serverId, groupName}, callback, asyncState); } - + /// - public ServiceInfo[] EndGetServicesByServerIdGroupName(System.IAsyncResult asyncResult) - { + public ServiceInfo[] EndGetServicesByServerIdGroupName(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServiceInfo[])(results[0])); } - + /// - public void GetServicesByServerIdGroupNameAsync(int serverId, string groupName) - { + public void GetServicesByServerIdGroupNameAsync(int serverId, string groupName) { this.GetServicesByServerIdGroupNameAsync(serverId, groupName, null); } - + /// - public void GetServicesByServerIdGroupNameAsync(int serverId, string groupName, object userState) - { - if ((this.GetServicesByServerIdGroupNameOperationCompleted == null)) - { + public void GetServicesByServerIdGroupNameAsync(int serverId, string groupName, object userState) { + if ((this.GetServicesByServerIdGroupNameOperationCompleted == null)) { this.GetServicesByServerIdGroupNameOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServicesByServerIdGroupNameOperationCompleted); } this.InvokeAsync("GetServicesByServerIdGroupName", new object[] { serverId, groupName}, this.GetServicesByServerIdGroupNameOperationCompleted, userState); } - - private void OnGetServicesByServerIdGroupNameOperationCompleted(object arg) - { - if ((this.GetServicesByServerIdGroupNameCompleted != null)) - { + + private void OnGetServicesByServerIdGroupNameOperationCompleted(object arg) { + if ((this.GetServicesByServerIdGroupNameCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServicesByServerIdGroupNameCompleted(this, new GetServicesByServerIdGroupNameCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServicesByGroupId", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawServicesByGroupId(int groupId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServicesByGroupId", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawServicesByGroupId(int groupId) { object[] results = this.Invoke("GetRawServicesByGroupId", new object[] { groupId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawServicesByGroupId(int groupId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawServicesByGroupId(int groupId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawServicesByGroupId", new object[] { groupId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawServicesByGroupId(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawServicesByGroupId(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawServicesByGroupIdAsync(int groupId) - { + public void GetRawServicesByGroupIdAsync(int groupId) { this.GetRawServicesByGroupIdAsync(groupId, null); } - + /// - public void GetRawServicesByGroupIdAsync(int groupId, object userState) - { - if ((this.GetRawServicesByGroupIdOperationCompleted == null)) - { + public void GetRawServicesByGroupIdAsync(int groupId, object userState) { + if ((this.GetRawServicesByGroupIdOperationCompleted == null)) { this.GetRawServicesByGroupIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawServicesByGroupIdOperationCompleted); } this.InvokeAsync("GetRawServicesByGroupId", new object[] { groupId}, this.GetRawServicesByGroupIdOperationCompleted, userState); } - - private void OnGetRawServicesByGroupIdOperationCompleted(object arg) - { - if ((this.GetRawServicesByGroupIdCompleted != null)) - { + + private void OnGetRawServicesByGroupIdOperationCompleted(object arg) { + if ((this.GetRawServicesByGroupIdCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawServicesByGroupIdCompleted(this, new GetRawServicesByGroupIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServicesByGroupName", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawServicesByGroupName(string groupName) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawServicesByGroupName", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawServicesByGroupName(string groupName) { object[] results = this.Invoke("GetRawServicesByGroupName", new object[] { groupName}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawServicesByGroupName(string groupName, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawServicesByGroupName(string groupName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawServicesByGroupName", new object[] { groupName}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawServicesByGroupName(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawServicesByGroupName(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawServicesByGroupNameAsync(string groupName) - { + public void GetRawServicesByGroupNameAsync(string groupName) { this.GetRawServicesByGroupNameAsync(groupName, null); } - + /// - public void GetRawServicesByGroupNameAsync(string groupName, object userState) - { - if ((this.GetRawServicesByGroupNameOperationCompleted == null)) - { + public void GetRawServicesByGroupNameAsync(string groupName, object userState) { + if ((this.GetRawServicesByGroupNameOperationCompleted == null)) { this.GetRawServicesByGroupNameOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawServicesByGroupNameOperationCompleted); } this.InvokeAsync("GetRawServicesByGroupName", new object[] { groupName}, this.GetRawServicesByGroupNameOperationCompleted, userState); } - - private void OnGetRawServicesByGroupNameOperationCompleted(object arg) - { - if ((this.GetRawServicesByGroupNameCompleted != null)) - { + + private void OnGetRawServicesByGroupNameOperationCompleted(object arg) { + if ((this.GetRawServicesByGroupNameCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawServicesByGroupNameCompleted(this, new GetRawServicesByGroupNameCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServiceInfo", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ServiceInfo GetServiceInfo(int serviceId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServiceInfo", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ServiceInfo GetServiceInfo(int serviceId) { object[] results = this.Invoke("GetServiceInfo", new object[] { serviceId}); return ((ServiceInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetServiceInfo(int serviceId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServiceInfo(int serviceId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServiceInfo", new object[] { serviceId}, callback, asyncState); } - + /// - public ServiceInfo EndGetServiceInfo(System.IAsyncResult asyncResult) - { + public ServiceInfo EndGetServiceInfo(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ServiceInfo)(results[0])); } - + /// - public void GetServiceInfoAsync(int serviceId) - { + public void GetServiceInfoAsync(int serviceId) { this.GetServiceInfoAsync(serviceId, null); } - + /// - public void GetServiceInfoAsync(int serviceId, object userState) - { - if ((this.GetServiceInfoOperationCompleted == null)) - { + public void GetServiceInfoAsync(int serviceId, object userState) { + if ((this.GetServiceInfoOperationCompleted == null)) { this.GetServiceInfoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServiceInfoOperationCompleted); } this.InvokeAsync("GetServiceInfo", new object[] { serviceId}, this.GetServiceInfoOperationCompleted, userState); } - - private void OnGetServiceInfoOperationCompleted(object arg) - { - if ((this.GetServiceInfoCompleted != null)) - { + + private void OnGetServiceInfoOperationCompleted(object arg) { + if ((this.GetServiceInfoCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServiceInfoCompleted(this, new GetServiceInfoCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddService", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddService(ServiceInfo service) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddService", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddService(ServiceInfo service) { object[] results = this.Invoke("AddService", new object[] { service}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddService(ServiceInfo service, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddService(ServiceInfo service, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddService", new object[] { service}, callback, asyncState); } - + /// - public int EndAddService(System.IAsyncResult asyncResult) - { + public int EndAddService(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddServiceAsync(ServiceInfo service) - { + public void AddServiceAsync(ServiceInfo service) { this.AddServiceAsync(service, null); } - + /// - public void AddServiceAsync(ServiceInfo service, object userState) - { - if ((this.AddServiceOperationCompleted == null)) - { + public void AddServiceAsync(ServiceInfo service, object userState) { + if ((this.AddServiceOperationCompleted == null)) { this.AddServiceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddServiceOperationCompleted); } this.InvokeAsync("AddService", new object[] { service}, this.AddServiceOperationCompleted, userState); } - - private void OnAddServiceOperationCompleted(object arg) - { - if ((this.AddServiceCompleted != null)) - { + + private void OnAddServiceOperationCompleted(object arg) { + if ((this.AddServiceCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddServiceCompleted(this, new AddServiceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateService", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateService(ServiceInfo service) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateService", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateService(ServiceInfo service) { object[] results = this.Invoke("UpdateService", new object[] { service}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateService(ServiceInfo service, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateService(ServiceInfo service, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateService", new object[] { service}, callback, asyncState); } - + /// - public int EndUpdateService(System.IAsyncResult asyncResult) - { + public int EndUpdateService(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateServiceAsync(ServiceInfo service) - { + public void UpdateServiceAsync(ServiceInfo service) { this.UpdateServiceAsync(service, null); } - + /// - public void UpdateServiceAsync(ServiceInfo service, object userState) - { - if ((this.UpdateServiceOperationCompleted == null)) - { + public void UpdateServiceAsync(ServiceInfo service, object userState) { + if ((this.UpdateServiceOperationCompleted == null)) { this.UpdateServiceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateServiceOperationCompleted); } this.InvokeAsync("UpdateService", new object[] { service}, this.UpdateServiceOperationCompleted, userState); } - - private void OnUpdateServiceOperationCompleted(object arg) - { - if ((this.UpdateServiceCompleted != null)) - { + + private void OnUpdateServiceOperationCompleted(object arg) { + if ((this.UpdateServiceCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateServiceCompleted(this, new UpdateServiceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteService", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteService(int serviceId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteService", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteService(int serviceId) { object[] results = this.Invoke("DeleteService", new object[] { serviceId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteService(int serviceId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteService(int serviceId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteService", new object[] { serviceId}, callback, asyncState); } - + /// - public int EndDeleteService(System.IAsyncResult asyncResult) - { + public int EndDeleteService(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteServiceAsync(int serviceId) - { + public void DeleteServiceAsync(int serviceId) { this.DeleteServiceAsync(serviceId, null); } - + /// - public void DeleteServiceAsync(int serviceId, object userState) - { - if ((this.DeleteServiceOperationCompleted == null)) - { + public void DeleteServiceAsync(int serviceId, object userState) { + if ((this.DeleteServiceOperationCompleted == null)) { this.DeleteServiceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteServiceOperationCompleted); } this.InvokeAsync("DeleteService", new object[] { serviceId}, this.DeleteServiceOperationCompleted, userState); } - - private void OnDeleteServiceOperationCompleted(object arg) - { - if ((this.DeleteServiceCompleted != null)) - { + + private void OnDeleteServiceOperationCompleted(object arg) { + if ((this.DeleteServiceCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteServiceCompleted(this, new DeleteServiceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServiceSettings", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public string[] GetServiceSettings(int serviceId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServiceSettings", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public string[] GetServiceSettings(int serviceId) { object[] results = this.Invoke("GetServiceSettings", new object[] { serviceId}); return ((string[])(results[0])); } - + /// - public System.IAsyncResult BeginGetServiceSettings(int serviceId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServiceSettings(int serviceId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServiceSettings", new object[] { serviceId}, callback, asyncState); } - + /// - public string[] EndGetServiceSettings(System.IAsyncResult asyncResult) - { + public string[] EndGetServiceSettings(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((string[])(results[0])); } - + /// - public void GetServiceSettingsAsync(int serviceId) - { + public void GetServiceSettingsAsync(int serviceId) { this.GetServiceSettingsAsync(serviceId, null); } - + /// - public void GetServiceSettingsAsync(int serviceId, object userState) - { - if ((this.GetServiceSettingsOperationCompleted == null)) - { + public void GetServiceSettingsAsync(int serviceId, object userState) { + if ((this.GetServiceSettingsOperationCompleted == null)) { this.GetServiceSettingsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServiceSettingsOperationCompleted); } this.InvokeAsync("GetServiceSettings", new object[] { serviceId}, this.GetServiceSettingsOperationCompleted, userState); } - - private void OnGetServiceSettingsOperationCompleted(object arg) - { - if ((this.GetServiceSettingsCompleted != null)) - { + + private void OnGetServiceSettingsOperationCompleted(object arg) { + if ((this.GetServiceSettingsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServiceSettingsCompleted(this, new GetServiceSettingsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServiceSettings", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateServiceSettings(int serviceId, string[] settings) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateServiceSettings", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateServiceSettings(int serviceId, string[] settings) { object[] results = this.Invoke("UpdateServiceSettings", new object[] { serviceId, settings}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateServiceSettings(int serviceId, string[] settings, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateServiceSettings(int serviceId, string[] settings, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateServiceSettings", new object[] { serviceId, settings}, callback, asyncState); } - + /// - public int EndUpdateServiceSettings(System.IAsyncResult asyncResult) - { + public int EndUpdateServiceSettings(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateServiceSettingsAsync(int serviceId, string[] settings) - { + public void UpdateServiceSettingsAsync(int serviceId, string[] settings) { this.UpdateServiceSettingsAsync(serviceId, settings, null); } - + /// - public void UpdateServiceSettingsAsync(int serviceId, string[] settings, object userState) - { - if ((this.UpdateServiceSettingsOperationCompleted == null)) - { + public void UpdateServiceSettingsAsync(int serviceId, string[] settings, object userState) { + if ((this.UpdateServiceSettingsOperationCompleted == null)) { this.UpdateServiceSettingsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateServiceSettingsOperationCompleted); } this.InvokeAsync("UpdateServiceSettings", new object[] { serviceId, settings}, this.UpdateServiceSettingsOperationCompleted, userState); } - - private void OnUpdateServiceSettingsOperationCompleted(object arg) - { - if ((this.UpdateServiceSettingsCompleted != null)) - { + + private void OnUpdateServiceSettingsOperationCompleted(object arg) { + if ((this.UpdateServiceSettingsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateServiceSettingsCompleted(this, new UpdateServiceSettingsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallService", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public string[] InstallService(int serviceId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallService", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public string[] InstallService(int serviceId) { object[] results = this.Invoke("InstallService", new object[] { serviceId}); return ((string[])(results[0])); } - + /// - public System.IAsyncResult BeginInstallService(int serviceId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginInstallService(int serviceId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("InstallService", new object[] { serviceId}, callback, asyncState); } - + /// - public string[] EndInstallService(System.IAsyncResult asyncResult) - { + public string[] EndInstallService(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((string[])(results[0])); } - + /// - public void InstallServiceAsync(int serviceId) - { + public void InstallServiceAsync(int serviceId) { this.InstallServiceAsync(serviceId, null); } - + /// - public void InstallServiceAsync(int serviceId, object userState) - { - if ((this.InstallServiceOperationCompleted == null)) - { + public void InstallServiceAsync(int serviceId, object userState) { + if ((this.InstallServiceOperationCompleted == null)) { this.InstallServiceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallServiceOperationCompleted); } this.InvokeAsync("InstallService", new object[] { serviceId}, this.InstallServiceOperationCompleted, userState); } - - private void OnInstallServiceOperationCompleted(object arg) - { - if ((this.InstallServiceCompleted != null)) - { + + private void OnInstallServiceOperationCompleted(object arg) { + if ((this.InstallServiceCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.InstallServiceCompleted(this, new InstallServiceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProviderServiceQuota", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public QuotaInfo GetProviderServiceQuota(int providerId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProviderServiceQuota", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public QuotaInfo GetProviderServiceQuota(int providerId) { object[] results = this.Invoke("GetProviderServiceQuota", new object[] { providerId}); return ((QuotaInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetProviderServiceQuota(int providerId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetProviderServiceQuota(int providerId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetProviderServiceQuota", new object[] { providerId}, callback, asyncState); } - + /// - public QuotaInfo EndGetProviderServiceQuota(System.IAsyncResult asyncResult) - { + public QuotaInfo EndGetProviderServiceQuota(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((QuotaInfo)(results[0])); } - + /// - public void GetProviderServiceQuotaAsync(int providerId) - { + public void GetProviderServiceQuotaAsync(int providerId) { this.GetProviderServiceQuotaAsync(providerId, null); } - + /// - public void GetProviderServiceQuotaAsync(int providerId, object userState) - { - if ((this.GetProviderServiceQuotaOperationCompleted == null)) - { + public void GetProviderServiceQuotaAsync(int providerId, object userState) { + if ((this.GetProviderServiceQuotaOperationCompleted == null)) { this.GetProviderServiceQuotaOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetProviderServiceQuotaOperationCompleted); } this.InvokeAsync("GetProviderServiceQuota", new object[] { providerId}, this.GetProviderServiceQuotaOperationCompleted, userState); } - - private void OnGetProviderServiceQuotaOperationCompleted(object arg) - { - if ((this.GetProviderServiceQuotaCompleted != null)) - { + + private void OnGetProviderServiceQuotaOperationCompleted(object arg) { + if ((this.GetProviderServiceQuotaCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetProviderServiceQuotaCompleted(this, new GetProviderServiceQuotaCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetInstalledProviders", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ProviderInfo[] GetInstalledProviders(int groupId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetInstalledProviders", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ProviderInfo[] GetInstalledProviders(int groupId) { object[] results = this.Invoke("GetInstalledProviders", new object[] { groupId}); return ((ProviderInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetInstalledProviders(int groupId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetInstalledProviders(int groupId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetInstalledProviders", new object[] { groupId}, callback, asyncState); } - + /// - public ProviderInfo[] EndGetInstalledProviders(System.IAsyncResult asyncResult) - { + public ProviderInfo[] EndGetInstalledProviders(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ProviderInfo[])(results[0])); } - + /// - public void GetInstalledProvidersAsync(int groupId) - { + public void GetInstalledProvidersAsync(int groupId) { this.GetInstalledProvidersAsync(groupId, null); } - + /// - public void GetInstalledProvidersAsync(int groupId, object userState) - { - if ((this.GetInstalledProvidersOperationCompleted == null)) - { + public void GetInstalledProvidersAsync(int groupId, object userState) { + if ((this.GetInstalledProvidersOperationCompleted == null)) { this.GetInstalledProvidersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetInstalledProvidersOperationCompleted); } this.InvokeAsync("GetInstalledProviders", new object[] { groupId}, this.GetInstalledProvidersOperationCompleted, userState); } - - private void OnGetInstalledProvidersOperationCompleted(object arg) - { - if ((this.GetInstalledProvidersCompleted != null)) - { + + private void OnGetInstalledProvidersOperationCompleted(object arg) { + if ((this.GetInstalledProvidersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetInstalledProvidersCompleted(this, new GetInstalledProvidersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetResourceGroups", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResourceGroupInfo[] GetResourceGroups() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetResourceGroups", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResourceGroupInfo[] GetResourceGroups() { object[] results = this.Invoke("GetResourceGroups", new object[0]); return ((ResourceGroupInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetResourceGroups(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetResourceGroups(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetResourceGroups", new object[0], callback, asyncState); } - + /// - public ResourceGroupInfo[] EndGetResourceGroups(System.IAsyncResult asyncResult) - { + public ResourceGroupInfo[] EndGetResourceGroups(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResourceGroupInfo[])(results[0])); } - + /// - public void GetResourceGroupsAsync() - { + public void GetResourceGroupsAsync() { this.GetResourceGroupsAsync(null); } - + /// - public void GetResourceGroupsAsync(object userState) - { - if ((this.GetResourceGroupsOperationCompleted == null)) - { + public void GetResourceGroupsAsync(object userState) { + if ((this.GetResourceGroupsOperationCompleted == null)) { this.GetResourceGroupsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetResourceGroupsOperationCompleted); } this.InvokeAsync("GetResourceGroups", new object[0], this.GetResourceGroupsOperationCompleted, userState); } - - private void OnGetResourceGroupsOperationCompleted(object arg) - { - if ((this.GetResourceGroupsCompleted != null)) - { + + private void OnGetResourceGroupsOperationCompleted(object arg) { + if ((this.GetResourceGroupsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetResourceGroupsCompleted(this, new GetResourceGroupsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetResourceGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResourceGroupInfo GetResourceGroup(int groupId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetResourceGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResourceGroupInfo GetResourceGroup(int groupId) { object[] results = this.Invoke("GetResourceGroup", new object[] { groupId}); return ((ResourceGroupInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetResourceGroup(int groupId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetResourceGroup(int groupId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetResourceGroup", new object[] { groupId}, callback, asyncState); } - + /// - public ResourceGroupInfo EndGetResourceGroup(System.IAsyncResult asyncResult) - { + public ResourceGroupInfo EndGetResourceGroup(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResourceGroupInfo)(results[0])); } - + /// - public void GetResourceGroupAsync(int groupId) - { + public void GetResourceGroupAsync(int groupId) { this.GetResourceGroupAsync(groupId, null); } - + /// - public void GetResourceGroupAsync(int groupId, object userState) - { - if ((this.GetResourceGroupOperationCompleted == null)) - { + public void GetResourceGroupAsync(int groupId, object userState) { + if ((this.GetResourceGroupOperationCompleted == null)) { this.GetResourceGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetResourceGroupOperationCompleted); } this.InvokeAsync("GetResourceGroup", new object[] { groupId}, this.GetResourceGroupOperationCompleted, userState); } - - private void OnGetResourceGroupOperationCompleted(object arg) - { - if ((this.GetResourceGroupCompleted != null)) - { + + private void OnGetResourceGroupOperationCompleted(object arg) { + if ((this.GetResourceGroupCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetResourceGroupCompleted(this, new GetResourceGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProvider", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ProviderInfo GetProvider(int providerId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProvider", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ProviderInfo GetProvider(int providerId) { object[] results = this.Invoke("GetProvider", new object[] { providerId}); return ((ProviderInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetProvider(int providerId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetProvider(int providerId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetProvider", new object[] { providerId}, callback, asyncState); } - + /// - public ProviderInfo EndGetProvider(System.IAsyncResult asyncResult) - { + public ProviderInfo EndGetProvider(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ProviderInfo)(results[0])); } - + /// - public void GetProviderAsync(int providerId) - { + public void GetProviderAsync(int providerId) { this.GetProviderAsync(providerId, null); } - + /// - public void GetProviderAsync(int providerId, object userState) - { - if ((this.GetProviderOperationCompleted == null)) - { + public void GetProviderAsync(int providerId, object userState) { + if ((this.GetProviderOperationCompleted == null)) { this.GetProviderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetProviderOperationCompleted); } this.InvokeAsync("GetProvider", new object[] { providerId}, this.GetProviderOperationCompleted, userState); } - - private void OnGetProviderOperationCompleted(object arg) - { - if ((this.GetProviderCompleted != null)) - { + + private void OnGetProviderOperationCompleted(object arg) { + if ((this.GetProviderCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetProviderCompleted(this, new GetProviderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProviders", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ProviderInfo[] GetProviders() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProviders", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ProviderInfo[] GetProviders() { object[] results = this.Invoke("GetProviders", new object[0]); return ((ProviderInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetProviders(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetProviders(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetProviders", new object[0], callback, asyncState); } - + /// - public ProviderInfo[] EndGetProviders(System.IAsyncResult asyncResult) - { + public ProviderInfo[] EndGetProviders(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ProviderInfo[])(results[0])); } - + /// - public void GetProvidersAsync() - { + public void GetProvidersAsync() { this.GetProvidersAsync(null); } - + /// - public void GetProvidersAsync(object userState) - { - if ((this.GetProvidersOperationCompleted == null)) - { + public void GetProvidersAsync(object userState) { + if ((this.GetProvidersOperationCompleted == null)) { this.GetProvidersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetProvidersOperationCompleted); } this.InvokeAsync("GetProviders", new object[0], this.GetProvidersOperationCompleted, userState); } - - private void OnGetProvidersOperationCompleted(object arg) - { - if ((this.GetProvidersCompleted != null)) - { + + private void OnGetProvidersOperationCompleted(object arg) { + if ((this.GetProvidersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetProvidersCompleted(this, new GetProvidersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProvidersByGroupId", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ProviderInfo[] GetProvidersByGroupId(int groupId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetProvidersByGroupId", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ProviderInfo[] GetProvidersByGroupId(int groupId) { object[] results = this.Invoke("GetProvidersByGroupId", new object[] { groupId}); return ((ProviderInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetProvidersByGroupId(int groupId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetProvidersByGroupId(int groupId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetProvidersByGroupId", new object[] { groupId}, callback, asyncState); } - + /// - public ProviderInfo[] EndGetProvidersByGroupId(System.IAsyncResult asyncResult) - { + public ProviderInfo[] EndGetProvidersByGroupId(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ProviderInfo[])(results[0])); } - + /// - public void GetProvidersByGroupIdAsync(int groupId) - { + public void GetProvidersByGroupIdAsync(int groupId) { this.GetProvidersByGroupIdAsync(groupId, null); } - + /// - public void GetProvidersByGroupIdAsync(int groupId, object userState) - { - if ((this.GetProvidersByGroupIdOperationCompleted == null)) - { + public void GetProvidersByGroupIdAsync(int groupId, object userState) { + if ((this.GetProvidersByGroupIdOperationCompleted == null)) { this.GetProvidersByGroupIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetProvidersByGroupIdOperationCompleted); } this.InvokeAsync("GetProvidersByGroupId", new object[] { groupId}, this.GetProvidersByGroupIdOperationCompleted, userState); } - - private void OnGetProvidersByGroupIdOperationCompleted(object arg) - { - if ((this.GetProvidersByGroupIdCompleted != null)) - { + + private void OnGetProvidersByGroupIdOperationCompleted(object arg) { + if ((this.GetProvidersByGroupIdCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetProvidersByGroupIdCompleted(this, new GetProvidersByGroupIdCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPackageServiceProvider", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ProviderInfo GetPackageServiceProvider(int packageId, string groupName) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPackageServiceProvider", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ProviderInfo GetPackageServiceProvider(int packageId, string groupName) { object[] results = this.Invoke("GetPackageServiceProvider", new object[] { packageId, groupName}); return ((ProviderInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetPackageServiceProvider(int packageId, string groupName, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetPackageServiceProvider(int packageId, string groupName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetPackageServiceProvider", new object[] { packageId, groupName}, callback, asyncState); } - + /// - public ProviderInfo EndGetPackageServiceProvider(System.IAsyncResult asyncResult) - { + public ProviderInfo EndGetPackageServiceProvider(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ProviderInfo)(results[0])); } - + /// - public void GetPackageServiceProviderAsync(int packageId, string groupName) - { + public void GetPackageServiceProviderAsync(int packageId, string groupName) { this.GetPackageServiceProviderAsync(packageId, groupName, null); } - + /// - public void GetPackageServiceProviderAsync(int packageId, string groupName, object userState) - { - if ((this.GetPackageServiceProviderOperationCompleted == null)) - { + public void GetPackageServiceProviderAsync(int packageId, string groupName, object userState) { + if ((this.GetPackageServiceProviderOperationCompleted == null)) { this.GetPackageServiceProviderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPackageServiceProviderOperationCompleted); } this.InvokeAsync("GetPackageServiceProvider", new object[] { packageId, groupName}, this.GetPackageServiceProviderOperationCompleted, userState); } - - private void OnGetPackageServiceProviderOperationCompleted(object arg) - { - if ((this.GetPackageServiceProviderCompleted != null)) - { + + private void OnGetPackageServiceProviderOperationCompleted(object arg) { + if ((this.GetPackageServiceProviderCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetPackageServiceProviderCompleted(this, new GetPackageServiceProviderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/IsInstalled", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public BoolResult IsInstalled(int serverId, int providerId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/IsInstalled", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public BoolResult IsInstalled(int serverId, int providerId) { object[] results = this.Invoke("IsInstalled", new object[] { serverId, providerId}); return ((BoolResult)(results[0])); } - + /// - public System.IAsyncResult BeginIsInstalled(int serverId, int providerId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginIsInstalled(int serverId, int providerId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("IsInstalled", new object[] { serverId, providerId}, callback, asyncState); } - + /// - public BoolResult EndIsInstalled(System.IAsyncResult asyncResult) - { + public BoolResult EndIsInstalled(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((BoolResult)(results[0])); } - + /// - public void IsInstalledAsync(int serverId, int providerId) - { + public void IsInstalledAsync(int serverId, int providerId) { this.IsInstalledAsync(serverId, providerId, null); } - + /// - public void IsInstalledAsync(int serverId, int providerId, object userState) - { - if ((this.IsInstalledOperationCompleted == null)) - { + public void IsInstalledAsync(int serverId, int providerId, object userState) { + if ((this.IsInstalledOperationCompleted == null)) { this.IsInstalledOperationCompleted = new System.Threading.SendOrPostCallback(this.OnIsInstalledOperationCompleted); } this.InvokeAsync("IsInstalled", new object[] { serverId, providerId}, this.IsInstalledOperationCompleted, userState); } - - private void OnIsInstalledOperationCompleted(object arg) - { - if ((this.IsInstalledCompleted != null)) - { + + private void OnIsInstalledOperationCompleted(object arg) { + if ((this.IsInstalledCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.IsInstalledCompleted(this, new IsInstalledCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerVersion", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public string GetServerVersion(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetServerVersion", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public string GetServerVersion(int serverId) { object[] results = this.Invoke("GetServerVersion", new object[] { serverId}); return ((string)(results[0])); } - + /// - public System.IAsyncResult BeginGetServerVersion(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetServerVersion(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetServerVersion", new object[] { serverId}, callback, asyncState); } - + /// - public string EndGetServerVersion(System.IAsyncResult asyncResult) - { + public string EndGetServerVersion(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((string)(results[0])); } - + /// - public void GetServerVersionAsync(int serverId) - { + public void GetServerVersionAsync(int serverId) { this.GetServerVersionAsync(serverId, null); } - + /// - public void GetServerVersionAsync(int serverId, object userState) - { - if ((this.GetServerVersionOperationCompleted == null)) - { + public void GetServerVersionAsync(int serverId, object userState) { + if ((this.GetServerVersionOperationCompleted == null)) { this.GetServerVersionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerVersionOperationCompleted); } this.InvokeAsync("GetServerVersion", new object[] { serverId}, this.GetServerVersionOperationCompleted, userState); } - - private void OnGetServerVersionOperationCompleted(object arg) - { - if ((this.GetServerVersionCompleted != null)) - { + + private void OnGetServerVersionOperationCompleted(object arg) { + if ((this.GetServerVersionCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetServerVersionCompleted(this, new GetServerVersionCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public IPAddressInfo[] GetIPAddresses(IPAddressPool pool, int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public IPAddressInfo[] GetIPAddresses(IPAddressPool pool, int serverId) { object[] results = this.Invoke("GetIPAddresses", new object[] { pool, serverId}); return ((IPAddressInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetIPAddresses(IPAddressPool pool, int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetIPAddresses(IPAddressPool pool, int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetIPAddresses", new object[] { pool, serverId}, callback, asyncState); } - + /// - public IPAddressInfo[] EndGetIPAddresses(System.IAsyncResult asyncResult) - { + public IPAddressInfo[] EndGetIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((IPAddressInfo[])(results[0])); } - + /// - public void GetIPAddressesAsync(IPAddressPool pool, int serverId) - { + public void GetIPAddressesAsync(IPAddressPool pool, int serverId) { this.GetIPAddressesAsync(pool, serverId, null); } - + /// - public void GetIPAddressesAsync(IPAddressPool pool, int serverId, object userState) - { - if ((this.GetIPAddressesOperationCompleted == null)) - { + public void GetIPAddressesAsync(IPAddressPool pool, int serverId, object userState) { + if ((this.GetIPAddressesOperationCompleted == null)) { this.GetIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetIPAddressesOperationCompleted); } this.InvokeAsync("GetIPAddresses", new object[] { pool, serverId}, this.GetIPAddressesOperationCompleted, userState); } - - private void OnGetIPAddressesOperationCompleted(object arg) - { - if ((this.GetIPAddressesCompleted != null)) - { + + private void OnGetIPAddressesOperationCompleted(object arg) { + if ((this.GetIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetIPAddressesCompleted(this, new GetIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetIPAddressesPaged", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public IPAddressesPaged GetIPAddressesPaged(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetIPAddressesPaged", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public IPAddressesPaged GetIPAddressesPaged(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { object[] results = this.Invoke("GetIPAddressesPaged", new object[] { pool, serverId, @@ -2716,10 +2376,9 @@ namespace WebsitePanel.EnterpriseServer maximumRows}); return ((IPAddressesPaged)(results[0])); } - + /// - public System.IAsyncResult BeginGetIPAddressesPaged(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetIPAddressesPaged(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetIPAddressesPaged", new object[] { pool, serverId, @@ -2729,25 +2388,21 @@ namespace WebsitePanel.EnterpriseServer startRow, maximumRows}, callback, asyncState); } - + /// - public IPAddressesPaged EndGetIPAddressesPaged(System.IAsyncResult asyncResult) - { + public IPAddressesPaged EndGetIPAddressesPaged(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((IPAddressesPaged)(results[0])); } - + /// - public void GetIPAddressesPagedAsync(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { + public void GetIPAddressesPagedAsync(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { this.GetIPAddressesPagedAsync(pool, serverId, filterColumn, filterValue, sortColumn, startRow, maximumRows, null); } - + /// - public void GetIPAddressesPagedAsync(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) - { - if ((this.GetIPAddressesPagedOperationCompleted == null)) - { + public void GetIPAddressesPagedAsync(IPAddressPool pool, int serverId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) { + if ((this.GetIPAddressesPagedOperationCompleted == null)) { this.GetIPAddressesPagedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetIPAddressesPagedOperationCompleted); } this.InvokeAsync("GetIPAddressesPaged", new object[] { @@ -2759,69 +2414,58 @@ namespace WebsitePanel.EnterpriseServer startRow, maximumRows}, this.GetIPAddressesPagedOperationCompleted, userState); } - - private void OnGetIPAddressesPagedOperationCompleted(object arg) - { - if ((this.GetIPAddressesPagedCompleted != null)) - { + + private void OnGetIPAddressesPagedOperationCompleted(object arg) { + if ((this.GetIPAddressesPagedCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetIPAddressesPagedCompleted(this, new GetIPAddressesPagedCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetIPAddress", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public IPAddressInfo GetIPAddress(int addressId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetIPAddress", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public IPAddressInfo GetIPAddress(int addressId) { object[] results = this.Invoke("GetIPAddress", new object[] { addressId}); return ((IPAddressInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetIPAddress(int addressId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetIPAddress(int addressId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetIPAddress", new object[] { addressId}, callback, asyncState); } - + /// - public IPAddressInfo EndGetIPAddress(System.IAsyncResult asyncResult) - { + public IPAddressInfo EndGetIPAddress(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((IPAddressInfo)(results[0])); } - + /// - public void GetIPAddressAsync(int addressId) - { + public void GetIPAddressAsync(int addressId) { this.GetIPAddressAsync(addressId, null); } - + /// - public void GetIPAddressAsync(int addressId, object userState) - { - if ((this.GetIPAddressOperationCompleted == null)) - { + public void GetIPAddressAsync(int addressId, object userState) { + if ((this.GetIPAddressOperationCompleted == null)) { this.GetIPAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetIPAddressOperationCompleted); } this.InvokeAsync("GetIPAddress", new object[] { addressId}, this.GetIPAddressOperationCompleted, userState); } - - private void OnGetIPAddressOperationCompleted(object arg) - { - if ((this.GetIPAddressCompleted != null)) - { + + private void OnGetIPAddressOperationCompleted(object arg) { + if ((this.GetIPAddressCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetIPAddressCompleted(this, new GetIPAddressCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddIPAddress", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public IntResult AddIPAddress(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddIPAddress", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public IntResult AddIPAddress(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) { object[] results = this.Invoke("AddIPAddress", new object[] { pool, serverId, @@ -2832,10 +2476,9 @@ namespace WebsitePanel.EnterpriseServer comments}); return ((IntResult)(results[0])); } - + /// - public System.IAsyncResult BeginAddIPAddress(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddIPAddress(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddIPAddress", new object[] { pool, serverId, @@ -2845,25 +2488,21 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, callback, asyncState); } - + /// - public IntResult EndAddIPAddress(System.IAsyncResult asyncResult) - { + public IntResult EndAddIPAddress(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((IntResult)(results[0])); } - + /// - public void AddIPAddressAsync(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) - { + public void AddIPAddressAsync(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) { this.AddIPAddressAsync(pool, serverId, externalIP, internalIP, subnetMask, defaultGateway, comments, null); } - + /// - public void AddIPAddressAsync(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, object userState) - { - if ((this.AddIPAddressOperationCompleted == null)) - { + public void AddIPAddressAsync(IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, object userState) { + if ((this.AddIPAddressOperationCompleted == null)) { this.AddIPAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddIPAddressOperationCompleted); } this.InvokeAsync("AddIPAddress", new object[] { @@ -2875,20 +2514,17 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, this.AddIPAddressOperationCompleted, userState); } - - private void OnAddIPAddressOperationCompleted(object arg) - { - if ((this.AddIPAddressCompleted != null)) - { + + private void OnAddIPAddressOperationCompleted(object arg) { + if ((this.AddIPAddressCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddIPAddressCompleted(this, new AddIPAddressCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddIPAddressesRange", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject AddIPAddressesRange(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddIPAddressesRange", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject AddIPAddressesRange(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments) { object[] results = this.Invoke("AddIPAddressesRange", new object[] { pool, serverId, @@ -2900,10 +2536,9 @@ namespace WebsitePanel.EnterpriseServer comments}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginAddIPAddressesRange(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddIPAddressesRange(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddIPAddressesRange", new object[] { pool, serverId, @@ -2914,25 +2549,21 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, callback, asyncState); } - + /// - public ResultObject EndAddIPAddressesRange(System.IAsyncResult asyncResult) - { + public ResultObject EndAddIPAddressesRange(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void AddIPAddressesRangeAsync(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments) - { + public void AddIPAddressesRangeAsync(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments) { this.AddIPAddressesRangeAsync(pool, serverId, externalIP, endIP, internalIP, subnetMask, defaultGateway, comments, null); } - + /// - public void AddIPAddressesRangeAsync(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments, object userState) - { - if ((this.AddIPAddressesRangeOperationCompleted == null)) - { + public void AddIPAddressesRangeAsync(IPAddressPool pool, int serverId, string externalIP, string endIP, string internalIP, string subnetMask, string defaultGateway, string comments, object userState) { + if ((this.AddIPAddressesRangeOperationCompleted == null)) { this.AddIPAddressesRangeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddIPAddressesRangeOperationCompleted); } this.InvokeAsync("AddIPAddressesRange", new object[] { @@ -2945,20 +2576,17 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, this.AddIPAddressesRangeOperationCompleted, userState); } - - private void OnAddIPAddressesRangeOperationCompleted(object arg) - { - if ((this.AddIPAddressesRangeCompleted != null)) - { + + private void OnAddIPAddressesRangeOperationCompleted(object arg) { + if ((this.AddIPAddressesRangeCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddIPAddressesRangeCompleted(this, new AddIPAddressesRangeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateIPAddress", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject UpdateIPAddress(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateIPAddress", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject UpdateIPAddress(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) { object[] results = this.Invoke("UpdateIPAddress", new object[] { addressId, pool, @@ -2970,10 +2598,9 @@ namespace WebsitePanel.EnterpriseServer comments}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateIPAddress(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateIPAddress(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateIPAddress", new object[] { addressId, pool, @@ -2984,25 +2611,21 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, callback, asyncState); } - + /// - public ResultObject EndUpdateIPAddress(System.IAsyncResult asyncResult) - { + public ResultObject EndUpdateIPAddress(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void UpdateIPAddressAsync(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) - { + public void UpdateIPAddressAsync(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments) { this.UpdateIPAddressAsync(addressId, pool, serverId, externalIP, internalIP, subnetMask, defaultGateway, comments, null); } - + /// - public void UpdateIPAddressAsync(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, object userState) - { - if ((this.UpdateIPAddressOperationCompleted == null)) - { + public void UpdateIPAddressAsync(int addressId, IPAddressPool pool, int serverId, string externalIP, string internalIP, string subnetMask, string defaultGateway, string comments, object userState) { + if ((this.UpdateIPAddressOperationCompleted == null)) { this.UpdateIPAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateIPAddressOperationCompleted); } this.InvokeAsync("UpdateIPAddress", new object[] { @@ -3015,20 +2638,17 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, this.UpdateIPAddressOperationCompleted, userState); } - - private void OnUpdateIPAddressOperationCompleted(object arg) - { - if ((this.UpdateIPAddressCompleted != null)) - { + + private void OnUpdateIPAddressOperationCompleted(object arg) { + if ((this.UpdateIPAddressCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateIPAddressCompleted(this, new UpdateIPAddressCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject UpdateIPAddresses(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject UpdateIPAddresses(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments) { object[] results = this.Invoke("UpdateIPAddresses", new object[] { addresses, pool, @@ -3038,10 +2658,9 @@ namespace WebsitePanel.EnterpriseServer comments}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateIPAddresses(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateIPAddresses(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateIPAddresses", new object[] { addresses, pool, @@ -3050,25 +2669,21 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, callback, asyncState); } - + /// - public ResultObject EndUpdateIPAddresses(System.IAsyncResult asyncResult) - { + public ResultObject EndUpdateIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void UpdateIPAddressesAsync(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments) - { + public void UpdateIPAddressesAsync(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments) { this.UpdateIPAddressesAsync(addresses, pool, serverId, subnetMask, defaultGateway, comments, null); } - + /// - public void UpdateIPAddressesAsync(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments, object userState) - { - if ((this.UpdateIPAddressesOperationCompleted == null)) - { + public void UpdateIPAddressesAsync(int[] addresses, IPAddressPool pool, int serverId, string subnetMask, string defaultGateway, string comments, object userState) { + if ((this.UpdateIPAddressesOperationCompleted == null)) { this.UpdateIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateIPAddressesOperationCompleted); } this.InvokeAsync("UpdateIPAddresses", new object[] { @@ -3079,152 +2694,128 @@ namespace WebsitePanel.EnterpriseServer defaultGateway, comments}, this.UpdateIPAddressesOperationCompleted, userState); } - - private void OnUpdateIPAddressesOperationCompleted(object arg) - { - if ((this.UpdateIPAddressesCompleted != null)) - { + + private void OnUpdateIPAddressesOperationCompleted(object arg) { + if ((this.UpdateIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateIPAddressesCompleted(this, new UpdateIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteIPAddress", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject DeleteIPAddress(int addressId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteIPAddress", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject DeleteIPAddress(int addressId) { object[] results = this.Invoke("DeleteIPAddress", new object[] { addressId}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteIPAddress(int addressId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteIPAddress(int addressId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteIPAddress", new object[] { addressId}, callback, asyncState); } - + /// - public ResultObject EndDeleteIPAddress(System.IAsyncResult asyncResult) - { + public ResultObject EndDeleteIPAddress(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void DeleteIPAddressAsync(int addressId) - { + public void DeleteIPAddressAsync(int addressId) { this.DeleteIPAddressAsync(addressId, null); } - + /// - public void DeleteIPAddressAsync(int addressId, object userState) - { - if ((this.DeleteIPAddressOperationCompleted == null)) - { + public void DeleteIPAddressAsync(int addressId, object userState) { + if ((this.DeleteIPAddressOperationCompleted == null)) { this.DeleteIPAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteIPAddressOperationCompleted); } this.InvokeAsync("DeleteIPAddress", new object[] { addressId}, this.DeleteIPAddressOperationCompleted, userState); } - - private void OnDeleteIPAddressOperationCompleted(object arg) - { - if ((this.DeleteIPAddressCompleted != null)) - { + + private void OnDeleteIPAddressOperationCompleted(object arg) { + if ((this.DeleteIPAddressCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteIPAddressCompleted(this, new DeleteIPAddressCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject DeleteIPAddresses(int[] addresses) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject DeleteIPAddresses(int[] addresses) { object[] results = this.Invoke("DeleteIPAddresses", new object[] { addresses}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteIPAddresses(int[] addresses, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteIPAddresses(int[] addresses, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteIPAddresses", new object[] { addresses}, callback, asyncState); } - + /// - public ResultObject EndDeleteIPAddresses(System.IAsyncResult asyncResult) - { + public ResultObject EndDeleteIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void DeleteIPAddressesAsync(int[] addresses) - { + public void DeleteIPAddressesAsync(int[] addresses) { this.DeleteIPAddressesAsync(addresses, null); } - + /// - public void DeleteIPAddressesAsync(int[] addresses, object userState) - { - if ((this.DeleteIPAddressesOperationCompleted == null)) - { + public void DeleteIPAddressesAsync(int[] addresses, object userState) { + if ((this.DeleteIPAddressesOperationCompleted == null)) { this.DeleteIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteIPAddressesOperationCompleted); } this.InvokeAsync("DeleteIPAddresses", new object[] { addresses}, this.DeleteIPAddressesOperationCompleted, userState); } - - private void OnDeleteIPAddressesOperationCompleted(object arg) - { - if ((this.DeleteIPAddressesCompleted != null)) - { + + private void OnDeleteIPAddressesOperationCompleted(object arg) { + if ((this.DeleteIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteIPAddressesCompleted(this, new DeleteIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetUnallottedIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public IPAddressInfo[] GetUnallottedIPAddresses(int packageId, string groupName, IPAddressPool pool) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetUnallottedIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public IPAddressInfo[] GetUnallottedIPAddresses(int packageId, string groupName, IPAddressPool pool) { object[] results = this.Invoke("GetUnallottedIPAddresses", new object[] { packageId, groupName, pool}); return ((IPAddressInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetUnallottedIPAddresses(int packageId, string groupName, IPAddressPool pool, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetUnallottedIPAddresses(int packageId, string groupName, IPAddressPool pool, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetUnallottedIPAddresses", new object[] { packageId, groupName, pool}, callback, asyncState); } - + /// - public IPAddressInfo[] EndGetUnallottedIPAddresses(System.IAsyncResult asyncResult) - { + public IPAddressInfo[] EndGetUnallottedIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((IPAddressInfo[])(results[0])); } - + /// - public void GetUnallottedIPAddressesAsync(int packageId, string groupName, IPAddressPool pool) - { + public void GetUnallottedIPAddressesAsync(int packageId, string groupName, IPAddressPool pool) { this.GetUnallottedIPAddressesAsync(packageId, groupName, pool, null); } - + /// - public void GetUnallottedIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, object userState) - { - if ((this.GetUnallottedIPAddressesOperationCompleted == null)) - { + public void GetUnallottedIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, object userState) { + if ((this.GetUnallottedIPAddressesOperationCompleted == null)) { this.GetUnallottedIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetUnallottedIPAddressesOperationCompleted); } this.InvokeAsync("GetUnallottedIPAddresses", new object[] { @@ -3232,20 +2823,17 @@ namespace WebsitePanel.EnterpriseServer groupName, pool}, this.GetUnallottedIPAddressesOperationCompleted, userState); } - - private void OnGetUnallottedIPAddressesOperationCompleted(object arg) - { - if ((this.GetUnallottedIPAddressesCompleted != null)) - { + + private void OnGetUnallottedIPAddressesOperationCompleted(object arg) { + if ((this.GetUnallottedIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetUnallottedIPAddressesCompleted(this, new GetUnallottedIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPackageIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public PackageIPAddressesPaged GetPackageIPAddresses(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPackageIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public PackageIPAddressesPaged GetPackageIPAddresses(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive) { object[] results = this.Invoke("GetPackageIPAddresses", new object[] { packageId, pool, @@ -3257,10 +2845,9 @@ namespace WebsitePanel.EnterpriseServer recursive}); return ((PackageIPAddressesPaged)(results[0])); } - + /// - public System.IAsyncResult BeginGetPackageIPAddresses(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetPackageIPAddresses(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetPackageIPAddresses", new object[] { packageId, pool, @@ -3271,25 +2858,21 @@ namespace WebsitePanel.EnterpriseServer maximumRows, recursive}, callback, asyncState); } - + /// - public PackageIPAddressesPaged EndGetPackageIPAddresses(System.IAsyncResult asyncResult) - { + public PackageIPAddressesPaged EndGetPackageIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((PackageIPAddressesPaged)(results[0])); } - + /// - public void GetPackageIPAddressesAsync(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive) - { + public void GetPackageIPAddressesAsync(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive) { this.GetPackageIPAddressesAsync(packageId, pool, filterColumn, filterValue, sortColumn, startRow, maximumRows, recursive, null); } - + /// - public void GetPackageIPAddressesAsync(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive, object userState) - { - if ((this.GetPackageIPAddressesOperationCompleted == null)) - { + public void GetPackageIPAddressesAsync(int packageId, IPAddressPool pool, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, bool recursive, object userState) { + if ((this.GetPackageIPAddressesOperationCompleted == null)) { this.GetPackageIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPackageIPAddressesOperationCompleted); } this.InvokeAsync("GetPackageIPAddresses", new object[] { @@ -3302,72 +2885,61 @@ namespace WebsitePanel.EnterpriseServer maximumRows, recursive}, this.GetPackageIPAddressesOperationCompleted, userState); } - - private void OnGetPackageIPAddressesOperationCompleted(object arg) - { - if ((this.GetPackageIPAddressesCompleted != null)) - { + + private void OnGetPackageIPAddressesOperationCompleted(object arg) { + if ((this.GetPackageIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetPackageIPAddressesCompleted(this, new GetPackageIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPackageUnassignedIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public PackageIPAddress[] GetPackageUnassignedIPAddresses(int packageId, IPAddressPool pool) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPackageUnassignedIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public PackageIPAddress[] GetPackageUnassignedIPAddresses(int packageId, IPAddressPool pool) { object[] results = this.Invoke("GetPackageUnassignedIPAddresses", new object[] { packageId, pool}); return ((PackageIPAddress[])(results[0])); } - + /// - public System.IAsyncResult BeginGetPackageUnassignedIPAddresses(int packageId, IPAddressPool pool, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetPackageUnassignedIPAddresses(int packageId, IPAddressPool pool, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetPackageUnassignedIPAddresses", new object[] { packageId, pool}, callback, asyncState); } - + /// - public PackageIPAddress[] EndGetPackageUnassignedIPAddresses(System.IAsyncResult asyncResult) - { + public PackageIPAddress[] EndGetPackageUnassignedIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((PackageIPAddress[])(results[0])); } - + /// - public void GetPackageUnassignedIPAddressesAsync(int packageId, IPAddressPool pool) - { + public void GetPackageUnassignedIPAddressesAsync(int packageId, IPAddressPool pool) { this.GetPackageUnassignedIPAddressesAsync(packageId, pool, null); } - + /// - public void GetPackageUnassignedIPAddressesAsync(int packageId, IPAddressPool pool, object userState) - { - if ((this.GetPackageUnassignedIPAddressesOperationCompleted == null)) - { + public void GetPackageUnassignedIPAddressesAsync(int packageId, IPAddressPool pool, object userState) { + if ((this.GetPackageUnassignedIPAddressesOperationCompleted == null)) { this.GetPackageUnassignedIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPackageUnassignedIPAddressesOperationCompleted); } this.InvokeAsync("GetPackageUnassignedIPAddresses", new object[] { packageId, pool}, this.GetPackageUnassignedIPAddressesOperationCompleted, userState); } - - private void OnGetPackageUnassignedIPAddressesOperationCompleted(object arg) - { - if ((this.GetPackageUnassignedIPAddressesCompleted != null)) - { + + private void OnGetPackageUnassignedIPAddressesOperationCompleted(object arg) { + if ((this.GetPackageUnassignedIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetPackageUnassignedIPAddressesCompleted(this, new GetPackageUnassignedIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AllocatePackageIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject AllocatePackageIPAddresses(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AllocatePackageIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject AllocatePackageIPAddresses(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId) { object[] results = this.Invoke("AllocatePackageIPAddresses", new object[] { packageId, groupName, @@ -3377,10 +2949,9 @@ namespace WebsitePanel.EnterpriseServer addressId}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginAllocatePackageIPAddresses(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAllocatePackageIPAddresses(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AllocatePackageIPAddresses", new object[] { packageId, groupName, @@ -3389,25 +2960,21 @@ namespace WebsitePanel.EnterpriseServer addressesNumber, addressId}, callback, asyncState); } - + /// - public ResultObject EndAllocatePackageIPAddresses(System.IAsyncResult asyncResult) - { + public ResultObject EndAllocatePackageIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void AllocatePackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId) - { + public void AllocatePackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId) { this.AllocatePackageIPAddressesAsync(packageId, groupName, pool, allocateRandom, addressesNumber, addressId, null); } - + /// - public void AllocatePackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId, object userState) - { - if ((this.AllocatePackageIPAddressesOperationCompleted == null)) - { + public void AllocatePackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, bool allocateRandom, int addressesNumber, int[] addressId, object userState) { + if ((this.AllocatePackageIPAddressesOperationCompleted == null)) { this.AllocatePackageIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAllocatePackageIPAddressesOperationCompleted); } this.InvokeAsync("AllocatePackageIPAddresses", new object[] { @@ -3418,54 +2985,46 @@ namespace WebsitePanel.EnterpriseServer addressesNumber, addressId}, this.AllocatePackageIPAddressesOperationCompleted, userState); } - - private void OnAllocatePackageIPAddressesOperationCompleted(object arg) - { - if ((this.AllocatePackageIPAddressesCompleted != null)) - { + + private void OnAllocatePackageIPAddressesOperationCompleted(object arg) { + if ((this.AllocatePackageIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AllocatePackageIPAddressesCompleted(this, new AllocatePackageIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AllocateMaximumPackageIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject AllocateMaximumPackageIPAddresses(int packageId, string groupName, IPAddressPool pool) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AllocateMaximumPackageIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject AllocateMaximumPackageIPAddresses(int packageId, string groupName, IPAddressPool pool) { object[] results = this.Invoke("AllocateMaximumPackageIPAddresses", new object[] { packageId, groupName, pool}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginAllocateMaximumPackageIPAddresses(int packageId, string groupName, IPAddressPool pool, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAllocateMaximumPackageIPAddresses(int packageId, string groupName, IPAddressPool pool, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AllocateMaximumPackageIPAddresses", new object[] { packageId, groupName, pool}, callback, asyncState); } - + /// - public ResultObject EndAllocateMaximumPackageIPAddresses(System.IAsyncResult asyncResult) - { + public ResultObject EndAllocateMaximumPackageIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void AllocateMaximumPackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool) - { + public void AllocateMaximumPackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool) { this.AllocateMaximumPackageIPAddressesAsync(packageId, groupName, pool, null); } - + /// - public void AllocateMaximumPackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, object userState) - { - if ((this.AllocateMaximumPackageIPAddressesOperationCompleted == null)) - { + public void AllocateMaximumPackageIPAddressesAsync(int packageId, string groupName, IPAddressPool pool, object userState) { + if ((this.AllocateMaximumPackageIPAddressesOperationCompleted == null)) { this.AllocateMaximumPackageIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAllocateMaximumPackageIPAddressesOperationCompleted); } this.InvokeAsync("AllocateMaximumPackageIPAddresses", new object[] { @@ -3473,951 +3032,796 @@ namespace WebsitePanel.EnterpriseServer groupName, pool}, this.AllocateMaximumPackageIPAddressesOperationCompleted, userState); } - - private void OnAllocateMaximumPackageIPAddressesOperationCompleted(object arg) - { - if ((this.AllocateMaximumPackageIPAddressesCompleted != null)) - { + + private void OnAllocateMaximumPackageIPAddressesOperationCompleted(object arg) { + if ((this.AllocateMaximumPackageIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AllocateMaximumPackageIPAddressesCompleted(this, new AllocateMaximumPackageIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeallocatePackageIPAddresses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject DeallocatePackageIPAddresses(int packageId, int[] addressId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeallocatePackageIPAddresses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject DeallocatePackageIPAddresses(int packageId, int[] addressId) { object[] results = this.Invoke("DeallocatePackageIPAddresses", new object[] { packageId, addressId}); return ((ResultObject)(results[0])); } - + /// - public System.IAsyncResult BeginDeallocatePackageIPAddresses(int packageId, int[] addressId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeallocatePackageIPAddresses(int packageId, int[] addressId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeallocatePackageIPAddresses", new object[] { packageId, addressId}, callback, asyncState); } - + /// - public ResultObject EndDeallocatePackageIPAddresses(System.IAsyncResult asyncResult) - { + public ResultObject EndDeallocatePackageIPAddresses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ResultObject)(results[0])); } - + /// - public void DeallocatePackageIPAddressesAsync(int packageId, int[] addressId) - { + public void DeallocatePackageIPAddressesAsync(int packageId, int[] addressId) { this.DeallocatePackageIPAddressesAsync(packageId, addressId, null); } - + /// - public void DeallocatePackageIPAddressesAsync(int packageId, int[] addressId, object userState) - { - if ((this.DeallocatePackageIPAddressesOperationCompleted == null)) - { + public void DeallocatePackageIPAddressesAsync(int packageId, int[] addressId, object userState) { + if ((this.DeallocatePackageIPAddressesOperationCompleted == null)) { this.DeallocatePackageIPAddressesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeallocatePackageIPAddressesOperationCompleted); } this.InvokeAsync("DeallocatePackageIPAddresses", new object[] { packageId, addressId}, this.DeallocatePackageIPAddressesOperationCompleted, userState); } - - private void OnDeallocatePackageIPAddressesOperationCompleted(object arg) - { - if ((this.DeallocatePackageIPAddressesCompleted != null)) - { + + private void OnDeallocatePackageIPAddressesOperationCompleted(object arg) { + if ((this.DeallocatePackageIPAddressesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeallocatePackageIPAddressesCompleted(this, new DeallocatePackageIPAddressesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetClusters", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ClusterInfo[] GetClusters() - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetClusters", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ClusterInfo[] GetClusters() { object[] results = this.Invoke("GetClusters", new object[0]); return ((ClusterInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetClusters(System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetClusters(System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetClusters", new object[0], callback, asyncState); } - + /// - public ClusterInfo[] EndGetClusters(System.IAsyncResult asyncResult) - { + public ClusterInfo[] EndGetClusters(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((ClusterInfo[])(results[0])); } - + /// - public void GetClustersAsync() - { + public void GetClustersAsync() { this.GetClustersAsync(null); } - + /// - public void GetClustersAsync(object userState) - { - if ((this.GetClustersOperationCompleted == null)) - { + public void GetClustersAsync(object userState) { + if ((this.GetClustersOperationCompleted == null)) { this.GetClustersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetClustersOperationCompleted); } this.InvokeAsync("GetClusters", new object[0], this.GetClustersOperationCompleted, userState); } - - private void OnGetClustersOperationCompleted(object arg) - { - if ((this.GetClustersCompleted != null)) - { + + private void OnGetClustersOperationCompleted(object arg) { + if ((this.GetClustersCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetClustersCompleted(this, new GetClustersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddCluster", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddCluster(ClusterInfo cluster) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddCluster", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddCluster(ClusterInfo cluster) { object[] results = this.Invoke("AddCluster", new object[] { cluster}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddCluster(ClusterInfo cluster, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddCluster(ClusterInfo cluster, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddCluster", new object[] { cluster}, callback, asyncState); } - + /// - public int EndAddCluster(System.IAsyncResult asyncResult) - { + public int EndAddCluster(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddClusterAsync(ClusterInfo cluster) - { + public void AddClusterAsync(ClusterInfo cluster) { this.AddClusterAsync(cluster, null); } - + /// - public void AddClusterAsync(ClusterInfo cluster, object userState) - { - if ((this.AddClusterOperationCompleted == null)) - { + public void AddClusterAsync(ClusterInfo cluster, object userState) { + if ((this.AddClusterOperationCompleted == null)) { this.AddClusterOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddClusterOperationCompleted); } this.InvokeAsync("AddCluster", new object[] { cluster}, this.AddClusterOperationCompleted, userState); } - - private void OnAddClusterOperationCompleted(object arg) - { - if ((this.AddClusterCompleted != null)) - { + + private void OnAddClusterOperationCompleted(object arg) { + if ((this.AddClusterCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddClusterCompleted(this, new AddClusterCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteCluster", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteCluster(int clusterId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteCluster", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteCluster(int clusterId) { object[] results = this.Invoke("DeleteCluster", new object[] { clusterId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteCluster(int clusterId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteCluster(int clusterId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteCluster", new object[] { clusterId}, callback, asyncState); } - + /// - public int EndDeleteCluster(System.IAsyncResult asyncResult) - { + public int EndDeleteCluster(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteClusterAsync(int clusterId) - { + public void DeleteClusterAsync(int clusterId) { this.DeleteClusterAsync(clusterId, null); } - + /// - public void DeleteClusterAsync(int clusterId, object userState) - { - if ((this.DeleteClusterOperationCompleted == null)) - { + public void DeleteClusterAsync(int clusterId, object userState) { + if ((this.DeleteClusterOperationCompleted == null)) { this.DeleteClusterOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteClusterOperationCompleted); } this.InvokeAsync("DeleteCluster", new object[] { clusterId}, this.DeleteClusterOperationCompleted, userState); } - - private void OnDeleteClusterOperationCompleted(object arg) - { - if ((this.DeleteClusterCompleted != null)) - { + + private void OnDeleteClusterOperationCompleted(object arg) { + if ((this.DeleteClusterCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteClusterCompleted(this, new DeleteClusterCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByService", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawDnsRecordsByService(int serviceId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByService", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawDnsRecordsByService(int serviceId) { object[] results = this.Invoke("GetRawDnsRecordsByService", new object[] { serviceId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawDnsRecordsByService(int serviceId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawDnsRecordsByService(int serviceId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawDnsRecordsByService", new object[] { serviceId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawDnsRecordsByService(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawDnsRecordsByService(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawDnsRecordsByServiceAsync(int serviceId) - { + public void GetRawDnsRecordsByServiceAsync(int serviceId) { this.GetRawDnsRecordsByServiceAsync(serviceId, null); } - + /// - public void GetRawDnsRecordsByServiceAsync(int serviceId, object userState) - { - if ((this.GetRawDnsRecordsByServiceOperationCompleted == null)) - { + public void GetRawDnsRecordsByServiceAsync(int serviceId, object userState) { + if ((this.GetRawDnsRecordsByServiceOperationCompleted == null)) { this.GetRawDnsRecordsByServiceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawDnsRecordsByServiceOperationCompleted); } this.InvokeAsync("GetRawDnsRecordsByService", new object[] { serviceId}, this.GetRawDnsRecordsByServiceOperationCompleted, userState); } - - private void OnGetRawDnsRecordsByServiceOperationCompleted(object arg) - { - if ((this.GetRawDnsRecordsByServiceCompleted != null)) - { + + private void OnGetRawDnsRecordsByServiceOperationCompleted(object arg) { + if ((this.GetRawDnsRecordsByServiceCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawDnsRecordsByServiceCompleted(this, new GetRawDnsRecordsByServiceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByServer", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawDnsRecordsByServer(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByServer", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawDnsRecordsByServer(int serverId) { object[] results = this.Invoke("GetRawDnsRecordsByServer", new object[] { serverId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawDnsRecordsByServer(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawDnsRecordsByServer(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawDnsRecordsByServer", new object[] { serverId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawDnsRecordsByServer(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawDnsRecordsByServer(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawDnsRecordsByServerAsync(int serverId) - { + public void GetRawDnsRecordsByServerAsync(int serverId) { this.GetRawDnsRecordsByServerAsync(serverId, null); } - + /// - public void GetRawDnsRecordsByServerAsync(int serverId, object userState) - { - if ((this.GetRawDnsRecordsByServerOperationCompleted == null)) - { + public void GetRawDnsRecordsByServerAsync(int serverId, object userState) { + if ((this.GetRawDnsRecordsByServerOperationCompleted == null)) { this.GetRawDnsRecordsByServerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawDnsRecordsByServerOperationCompleted); } this.InvokeAsync("GetRawDnsRecordsByServer", new object[] { serverId}, this.GetRawDnsRecordsByServerOperationCompleted, userState); } - - private void OnGetRawDnsRecordsByServerOperationCompleted(object arg) - { - if ((this.GetRawDnsRecordsByServerCompleted != null)) - { + + private void OnGetRawDnsRecordsByServerOperationCompleted(object arg) { + if ((this.GetRawDnsRecordsByServerCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawDnsRecordsByServerCompleted(this, new GetRawDnsRecordsByServerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByPackage", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawDnsRecordsByPackage(int packageId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByPackage", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawDnsRecordsByPackage(int packageId) { object[] results = this.Invoke("GetRawDnsRecordsByPackage", new object[] { packageId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawDnsRecordsByPackage(int packageId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawDnsRecordsByPackage(int packageId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawDnsRecordsByPackage", new object[] { packageId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawDnsRecordsByPackage(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawDnsRecordsByPackage(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawDnsRecordsByPackageAsync(int packageId) - { + public void GetRawDnsRecordsByPackageAsync(int packageId) { this.GetRawDnsRecordsByPackageAsync(packageId, null); } - + /// - public void GetRawDnsRecordsByPackageAsync(int packageId, object userState) - { - if ((this.GetRawDnsRecordsByPackageOperationCompleted == null)) - { + public void GetRawDnsRecordsByPackageAsync(int packageId, object userState) { + if ((this.GetRawDnsRecordsByPackageOperationCompleted == null)) { this.GetRawDnsRecordsByPackageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawDnsRecordsByPackageOperationCompleted); } this.InvokeAsync("GetRawDnsRecordsByPackage", new object[] { packageId}, this.GetRawDnsRecordsByPackageOperationCompleted, userState); } - - private void OnGetRawDnsRecordsByPackageOperationCompleted(object arg) - { - if ((this.GetRawDnsRecordsByPackageCompleted != null)) - { + + private void OnGetRawDnsRecordsByPackageOperationCompleted(object arg) { + if ((this.GetRawDnsRecordsByPackageCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawDnsRecordsByPackageCompleted(this, new GetRawDnsRecordsByPackageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawDnsRecordsByGroup(int groupId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsRecordsByGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawDnsRecordsByGroup(int groupId) { object[] results = this.Invoke("GetRawDnsRecordsByGroup", new object[] { groupId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawDnsRecordsByGroup(int groupId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawDnsRecordsByGroup(int groupId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawDnsRecordsByGroup", new object[] { groupId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawDnsRecordsByGroup(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawDnsRecordsByGroup(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawDnsRecordsByGroupAsync(int groupId) - { + public void GetRawDnsRecordsByGroupAsync(int groupId) { this.GetRawDnsRecordsByGroupAsync(groupId, null); } - + /// - public void GetRawDnsRecordsByGroupAsync(int groupId, object userState) - { - if ((this.GetRawDnsRecordsByGroupOperationCompleted == null)) - { + public void GetRawDnsRecordsByGroupAsync(int groupId, object userState) { + if ((this.GetRawDnsRecordsByGroupOperationCompleted == null)) { this.GetRawDnsRecordsByGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawDnsRecordsByGroupOperationCompleted); } this.InvokeAsync("GetRawDnsRecordsByGroup", new object[] { groupId}, this.GetRawDnsRecordsByGroupOperationCompleted, userState); } - - private void OnGetRawDnsRecordsByGroupOperationCompleted(object arg) - { - if ((this.GetRawDnsRecordsByGroupCompleted != null)) - { + + private void OnGetRawDnsRecordsByGroupOperationCompleted(object arg) { + if ((this.GetRawDnsRecordsByGroupCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawDnsRecordsByGroupCompleted(this, new GetRawDnsRecordsByGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByService", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public GlobalDnsRecord[] GetDnsRecordsByService(int serviceId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByService", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public GlobalDnsRecord[] GetDnsRecordsByService(int serviceId) { object[] results = this.Invoke("GetDnsRecordsByService", new object[] { serviceId}); return ((GlobalDnsRecord[])(results[0])); } - + /// - public System.IAsyncResult BeginGetDnsRecordsByService(int serviceId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDnsRecordsByService(int serviceId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDnsRecordsByService", new object[] { serviceId}, callback, asyncState); } - + /// - public GlobalDnsRecord[] EndGetDnsRecordsByService(System.IAsyncResult asyncResult) - { + public GlobalDnsRecord[] EndGetDnsRecordsByService(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((GlobalDnsRecord[])(results[0])); } - + /// - public void GetDnsRecordsByServiceAsync(int serviceId) - { + public void GetDnsRecordsByServiceAsync(int serviceId) { this.GetDnsRecordsByServiceAsync(serviceId, null); } - + /// - public void GetDnsRecordsByServiceAsync(int serviceId, object userState) - { - if ((this.GetDnsRecordsByServiceOperationCompleted == null)) - { + public void GetDnsRecordsByServiceAsync(int serviceId, object userState) { + if ((this.GetDnsRecordsByServiceOperationCompleted == null)) { this.GetDnsRecordsByServiceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDnsRecordsByServiceOperationCompleted); } this.InvokeAsync("GetDnsRecordsByService", new object[] { serviceId}, this.GetDnsRecordsByServiceOperationCompleted, userState); } - - private void OnGetDnsRecordsByServiceOperationCompleted(object arg) - { - if ((this.GetDnsRecordsByServiceCompleted != null)) - { + + private void OnGetDnsRecordsByServiceOperationCompleted(object arg) { + if ((this.GetDnsRecordsByServiceCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDnsRecordsByServiceCompleted(this, new GetDnsRecordsByServiceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByServer", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public GlobalDnsRecord[] GetDnsRecordsByServer(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByServer", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public GlobalDnsRecord[] GetDnsRecordsByServer(int serverId) { object[] results = this.Invoke("GetDnsRecordsByServer", new object[] { serverId}); return ((GlobalDnsRecord[])(results[0])); } - + /// - public System.IAsyncResult BeginGetDnsRecordsByServer(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDnsRecordsByServer(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDnsRecordsByServer", new object[] { serverId}, callback, asyncState); } - + /// - public GlobalDnsRecord[] EndGetDnsRecordsByServer(System.IAsyncResult asyncResult) - { + public GlobalDnsRecord[] EndGetDnsRecordsByServer(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((GlobalDnsRecord[])(results[0])); } - + /// - public void GetDnsRecordsByServerAsync(int serverId) - { + public void GetDnsRecordsByServerAsync(int serverId) { this.GetDnsRecordsByServerAsync(serverId, null); } - + /// - public void GetDnsRecordsByServerAsync(int serverId, object userState) - { - if ((this.GetDnsRecordsByServerOperationCompleted == null)) - { + public void GetDnsRecordsByServerAsync(int serverId, object userState) { + if ((this.GetDnsRecordsByServerOperationCompleted == null)) { this.GetDnsRecordsByServerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDnsRecordsByServerOperationCompleted); } this.InvokeAsync("GetDnsRecordsByServer", new object[] { serverId}, this.GetDnsRecordsByServerOperationCompleted, userState); } - - private void OnGetDnsRecordsByServerOperationCompleted(object arg) - { - if ((this.GetDnsRecordsByServerCompleted != null)) - { + + private void OnGetDnsRecordsByServerOperationCompleted(object arg) { + if ((this.GetDnsRecordsByServerCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDnsRecordsByServerCompleted(this, new GetDnsRecordsByServerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByPackage", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public GlobalDnsRecord[] GetDnsRecordsByPackage(int packageId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByPackage", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public GlobalDnsRecord[] GetDnsRecordsByPackage(int packageId) { object[] results = this.Invoke("GetDnsRecordsByPackage", new object[] { packageId}); return ((GlobalDnsRecord[])(results[0])); } - + /// - public System.IAsyncResult BeginGetDnsRecordsByPackage(int packageId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDnsRecordsByPackage(int packageId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDnsRecordsByPackage", new object[] { packageId}, callback, asyncState); } - + /// - public GlobalDnsRecord[] EndGetDnsRecordsByPackage(System.IAsyncResult asyncResult) - { + public GlobalDnsRecord[] EndGetDnsRecordsByPackage(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((GlobalDnsRecord[])(results[0])); } - + /// - public void GetDnsRecordsByPackageAsync(int packageId) - { + public void GetDnsRecordsByPackageAsync(int packageId) { this.GetDnsRecordsByPackageAsync(packageId, null); } - + /// - public void GetDnsRecordsByPackageAsync(int packageId, object userState) - { - if ((this.GetDnsRecordsByPackageOperationCompleted == null)) - { + public void GetDnsRecordsByPackageAsync(int packageId, object userState) { + if ((this.GetDnsRecordsByPackageOperationCompleted == null)) { this.GetDnsRecordsByPackageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDnsRecordsByPackageOperationCompleted); } this.InvokeAsync("GetDnsRecordsByPackage", new object[] { packageId}, this.GetDnsRecordsByPackageOperationCompleted, userState); } - - private void OnGetDnsRecordsByPackageOperationCompleted(object arg) - { - if ((this.GetDnsRecordsByPackageCompleted != null)) - { + + private void OnGetDnsRecordsByPackageOperationCompleted(object arg) { + if ((this.GetDnsRecordsByPackageCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDnsRecordsByPackageCompleted(this, new GetDnsRecordsByPackageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public GlobalDnsRecord[] GetDnsRecordsByGroup(int groupId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecordsByGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public GlobalDnsRecord[] GetDnsRecordsByGroup(int groupId) { object[] results = this.Invoke("GetDnsRecordsByGroup", new object[] { groupId}); return ((GlobalDnsRecord[])(results[0])); } - + /// - public System.IAsyncResult BeginGetDnsRecordsByGroup(int groupId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDnsRecordsByGroup(int groupId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDnsRecordsByGroup", new object[] { groupId}, callback, asyncState); } - + /// - public GlobalDnsRecord[] EndGetDnsRecordsByGroup(System.IAsyncResult asyncResult) - { + public GlobalDnsRecord[] EndGetDnsRecordsByGroup(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((GlobalDnsRecord[])(results[0])); } - + /// - public void GetDnsRecordsByGroupAsync(int groupId) - { + public void GetDnsRecordsByGroupAsync(int groupId) { this.GetDnsRecordsByGroupAsync(groupId, null); } - + /// - public void GetDnsRecordsByGroupAsync(int groupId, object userState) - { - if ((this.GetDnsRecordsByGroupOperationCompleted == null)) - { + public void GetDnsRecordsByGroupAsync(int groupId, object userState) { + if ((this.GetDnsRecordsByGroupOperationCompleted == null)) { this.GetDnsRecordsByGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDnsRecordsByGroupOperationCompleted); } this.InvokeAsync("GetDnsRecordsByGroup", new object[] { groupId}, this.GetDnsRecordsByGroupOperationCompleted, userState); } - - private void OnGetDnsRecordsByGroupOperationCompleted(object arg) - { - if ((this.GetDnsRecordsByGroupCompleted != null)) - { + + private void OnGetDnsRecordsByGroupOperationCompleted(object arg) { + if ((this.GetDnsRecordsByGroupCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDnsRecordsByGroupCompleted(this, new GetDnsRecordsByGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecord", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public GlobalDnsRecord GetDnsRecord(int recordId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsRecord", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public GlobalDnsRecord GetDnsRecord(int recordId) { object[] results = this.Invoke("GetDnsRecord", new object[] { recordId}); return ((GlobalDnsRecord)(results[0])); } - + /// - public System.IAsyncResult BeginGetDnsRecord(int recordId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDnsRecord(int recordId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDnsRecord", new object[] { recordId}, callback, asyncState); } - + /// - public GlobalDnsRecord EndGetDnsRecord(System.IAsyncResult asyncResult) - { + public GlobalDnsRecord EndGetDnsRecord(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((GlobalDnsRecord)(results[0])); } - + /// - public void GetDnsRecordAsync(int recordId) - { + public void GetDnsRecordAsync(int recordId) { this.GetDnsRecordAsync(recordId, null); } - + /// - public void GetDnsRecordAsync(int recordId, object userState) - { - if ((this.GetDnsRecordOperationCompleted == null)) - { + public void GetDnsRecordAsync(int recordId, object userState) { + if ((this.GetDnsRecordOperationCompleted == null)) { this.GetDnsRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDnsRecordOperationCompleted); } this.InvokeAsync("GetDnsRecord", new object[] { recordId}, this.GetDnsRecordOperationCompleted, userState); } - - private void OnGetDnsRecordOperationCompleted(object arg) - { - if ((this.GetDnsRecordCompleted != null)) - { + + private void OnGetDnsRecordOperationCompleted(object arg) { + if ((this.GetDnsRecordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDnsRecordCompleted(this, new GetDnsRecordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDnsRecord", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddDnsRecord(GlobalDnsRecord record) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDnsRecord", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddDnsRecord(GlobalDnsRecord record) { object[] results = this.Invoke("AddDnsRecord", new object[] { record}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddDnsRecord(GlobalDnsRecord record, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddDnsRecord(GlobalDnsRecord record, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddDnsRecord", new object[] { record}, callback, asyncState); } - + /// - public int EndAddDnsRecord(System.IAsyncResult asyncResult) - { + public int EndAddDnsRecord(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddDnsRecordAsync(GlobalDnsRecord record) - { + public void AddDnsRecordAsync(GlobalDnsRecord record) { this.AddDnsRecordAsync(record, null); } - + /// - public void AddDnsRecordAsync(GlobalDnsRecord record, object userState) - { - if ((this.AddDnsRecordOperationCompleted == null)) - { + public void AddDnsRecordAsync(GlobalDnsRecord record, object userState) { + if ((this.AddDnsRecordOperationCompleted == null)) { this.AddDnsRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddDnsRecordOperationCompleted); } this.InvokeAsync("AddDnsRecord", new object[] { record}, this.AddDnsRecordOperationCompleted, userState); } - - private void OnAddDnsRecordOperationCompleted(object arg) - { - if ((this.AddDnsRecordCompleted != null)) - { + + private void OnAddDnsRecordOperationCompleted(object arg) { + if ((this.AddDnsRecordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddDnsRecordCompleted(this, new AddDnsRecordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateDnsRecord", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateDnsRecord(GlobalDnsRecord record) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateDnsRecord", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateDnsRecord(GlobalDnsRecord record) { object[] results = this.Invoke("UpdateDnsRecord", new object[] { record}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateDnsRecord(GlobalDnsRecord record, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateDnsRecord(GlobalDnsRecord record, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateDnsRecord", new object[] { record}, callback, asyncState); } - + /// - public int EndUpdateDnsRecord(System.IAsyncResult asyncResult) - { + public int EndUpdateDnsRecord(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateDnsRecordAsync(GlobalDnsRecord record) - { + public void UpdateDnsRecordAsync(GlobalDnsRecord record) { this.UpdateDnsRecordAsync(record, null); } - + /// - public void UpdateDnsRecordAsync(GlobalDnsRecord record, object userState) - { - if ((this.UpdateDnsRecordOperationCompleted == null)) - { + public void UpdateDnsRecordAsync(GlobalDnsRecord record, object userState) { + if ((this.UpdateDnsRecordOperationCompleted == null)) { this.UpdateDnsRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateDnsRecordOperationCompleted); } this.InvokeAsync("UpdateDnsRecord", new object[] { record}, this.UpdateDnsRecordOperationCompleted, userState); } - - private void OnUpdateDnsRecordOperationCompleted(object arg) - { - if ((this.UpdateDnsRecordCompleted != null)) - { + + private void OnUpdateDnsRecordOperationCompleted(object arg) { + if ((this.UpdateDnsRecordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateDnsRecordCompleted(this, new UpdateDnsRecordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDnsRecord", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteDnsRecord(int recordId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDnsRecord", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteDnsRecord(int recordId) { object[] results = this.Invoke("DeleteDnsRecord", new object[] { recordId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteDnsRecord(int recordId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteDnsRecord(int recordId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteDnsRecord", new object[] { recordId}, callback, asyncState); } - + /// - public int EndDeleteDnsRecord(System.IAsyncResult asyncResult) - { + public int EndDeleteDnsRecord(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteDnsRecordAsync(int recordId) - { + public void DeleteDnsRecordAsync(int recordId) { this.DeleteDnsRecordAsync(recordId, null); } - + /// - public void DeleteDnsRecordAsync(int recordId, object userState) - { - if ((this.DeleteDnsRecordOperationCompleted == null)) - { + public void DeleteDnsRecordAsync(int recordId, object userState) { + if ((this.DeleteDnsRecordOperationCompleted == null)) { this.DeleteDnsRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteDnsRecordOperationCompleted); } this.InvokeAsync("DeleteDnsRecord", new object[] { recordId}, this.DeleteDnsRecordOperationCompleted, userState); } - - private void OnDeleteDnsRecordOperationCompleted(object arg) - { - if ((this.DeleteDnsRecordCompleted != null)) - { + + private void OnDeleteDnsRecordOperationCompleted(object arg) { + if ((this.DeleteDnsRecordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteDnsRecordCompleted(this, new DeleteDnsRecordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDomains", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public DomainInfo[] GetDomains(int packageId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDomains", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public DomainInfo[] GetDomains(int packageId) { object[] results = this.Invoke("GetDomains", new object[] { packageId}); return ((DomainInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetDomains(int packageId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDomains(int packageId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDomains", new object[] { packageId}, callback, asyncState); } - + /// - public DomainInfo[] EndGetDomains(System.IAsyncResult asyncResult) - { + public DomainInfo[] EndGetDomains(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((DomainInfo[])(results[0])); } - + /// - public void GetDomainsAsync(int packageId) - { + public void GetDomainsAsync(int packageId) { this.GetDomainsAsync(packageId, null); } - + /// - public void GetDomainsAsync(int packageId, object userState) - { - if ((this.GetDomainsOperationCompleted == null)) - { + public void GetDomainsAsync(int packageId, object userState) { + if ((this.GetDomainsOperationCompleted == null)) { this.GetDomainsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDomainsOperationCompleted); } this.InvokeAsync("GetDomains", new object[] { packageId}, this.GetDomainsOperationCompleted, userState); } - - private void OnGetDomainsOperationCompleted(object arg) - { - if ((this.GetDomainsCompleted != null)) - { + + private void OnGetDomainsOperationCompleted(object arg) { + if ((this.GetDomainsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDomainsCompleted(this, new GetDomainsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetMyDomains", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public DomainInfo[] GetMyDomains(int packageId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetMyDomains", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public DomainInfo[] GetMyDomains(int packageId) { object[] results = this.Invoke("GetMyDomains", new object[] { packageId}); return ((DomainInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetMyDomains(int packageId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetMyDomains(int packageId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetMyDomains", new object[] { packageId}, callback, asyncState); } - + /// - public DomainInfo[] EndGetMyDomains(System.IAsyncResult asyncResult) - { + public DomainInfo[] EndGetMyDomains(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((DomainInfo[])(results[0])); } - + /// - public void GetMyDomainsAsync(int packageId) - { + public void GetMyDomainsAsync(int packageId) { this.GetMyDomainsAsync(packageId, null); } - + /// - public void GetMyDomainsAsync(int packageId, object userState) - { - if ((this.GetMyDomainsOperationCompleted == null)) - { + public void GetMyDomainsAsync(int packageId, object userState) { + if ((this.GetMyDomainsOperationCompleted == null)) { this.GetMyDomainsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMyDomainsOperationCompleted); } this.InvokeAsync("GetMyDomains", new object[] { packageId}, this.GetMyDomainsOperationCompleted, userState); } - - private void OnGetMyDomainsOperationCompleted(object arg) - { - if ((this.GetMyDomainsCompleted != null)) - { + + private void OnGetMyDomainsOperationCompleted(object arg) { + if ((this.GetMyDomainsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetMyDomainsCompleted(this, new GetMyDomainsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetResellerDomains", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public DomainInfo[] GetResellerDomains(int packageId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetResellerDomains", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public DomainInfo[] GetResellerDomains(int packageId) { object[] results = this.Invoke("GetResellerDomains", new object[] { packageId}); return ((DomainInfo[])(results[0])); } - + /// - public System.IAsyncResult BeginGetResellerDomains(int packageId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetResellerDomains(int packageId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetResellerDomains", new object[] { packageId}, callback, asyncState); } - + /// - public DomainInfo[] EndGetResellerDomains(System.IAsyncResult asyncResult) - { + public DomainInfo[] EndGetResellerDomains(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((DomainInfo[])(results[0])); } - + /// - public void GetResellerDomainsAsync(int packageId) - { + public void GetResellerDomainsAsync(int packageId) { this.GetResellerDomainsAsync(packageId, null); } - + /// - public void GetResellerDomainsAsync(int packageId, object userState) - { - if ((this.GetResellerDomainsOperationCompleted == null)) - { + public void GetResellerDomainsAsync(int packageId, object userState) { + if ((this.GetResellerDomainsOperationCompleted == null)) { this.GetResellerDomainsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetResellerDomainsOperationCompleted); } this.InvokeAsync("GetResellerDomains", new object[] { packageId}, this.GetResellerDomainsOperationCompleted, userState); } - - private void OnGetResellerDomainsOperationCompleted(object arg) - { - if ((this.GetResellerDomainsCompleted != null)) - { + + private void OnGetResellerDomainsOperationCompleted(object arg) { + if ((this.GetResellerDomainsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetResellerDomainsCompleted(this, new GetResellerDomainsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDomainsPaged", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetDomainsPaged(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDomainsPaged", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetDomainsPaged(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { object[] results = this.Invoke("GetDomainsPaged", new object[] { packageId, serverId, @@ -4429,10 +3833,9 @@ namespace WebsitePanel.EnterpriseServer maximumRows}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetDomainsPaged(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDomainsPaged(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDomainsPaged", new object[] { packageId, serverId, @@ -4443,25 +3846,21 @@ namespace WebsitePanel.EnterpriseServer startRow, maximumRows}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetDomainsPaged(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetDomainsPaged(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetDomainsPagedAsync(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { + public void GetDomainsPagedAsync(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { this.GetDomainsPagedAsync(packageId, serverId, recursive, filterColumn, filterValue, sortColumn, startRow, maximumRows, null); } - + /// - public void GetDomainsPagedAsync(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) - { - if ((this.GetDomainsPagedOperationCompleted == null)) - { + public void GetDomainsPagedAsync(int packageId, int serverId, bool recursive, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) { + if ((this.GetDomainsPagedOperationCompleted == null)) { this.GetDomainsPagedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDomainsPagedOperationCompleted); } this.InvokeAsync("GetDomainsPaged", new object[] { @@ -4474,118 +3873,99 @@ namespace WebsitePanel.EnterpriseServer startRow, maximumRows}, this.GetDomainsPagedOperationCompleted, userState); } - - private void OnGetDomainsPagedOperationCompleted(object arg) - { - if ((this.GetDomainsPagedCompleted != null)) - { + + private void OnGetDomainsPagedOperationCompleted(object arg) { + if ((this.GetDomainsPagedCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDomainsPagedCompleted(this, new GetDomainsPagedCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDomain", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public DomainInfo GetDomain(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDomain", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public DomainInfo GetDomain(int domainId) { object[] results = this.Invoke("GetDomain", new object[] { domainId}); return ((DomainInfo)(results[0])); } - + /// - public System.IAsyncResult BeginGetDomain(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDomain(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDomain", new object[] { domainId}, callback, asyncState); } - + /// - public DomainInfo EndGetDomain(System.IAsyncResult asyncResult) - { + public DomainInfo EndGetDomain(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((DomainInfo)(results[0])); } - + /// - public void GetDomainAsync(int domainId) - { + public void GetDomainAsync(int domainId) { this.GetDomainAsync(domainId, null); } - + /// - public void GetDomainAsync(int domainId, object userState) - { - if ((this.GetDomainOperationCompleted == null)) - { + public void GetDomainAsync(int domainId, object userState) { + if ((this.GetDomainOperationCompleted == null)) { this.GetDomainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDomainOperationCompleted); } this.InvokeAsync("GetDomain", new object[] { domainId}, this.GetDomainOperationCompleted, userState); } - - private void OnGetDomainOperationCompleted(object arg) - { - if ((this.GetDomainCompleted != null)) - { + + private void OnGetDomainOperationCompleted(object arg) { + if ((this.GetDomainCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDomainCompleted(this, new GetDomainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDomain", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddDomain(DomainInfo domain) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDomain", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddDomain(DomainInfo domain) { object[] results = this.Invoke("AddDomain", new object[] { domain}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddDomain(DomainInfo domain, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddDomain(DomainInfo domain, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddDomain", new object[] { domain}, callback, asyncState); } - + /// - public int EndAddDomain(System.IAsyncResult asyncResult) - { + public int EndAddDomain(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddDomainAsync(DomainInfo domain) - { + public void AddDomainAsync(DomainInfo domain) { this.AddDomainAsync(domain, null); } - + /// - public void AddDomainAsync(DomainInfo domain, object userState) - { - if ((this.AddDomainOperationCompleted == null)) - { + public void AddDomainAsync(DomainInfo domain, object userState) { + if ((this.AddDomainOperationCompleted == null)) { this.AddDomainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddDomainOperationCompleted); } this.InvokeAsync("AddDomain", new object[] { domain}, this.AddDomainOperationCompleted, userState); } - - private void OnAddDomainOperationCompleted(object arg) - { - if ((this.AddDomainCompleted != null)) - { + + private void OnAddDomainOperationCompleted(object arg) { + if ((this.AddDomainCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddDomainCompleted(this, new AddDomainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDomainWithProvisioning", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddDomainWithProvisioning(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDomainWithProvisioning", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddDomainWithProvisioning(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains, string hostName) { object[] results = this.Invoke("AddDomainWithProvisioning", new object[] { packageId, domainName, @@ -4595,13 +3975,13 @@ namespace WebsitePanel.EnterpriseServer pointMailDomainId, createDnsZone, createInstantAlias, - allowSubDomains}); + allowSubDomains, + hostName}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddDomainWithProvisioning(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddDomainWithProvisioning(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains, string hostName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddDomainWithProvisioning", new object[] { packageId, domainName, @@ -4611,27 +3991,24 @@ namespace WebsitePanel.EnterpriseServer pointMailDomainId, createDnsZone, createInstantAlias, - allowSubDomains}, callback, asyncState); + allowSubDomains, + hostName}, callback, asyncState); } - + /// - public int EndAddDomainWithProvisioning(System.IAsyncResult asyncResult) - { + public int EndAddDomainWithProvisioning(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddDomainWithProvisioningAsync(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains) - { - this.AddDomainWithProvisioningAsync(packageId, domainName, domainType, createWebSite, pointWebSiteId, pointMailDomainId, createDnsZone, createInstantAlias, allowSubDomains, null); + public void AddDomainWithProvisioningAsync(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains, string hostName) { + this.AddDomainWithProvisioningAsync(packageId, domainName, domainType, createWebSite, pointWebSiteId, pointMailDomainId, createDnsZone, createInstantAlias, allowSubDomains, hostName, null); } - + /// - public void AddDomainWithProvisioningAsync(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains, object userState) - { - if ((this.AddDomainWithProvisioningOperationCompleted == null)) - { + public void AddDomainWithProvisioningAsync(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains, string hostName, object userState) { + if ((this.AddDomainWithProvisioningOperationCompleted == null)) { this.AddDomainWithProvisioningOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddDomainWithProvisioningOperationCompleted); } this.InvokeAsync("AddDomainWithProvisioning", new object[] { @@ -4643,466 +4020,392 @@ namespace WebsitePanel.EnterpriseServer pointMailDomainId, createDnsZone, createInstantAlias, - allowSubDomains}, this.AddDomainWithProvisioningOperationCompleted, userState); + allowSubDomains, + hostName}, this.AddDomainWithProvisioningOperationCompleted, userState); } - - private void OnAddDomainWithProvisioningOperationCompleted(object arg) - { - if ((this.AddDomainWithProvisioningCompleted != null)) - { + + private void OnAddDomainWithProvisioningOperationCompleted(object arg) { + if ((this.AddDomainWithProvisioningCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddDomainWithProvisioningCompleted(this, new AddDomainWithProvisioningCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateDomain", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateDomain(DomainInfo domain) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateDomain", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateDomain(DomainInfo domain) { object[] results = this.Invoke("UpdateDomain", new object[] { domain}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateDomain(DomainInfo domain, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateDomain(DomainInfo domain, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateDomain", new object[] { domain}, callback, asyncState); } - + /// - public int EndUpdateDomain(System.IAsyncResult asyncResult) - { + public int EndUpdateDomain(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateDomainAsync(DomainInfo domain) - { + public void UpdateDomainAsync(DomainInfo domain) { this.UpdateDomainAsync(domain, null); } - + /// - public void UpdateDomainAsync(DomainInfo domain, object userState) - { - if ((this.UpdateDomainOperationCompleted == null)) - { + public void UpdateDomainAsync(DomainInfo domain, object userState) { + if ((this.UpdateDomainOperationCompleted == null)) { this.UpdateDomainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateDomainOperationCompleted); } this.InvokeAsync("UpdateDomain", new object[] { domain}, this.UpdateDomainOperationCompleted, userState); } - - private void OnUpdateDomainOperationCompleted(object arg) - { - if ((this.UpdateDomainCompleted != null)) - { + + private void OnUpdateDomainOperationCompleted(object arg) { + if ((this.UpdateDomainCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateDomainCompleted(this, new UpdateDomainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDomain", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteDomain(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDomain", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteDomain(int domainId) { object[] results = this.Invoke("DeleteDomain", new object[] { domainId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteDomain(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteDomain(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteDomain", new object[] { domainId}, callback, asyncState); } - + /// - public int EndDeleteDomain(System.IAsyncResult asyncResult) - { + public int EndDeleteDomain(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteDomainAsync(int domainId) - { + public void DeleteDomainAsync(int domainId) { this.DeleteDomainAsync(domainId, null); } - + /// - public void DeleteDomainAsync(int domainId, object userState) - { - if ((this.DeleteDomainOperationCompleted == null)) - { + public void DeleteDomainAsync(int domainId, object userState) { + if ((this.DeleteDomainOperationCompleted == null)) { this.DeleteDomainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteDomainOperationCompleted); } this.InvokeAsync("DeleteDomain", new object[] { domainId}, this.DeleteDomainOperationCompleted, userState); } - - private void OnDeleteDomainOperationCompleted(object arg) - { - if ((this.DeleteDomainCompleted != null)) - { + + private void OnDeleteDomainOperationCompleted(object arg) { + if ((this.DeleteDomainCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteDomainCompleted(this, new DeleteDomainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DetachDomain", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DetachDomain(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DetachDomain", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DetachDomain(int domainId) { object[] results = this.Invoke("DetachDomain", new object[] { domainId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDetachDomain(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDetachDomain(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DetachDomain", new object[] { domainId}, callback, asyncState); } - + /// - public int EndDetachDomain(System.IAsyncResult asyncResult) - { + public int EndDetachDomain(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DetachDomainAsync(int domainId) - { + public void DetachDomainAsync(int domainId) { this.DetachDomainAsync(domainId, null); } - + /// - public void DetachDomainAsync(int domainId, object userState) - { - if ((this.DetachDomainOperationCompleted == null)) - { + public void DetachDomainAsync(int domainId, object userState) { + if ((this.DetachDomainOperationCompleted == null)) { this.DetachDomainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDetachDomainOperationCompleted); } this.InvokeAsync("DetachDomain", new object[] { domainId}, this.DetachDomainOperationCompleted, userState); } - - private void OnDetachDomainOperationCompleted(object arg) - { - if ((this.DetachDomainCompleted != null)) - { + + private void OnDetachDomainOperationCompleted(object arg) { + if ((this.DetachDomainCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DetachDomainCompleted(this, new DetachDomainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/EnableDomainDns", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int EnableDomainDns(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/EnableDomainDns", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int EnableDomainDns(int domainId) { object[] results = this.Invoke("EnableDomainDns", new object[] { domainId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginEnableDomainDns(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginEnableDomainDns(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("EnableDomainDns", new object[] { domainId}, callback, asyncState); } - + /// - public int EndEnableDomainDns(System.IAsyncResult asyncResult) - { + public int EndEnableDomainDns(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void EnableDomainDnsAsync(int domainId) - { + public void EnableDomainDnsAsync(int domainId) { this.EnableDomainDnsAsync(domainId, null); } - + /// - public void EnableDomainDnsAsync(int domainId, object userState) - { - if ((this.EnableDomainDnsOperationCompleted == null)) - { + public void EnableDomainDnsAsync(int domainId, object userState) { + if ((this.EnableDomainDnsOperationCompleted == null)) { this.EnableDomainDnsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnEnableDomainDnsOperationCompleted); } this.InvokeAsync("EnableDomainDns", new object[] { domainId}, this.EnableDomainDnsOperationCompleted, userState); } - - private void OnEnableDomainDnsOperationCompleted(object arg) - { - if ((this.EnableDomainDnsCompleted != null)) - { + + private void OnEnableDomainDnsOperationCompleted(object arg) { + if ((this.EnableDomainDnsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.EnableDomainDnsCompleted(this, new EnableDomainDnsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DisableDomainDns", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DisableDomainDns(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DisableDomainDns", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DisableDomainDns(int domainId) { object[] results = this.Invoke("DisableDomainDns", new object[] { domainId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDisableDomainDns(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDisableDomainDns(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DisableDomainDns", new object[] { domainId}, callback, asyncState); } - + /// - public int EndDisableDomainDns(System.IAsyncResult asyncResult) - { + public int EndDisableDomainDns(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DisableDomainDnsAsync(int domainId) - { + public void DisableDomainDnsAsync(int domainId) { this.DisableDomainDnsAsync(domainId, null); } - + /// - public void DisableDomainDnsAsync(int domainId, object userState) - { - if ((this.DisableDomainDnsOperationCompleted == null)) - { + public void DisableDomainDnsAsync(int domainId, object userState) { + if ((this.DisableDomainDnsOperationCompleted == null)) { this.DisableDomainDnsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDisableDomainDnsOperationCompleted); } this.InvokeAsync("DisableDomainDns", new object[] { domainId}, this.DisableDomainDnsOperationCompleted, userState); } - - private void OnDisableDomainDnsOperationCompleted(object arg) - { - if ((this.DisableDomainDnsCompleted != null)) - { + + private void OnDisableDomainDnsOperationCompleted(object arg) { + if ((this.DisableDomainDnsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DisableDomainDnsCompleted(this, new DisableDomainDnsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CreateDomainInstantAlias", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int CreateDomainInstantAlias(string hostName, int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CreateDomainInstantAlias", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int CreateDomainInstantAlias(string hostName, int domainId) { object[] results = this.Invoke("CreateDomainInstantAlias", new object[] { hostName, domainId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginCreateDomainInstantAlias(string hostName, int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginCreateDomainInstantAlias(string hostName, int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("CreateDomainInstantAlias", new object[] { hostName, domainId}, callback, asyncState); } - + /// - public int EndCreateDomainInstantAlias(System.IAsyncResult asyncResult) - { + public int EndCreateDomainInstantAlias(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void CreateDomainInstantAliasAsync(string hostName, int domainId) - { + public void CreateDomainInstantAliasAsync(string hostName, int domainId) { this.CreateDomainInstantAliasAsync(hostName, domainId, null); } - + /// - public void CreateDomainInstantAliasAsync(string hostName, int domainId, object userState) - { - if ((this.CreateDomainInstantAliasOperationCompleted == null)) - { + public void CreateDomainInstantAliasAsync(string hostName, int domainId, object userState) { + if ((this.CreateDomainInstantAliasOperationCompleted == null)) { this.CreateDomainInstantAliasOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateDomainInstantAliasOperationCompleted); } this.InvokeAsync("CreateDomainInstantAlias", new object[] { hostName, domainId}, this.CreateDomainInstantAliasOperationCompleted, userState); } - - private void OnCreateDomainInstantAliasOperationCompleted(object arg) - { - if ((this.CreateDomainInstantAliasCompleted != null)) - { + + private void OnCreateDomainInstantAliasOperationCompleted(object arg) { + if ((this.CreateDomainInstantAliasCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.CreateDomainInstantAliasCompleted(this, new CreateDomainInstantAliasCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDomainInstantAlias", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteDomainInstantAlias(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDomainInstantAlias", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteDomainInstantAlias(int domainId) { object[] results = this.Invoke("DeleteDomainInstantAlias", new object[] { domainId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteDomainInstantAlias(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteDomainInstantAlias(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteDomainInstantAlias", new object[] { domainId}, callback, asyncState); } - + /// - public int EndDeleteDomainInstantAlias(System.IAsyncResult asyncResult) - { + public int EndDeleteDomainInstantAlias(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteDomainInstantAliasAsync(int domainId) - { + public void DeleteDomainInstantAliasAsync(int domainId) { this.DeleteDomainInstantAliasAsync(domainId, null); } - + /// - public void DeleteDomainInstantAliasAsync(int domainId, object userState) - { - if ((this.DeleteDomainInstantAliasOperationCompleted == null)) - { + public void DeleteDomainInstantAliasAsync(int domainId, object userState) { + if ((this.DeleteDomainInstantAliasOperationCompleted == null)) { this.DeleteDomainInstantAliasOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteDomainInstantAliasOperationCompleted); } this.InvokeAsync("DeleteDomainInstantAlias", new object[] { domainId}, this.DeleteDomainInstantAliasOperationCompleted, userState); } - - private void OnDeleteDomainInstantAliasOperationCompleted(object arg) - { - if ((this.DeleteDomainInstantAliasCompleted != null)) - { + + private void OnDeleteDomainInstantAliasOperationCompleted(object arg) { + if ((this.DeleteDomainInstantAliasCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteDomainInstantAliasCompleted(this, new DeleteDomainInstantAliasCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsZoneRecords", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public DnsRecord[] GetDnsZoneRecords(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetDnsZoneRecords", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public DnsRecord[] GetDnsZoneRecords(int domainId) { object[] results = this.Invoke("GetDnsZoneRecords", new object[] { domainId}); return ((DnsRecord[])(results[0])); } - + /// - public System.IAsyncResult BeginGetDnsZoneRecords(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetDnsZoneRecords(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetDnsZoneRecords", new object[] { domainId}, callback, asyncState); } - + /// - public DnsRecord[] EndGetDnsZoneRecords(System.IAsyncResult asyncResult) - { + public DnsRecord[] EndGetDnsZoneRecords(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((DnsRecord[])(results[0])); } - + /// - public void GetDnsZoneRecordsAsync(int domainId) - { + public void GetDnsZoneRecordsAsync(int domainId) { this.GetDnsZoneRecordsAsync(domainId, null); } - + /// - public void GetDnsZoneRecordsAsync(int domainId, object userState) - { - if ((this.GetDnsZoneRecordsOperationCompleted == null)) - { + public void GetDnsZoneRecordsAsync(int domainId, object userState) { + if ((this.GetDnsZoneRecordsOperationCompleted == null)) { this.GetDnsZoneRecordsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetDnsZoneRecordsOperationCompleted); } this.InvokeAsync("GetDnsZoneRecords", new object[] { domainId}, this.GetDnsZoneRecordsOperationCompleted, userState); } - - private void OnGetDnsZoneRecordsOperationCompleted(object arg) - { - if ((this.GetDnsZoneRecordsCompleted != null)) - { + + private void OnGetDnsZoneRecordsOperationCompleted(object arg) { + if ((this.GetDnsZoneRecordsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetDnsZoneRecordsCompleted(this, new GetDnsZoneRecordsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsZoneRecords", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawDnsZoneRecords(int domainId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawDnsZoneRecords", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawDnsZoneRecords(int domainId) { object[] results = this.Invoke("GetRawDnsZoneRecords", new object[] { domainId}); return ((System.Data.DataSet)(results[0])); } - + /// - public System.IAsyncResult BeginGetRawDnsZoneRecords(int domainId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetRawDnsZoneRecords(int domainId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetRawDnsZoneRecords", new object[] { domainId}, callback, asyncState); } - + /// - public System.Data.DataSet EndGetRawDnsZoneRecords(System.IAsyncResult asyncResult) - { + public System.Data.DataSet EndGetRawDnsZoneRecords(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((System.Data.DataSet)(results[0])); } - + /// - public void GetRawDnsZoneRecordsAsync(int domainId) - { + public void GetRawDnsZoneRecordsAsync(int domainId) { this.GetRawDnsZoneRecordsAsync(domainId, null); } - + /// - public void GetRawDnsZoneRecordsAsync(int domainId, object userState) - { - if ((this.GetRawDnsZoneRecordsOperationCompleted == null)) - { + public void GetRawDnsZoneRecordsAsync(int domainId, object userState) { + if ((this.GetRawDnsZoneRecordsOperationCompleted == null)) { this.GetRawDnsZoneRecordsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawDnsZoneRecordsOperationCompleted); } this.InvokeAsync("GetRawDnsZoneRecords", new object[] { domainId}, this.GetRawDnsZoneRecordsOperationCompleted, userState); } - - private void OnGetRawDnsZoneRecordsOperationCompleted(object arg) - { - if ((this.GetRawDnsZoneRecordsCompleted != null)) - { + + private void OnGetRawDnsZoneRecordsOperationCompleted(object arg) { + if ((this.GetRawDnsZoneRecordsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetRawDnsZoneRecordsCompleted(this, new GetRawDnsZoneRecordsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDnsZoneRecord", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddDnsZoneRecord", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) { object[] results = this.Invoke("AddDnsZoneRecord", new object[] { domainId, recordName, @@ -5114,10 +4417,9 @@ namespace WebsitePanel.EnterpriseServer srvPortNumber}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginAddDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginAddDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("AddDnsZoneRecord", new object[] { domainId, recordName, @@ -5128,25 +4430,21 @@ namespace WebsitePanel.EnterpriseServer srvWeight, srvPortNumber}, callback, asyncState); } - + /// - public int EndAddDnsZoneRecord(System.IAsyncResult asyncResult) - { + public int EndAddDnsZoneRecord(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void AddDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) - { + public void AddDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) { this.AddDnsZoneRecordAsync(domainId, recordName, recordType, recordData, mxPriority, srvPriority, srvWeight, srvPortNumber, null); } - + /// - public void AddDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, object userState) - { - if ((this.AddDnsZoneRecordOperationCompleted == null)) - { + public void AddDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, object userState) { + if ((this.AddDnsZoneRecordOperationCompleted == null)) { this.AddDnsZoneRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddDnsZoneRecordOperationCompleted); } this.InvokeAsync("AddDnsZoneRecord", new object[] { @@ -5159,20 +4457,17 @@ namespace WebsitePanel.EnterpriseServer srvWeight, srvPortNumber}, this.AddDnsZoneRecordOperationCompleted, userState); } - - private void OnAddDnsZoneRecordOperationCompleted(object arg) - { - if ((this.AddDnsZoneRecordCompleted != null)) - { + + private void OnAddDnsZoneRecordOperationCompleted(object arg) { + if ((this.AddDnsZoneRecordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.AddDnsZoneRecordCompleted(this, new AddDnsZoneRecordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateDnsZoneRecord", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateDnsZoneRecord(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateDnsZoneRecord", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateDnsZoneRecord(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) { object[] results = this.Invoke("UpdateDnsZoneRecord", new object[] { domainId, originalRecordName, @@ -5186,10 +4481,9 @@ namespace WebsitePanel.EnterpriseServer srvPortNumber}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginUpdateDnsZoneRecord(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginUpdateDnsZoneRecord(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("UpdateDnsZoneRecord", new object[] { domainId, originalRecordName, @@ -5202,25 +4496,21 @@ namespace WebsitePanel.EnterpriseServer srvWeight, srvPortNumber}, callback, asyncState); } - + /// - public int EndUpdateDnsZoneRecord(System.IAsyncResult asyncResult) - { + public int EndUpdateDnsZoneRecord(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void UpdateDnsZoneRecordAsync(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) - { + public void UpdateDnsZoneRecordAsync(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber) { this.UpdateDnsZoneRecordAsync(domainId, originalRecordName, originalRecordData, recordName, recordType, recordData, mxPriority, srvPriority, srvWeight, srvPortNumber, null); } - + /// - public void UpdateDnsZoneRecordAsync(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, object userState) - { - if ((this.UpdateDnsZoneRecordOperationCompleted == null)) - { + public void UpdateDnsZoneRecordAsync(int domainId, string originalRecordName, string originalRecordData, string recordName, DnsRecordType recordType, string recordData, int mxPriority, int srvPriority, int srvWeight, int srvPortNumber, object userState) { + if ((this.UpdateDnsZoneRecordOperationCompleted == null)) { this.UpdateDnsZoneRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateDnsZoneRecordOperationCompleted); } this.InvokeAsync("UpdateDnsZoneRecord", new object[] { @@ -5235,20 +4525,17 @@ namespace WebsitePanel.EnterpriseServer srvWeight, srvPortNumber}, this.UpdateDnsZoneRecordOperationCompleted, userState); } - - private void OnUpdateDnsZoneRecordOperationCompleted(object arg) - { - if ((this.UpdateDnsZoneRecordCompleted != null)) - { + + private void OnUpdateDnsZoneRecordOperationCompleted(object arg) { + if ((this.UpdateDnsZoneRecordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.UpdateDnsZoneRecordCompleted(this, new UpdateDnsZoneRecordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDnsZoneRecord", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteDnsZoneRecord", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData) { object[] results = this.Invoke("DeleteDnsZoneRecord", new object[] { domainId, recordName, @@ -5256,35 +4543,30 @@ namespace WebsitePanel.EnterpriseServer recordData}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginDeleteDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginDeleteDnsZoneRecord(int domainId, string recordName, DnsRecordType recordType, string recordData, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("DeleteDnsZoneRecord", new object[] { domainId, recordName, recordType, recordData}, callback, asyncState); } - + /// - public int EndDeleteDnsZoneRecord(System.IAsyncResult asyncResult) - { + public int EndDeleteDnsZoneRecord(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void DeleteDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData) - { + public void DeleteDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData) { this.DeleteDnsZoneRecordAsync(domainId, recordName, recordType, recordData, null); } - + /// - public void DeleteDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData, object userState) - { - if ((this.DeleteDnsZoneRecordOperationCompleted == null)) - { + public void DeleteDnsZoneRecordAsync(int domainId, string recordName, DnsRecordType recordType, string recordData, object userState) { + if ((this.DeleteDnsZoneRecordOperationCompleted == null)) { this.DeleteDnsZoneRecordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteDnsZoneRecordOperationCompleted); } this.InvokeAsync("DeleteDnsZoneRecord", new object[] { @@ -5293,218 +4575,184 @@ namespace WebsitePanel.EnterpriseServer recordType, recordData}, this.DeleteDnsZoneRecordOperationCompleted, userState); } - - private void OnDeleteDnsZoneRecordOperationCompleted(object arg) - { - if ((this.DeleteDnsZoneRecordCompleted != null)) - { + + private void OnDeleteDnsZoneRecordOperationCompleted(object arg) { + if ((this.DeleteDnsZoneRecordCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.DeleteDnsZoneRecordCompleted(this, new DeleteDnsZoneRecordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetTerminalServicesSessions", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public TerminalSession[] GetTerminalServicesSessions(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetTerminalServicesSessions", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public TerminalSession[] GetTerminalServicesSessions(int serverId) { object[] results = this.Invoke("GetTerminalServicesSessions", new object[] { serverId}); return ((TerminalSession[])(results[0])); } - + /// - public System.IAsyncResult BeginGetTerminalServicesSessions(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetTerminalServicesSessions(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetTerminalServicesSessions", new object[] { serverId}, callback, asyncState); } - + /// - public TerminalSession[] EndGetTerminalServicesSessions(System.IAsyncResult asyncResult) - { + public TerminalSession[] EndGetTerminalServicesSessions(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((TerminalSession[])(results[0])); } - + /// - public void GetTerminalServicesSessionsAsync(int serverId) - { + public void GetTerminalServicesSessionsAsync(int serverId) { this.GetTerminalServicesSessionsAsync(serverId, null); } - + /// - public void GetTerminalServicesSessionsAsync(int serverId, object userState) - { - if ((this.GetTerminalServicesSessionsOperationCompleted == null)) - { + public void GetTerminalServicesSessionsAsync(int serverId, object userState) { + if ((this.GetTerminalServicesSessionsOperationCompleted == null)) { this.GetTerminalServicesSessionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetTerminalServicesSessionsOperationCompleted); } this.InvokeAsync("GetTerminalServicesSessions", new object[] { serverId}, this.GetTerminalServicesSessionsOperationCompleted, userState); } - - private void OnGetTerminalServicesSessionsOperationCompleted(object arg) - { - if ((this.GetTerminalServicesSessionsCompleted != null)) - { + + private void OnGetTerminalServicesSessionsOperationCompleted(object arg) { + if ((this.GetTerminalServicesSessionsCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetTerminalServicesSessionsCompleted(this, new GetTerminalServicesSessionsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CloseTerminalServicesSession", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int CloseTerminalServicesSession(int serverId, int sessionId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CloseTerminalServicesSession", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int CloseTerminalServicesSession(int serverId, int sessionId) { object[] results = this.Invoke("CloseTerminalServicesSession", new object[] { serverId, sessionId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginCloseTerminalServicesSession(int serverId, int sessionId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginCloseTerminalServicesSession(int serverId, int sessionId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("CloseTerminalServicesSession", new object[] { serverId, sessionId}, callback, asyncState); } - + /// - public int EndCloseTerminalServicesSession(System.IAsyncResult asyncResult) - { + public int EndCloseTerminalServicesSession(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void CloseTerminalServicesSessionAsync(int serverId, int sessionId) - { + public void CloseTerminalServicesSessionAsync(int serverId, int sessionId) { this.CloseTerminalServicesSessionAsync(serverId, sessionId, null); } - + /// - public void CloseTerminalServicesSessionAsync(int serverId, int sessionId, object userState) - { - if ((this.CloseTerminalServicesSessionOperationCompleted == null)) - { + public void CloseTerminalServicesSessionAsync(int serverId, int sessionId, object userState) { + if ((this.CloseTerminalServicesSessionOperationCompleted == null)) { this.CloseTerminalServicesSessionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCloseTerminalServicesSessionOperationCompleted); } this.InvokeAsync("CloseTerminalServicesSession", new object[] { serverId, sessionId}, this.CloseTerminalServicesSessionOperationCompleted, userState); } - - private void OnCloseTerminalServicesSessionOperationCompleted(object arg) - { - if ((this.CloseTerminalServicesSessionCompleted != null)) - { + + private void OnCloseTerminalServicesSessionOperationCompleted(object arg) { + if ((this.CloseTerminalServicesSessionCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.CloseTerminalServicesSessionCompleted(this, new CloseTerminalServicesSessionCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWindowsProcesses", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WindowsProcess[] GetWindowsProcesses(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWindowsProcesses", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WindowsProcess[] GetWindowsProcesses(int serverId) { object[] results = this.Invoke("GetWindowsProcesses", new object[] { serverId}); return ((WindowsProcess[])(results[0])); } - + /// - public System.IAsyncResult BeginGetWindowsProcesses(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetWindowsProcesses(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetWindowsProcesses", new object[] { serverId}, callback, asyncState); } - + /// - public WindowsProcess[] EndGetWindowsProcesses(System.IAsyncResult asyncResult) - { + public WindowsProcess[] EndGetWindowsProcesses(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((WindowsProcess[])(results[0])); } - + /// - public void GetWindowsProcessesAsync(int serverId) - { + public void GetWindowsProcessesAsync(int serverId) { this.GetWindowsProcessesAsync(serverId, null); } - + /// - public void GetWindowsProcessesAsync(int serverId, object userState) - { - if ((this.GetWindowsProcessesOperationCompleted == null)) - { + public void GetWindowsProcessesAsync(int serverId, object userState) { + if ((this.GetWindowsProcessesOperationCompleted == null)) { this.GetWindowsProcessesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWindowsProcessesOperationCompleted); } this.InvokeAsync("GetWindowsProcesses", new object[] { serverId}, this.GetWindowsProcessesOperationCompleted, userState); } - - private void OnGetWindowsProcessesOperationCompleted(object arg) - { - if ((this.GetWindowsProcessesCompleted != null)) - { + + private void OnGetWindowsProcessesOperationCompleted(object arg) { + if ((this.GetWindowsProcessesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetWindowsProcessesCompleted(this, new GetWindowsProcessesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/TerminateWindowsProcess", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int TerminateWindowsProcess(int serverId, int pid) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/TerminateWindowsProcess", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int TerminateWindowsProcess(int serverId, int pid) { object[] results = this.Invoke("TerminateWindowsProcess", new object[] { serverId, pid}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginTerminateWindowsProcess(int serverId, int pid, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginTerminateWindowsProcess(int serverId, int pid, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("TerminateWindowsProcess", new object[] { serverId, pid}, callback, asyncState); } - + /// - public int EndTerminateWindowsProcess(System.IAsyncResult asyncResult) - { + public int EndTerminateWindowsProcess(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void TerminateWindowsProcessAsync(int serverId, int pid) - { + public void TerminateWindowsProcessAsync(int serverId, int pid) { this.TerminateWindowsProcessAsync(serverId, pid, null); } - + /// - public void TerminateWindowsProcessAsync(int serverId, int pid, object userState) - { - if ((this.TerminateWindowsProcessOperationCompleted == null)) - { + public void TerminateWindowsProcessAsync(int serverId, int pid, object userState) { + if ((this.TerminateWindowsProcessOperationCompleted == null)) { this.TerminateWindowsProcessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnTerminateWindowsProcessOperationCompleted); } this.InvokeAsync("TerminateWindowsProcess", new object[] { serverId, pid}, this.TerminateWindowsProcessOperationCompleted, userState); } - - private void OnTerminateWindowsProcessOperationCompleted(object arg) - { - if ((this.TerminateWindowsProcessCompleted != null)) - { + + private void OnTerminateWindowsProcessOperationCompleted(object arg) { + if ((this.TerminateWindowsProcessCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.TerminateWindowsProcessCompleted(this, new TerminateWindowsProcessCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InitWPIFeeds", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public void InitWPIFeeds(int serverId) { @@ -5975,85 +5223,72 @@ namespace WebsitePanel.EnterpriseServer serverId}); return ((WindowsService[])(results[0])); } - + /// - public System.IAsyncResult BeginGetWindowsServices(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetWindowsServices(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetWindowsServices", new object[] { serverId}, callback, asyncState); } - + /// - public WindowsService[] EndGetWindowsServices(System.IAsyncResult asyncResult) - { + public WindowsService[] EndGetWindowsServices(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((WindowsService[])(results[0])); } - + /// - public void GetWindowsServicesAsync(int serverId) - { + public void GetWindowsServicesAsync(int serverId) { this.GetWindowsServicesAsync(serverId, null); } - + /// - public void GetWindowsServicesAsync(int serverId, object userState) - { - if ((this.GetWindowsServicesOperationCompleted == null)) - { + public void GetWindowsServicesAsync(int serverId, object userState) { + if ((this.GetWindowsServicesOperationCompleted == null)) { this.GetWindowsServicesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWindowsServicesOperationCompleted); } this.InvokeAsync("GetWindowsServices", new object[] { serverId}, this.GetWindowsServicesOperationCompleted, userState); } - - private void OnGetWindowsServicesOperationCompleted(object arg) - { - if ((this.GetWindowsServicesCompleted != null)) - { + + private void OnGetWindowsServicesOperationCompleted(object arg) { + if ((this.GetWindowsServicesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetWindowsServicesCompleted(this, new GetWindowsServicesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeWindowsServiceStatus", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int ChangeWindowsServiceStatus(int serverId, string id, WindowsServiceStatus status) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeWindowsServiceStatus", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int ChangeWindowsServiceStatus(int serverId, string id, WindowsServiceStatus status) { object[] results = this.Invoke("ChangeWindowsServiceStatus", new object[] { serverId, id, status}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginChangeWindowsServiceStatus(int serverId, string id, WindowsServiceStatus status, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginChangeWindowsServiceStatus(int serverId, string id, WindowsServiceStatus status, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("ChangeWindowsServiceStatus", new object[] { serverId, id, status}, callback, asyncState); } - + /// - public int EndChangeWindowsServiceStatus(System.IAsyncResult asyncResult) - { + public int EndChangeWindowsServiceStatus(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void ChangeWindowsServiceStatusAsync(int serverId, string id, WindowsServiceStatus status) - { + public void ChangeWindowsServiceStatusAsync(int serverId, string id, WindowsServiceStatus status) { this.ChangeWindowsServiceStatusAsync(serverId, id, status, null); } - + /// - public void ChangeWindowsServiceStatusAsync(int serverId, string id, WindowsServiceStatus status, object userState) - { - if ((this.ChangeWindowsServiceStatusOperationCompleted == null)) - { + public void ChangeWindowsServiceStatusAsync(int serverId, string id, WindowsServiceStatus status, object userState) { + if ((this.ChangeWindowsServiceStatusOperationCompleted == null)) { this.ChangeWindowsServiceStatusOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeWindowsServiceStatusOperationCompleted); } this.InvokeAsync("ChangeWindowsServiceStatus", new object[] { @@ -6061,121 +5296,102 @@ namespace WebsitePanel.EnterpriseServer id, status}, this.ChangeWindowsServiceStatusOperationCompleted, userState); } - - private void OnChangeWindowsServiceStatusOperationCompleted(object arg) - { - if ((this.ChangeWindowsServiceStatusCompleted != null)) - { + + private void OnChangeWindowsServiceStatusOperationCompleted(object arg) { + if ((this.ChangeWindowsServiceStatusCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.ChangeWindowsServiceStatusCompleted(this, new ChangeWindowsServiceStatusCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetLogNames", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public string[] GetLogNames(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetLogNames", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public string[] GetLogNames(int serverId) { object[] results = this.Invoke("GetLogNames", new object[] { serverId}); return ((string[])(results[0])); } - + /// - public System.IAsyncResult BeginGetLogNames(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetLogNames(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetLogNames", new object[] { serverId}, callback, asyncState); } - + /// - public string[] EndGetLogNames(System.IAsyncResult asyncResult) - { + public string[] EndGetLogNames(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((string[])(results[0])); } - + /// - public void GetLogNamesAsync(int serverId) - { + public void GetLogNamesAsync(int serverId) { this.GetLogNamesAsync(serverId, null); } - + /// - public void GetLogNamesAsync(int serverId, object userState) - { - if ((this.GetLogNamesOperationCompleted == null)) - { + public void GetLogNamesAsync(int serverId, object userState) { + if ((this.GetLogNamesOperationCompleted == null)) { this.GetLogNamesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetLogNamesOperationCompleted); } this.InvokeAsync("GetLogNames", new object[] { serverId}, this.GetLogNamesOperationCompleted, userState); } - - private void OnGetLogNamesOperationCompleted(object arg) - { - if ((this.GetLogNamesCompleted != null)) - { + + private void OnGetLogNamesOperationCompleted(object arg) { + if ((this.GetLogNamesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetLogNamesCompleted(this, new GetLogNamesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetLogEntries", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SystemLogEntry[] GetLogEntries(int serverId, string logName) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetLogEntries", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SystemLogEntry[] GetLogEntries(int serverId, string logName) { object[] results = this.Invoke("GetLogEntries", new object[] { serverId, logName}); return ((SystemLogEntry[])(results[0])); } - + /// - public System.IAsyncResult BeginGetLogEntries(int serverId, string logName, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetLogEntries(int serverId, string logName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetLogEntries", new object[] { serverId, logName}, callback, asyncState); } - + /// - public SystemLogEntry[] EndGetLogEntries(System.IAsyncResult asyncResult) - { + public SystemLogEntry[] EndGetLogEntries(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((SystemLogEntry[])(results[0])); } - + /// - public void GetLogEntriesAsync(int serverId, string logName) - { + public void GetLogEntriesAsync(int serverId, string logName) { this.GetLogEntriesAsync(serverId, logName, null); } - + /// - public void GetLogEntriesAsync(int serverId, string logName, object userState) - { - if ((this.GetLogEntriesOperationCompleted == null)) - { + public void GetLogEntriesAsync(int serverId, string logName, object userState) { + if ((this.GetLogEntriesOperationCompleted == null)) { this.GetLogEntriesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetLogEntriesOperationCompleted); } this.InvokeAsync("GetLogEntries", new object[] { serverId, logName}, this.GetLogEntriesOperationCompleted, userState); } - - private void OnGetLogEntriesOperationCompleted(object arg) - { - if ((this.GetLogEntriesCompleted != null)) - { + + private void OnGetLogEntriesOperationCompleted(object arg) { + if ((this.GetLogEntriesCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetLogEntriesCompleted(this, new GetLogEntriesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetLogEntriesPaged", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SystemLogEntriesPaged GetLogEntriesPaged(int serverId, string logName, int startRow, int maximumRows) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetLogEntriesPaged", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SystemLogEntriesPaged GetLogEntriesPaged(int serverId, string logName, int startRow, int maximumRows) { object[] results = this.Invoke("GetLogEntriesPaged", new object[] { serverId, logName, @@ -6183,35 +5399,30 @@ namespace WebsitePanel.EnterpriseServer maximumRows}); return ((SystemLogEntriesPaged)(results[0])); } - + /// - public System.IAsyncResult BeginGetLogEntriesPaged(int serverId, string logName, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginGetLogEntriesPaged(int serverId, string logName, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("GetLogEntriesPaged", new object[] { serverId, logName, startRow, maximumRows}, callback, asyncState); } - + /// - public SystemLogEntriesPaged EndGetLogEntriesPaged(System.IAsyncResult asyncResult) - { + public SystemLogEntriesPaged EndGetLogEntriesPaged(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((SystemLogEntriesPaged)(results[0])); } - + /// - public void GetLogEntriesPagedAsync(int serverId, string logName, int startRow, int maximumRows) - { + public void GetLogEntriesPagedAsync(int serverId, string logName, int startRow, int maximumRows) { this.GetLogEntriesPagedAsync(serverId, logName, startRow, maximumRows, null); } - + /// - public void GetLogEntriesPagedAsync(int serverId, string logName, int startRow, int maximumRows, object userState) - { - if ((this.GetLogEntriesPagedOperationCompleted == null)) - { + public void GetLogEntriesPagedAsync(int serverId, string logName, int startRow, int maximumRows, object userState) { + if ((this.GetLogEntriesPagedOperationCompleted == null)) { this.GetLogEntriesPagedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetLogEntriesPagedOperationCompleted); } this.InvokeAsync("GetLogEntriesPaged", new object[] { @@ -6220,2954 +5431,2559 @@ namespace WebsitePanel.EnterpriseServer startRow, maximumRows}, this.GetLogEntriesPagedOperationCompleted, userState); } - - private void OnGetLogEntriesPagedOperationCompleted(object arg) - { - if ((this.GetLogEntriesPagedCompleted != null)) - { + + private void OnGetLogEntriesPagedOperationCompleted(object arg) { + if ((this.GetLogEntriesPagedCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.GetLogEntriesPagedCompleted(this, new GetLogEntriesPagedCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ClearLog", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int ClearLog(int serverId, string logName) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ClearLog", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int ClearLog(int serverId, string logName) { object[] results = this.Invoke("ClearLog", new object[] { serverId, logName}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginClearLog(int serverId, string logName, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginClearLog(int serverId, string logName, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("ClearLog", new object[] { serverId, logName}, callback, asyncState); } - + /// - public int EndClearLog(System.IAsyncResult asyncResult) - { + public int EndClearLog(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void ClearLogAsync(int serverId, string logName) - { + public void ClearLogAsync(int serverId, string logName) { this.ClearLogAsync(serverId, logName, null); } - + /// - public void ClearLogAsync(int serverId, string logName, object userState) - { - if ((this.ClearLogOperationCompleted == null)) - { + public void ClearLogAsync(int serverId, string logName, object userState) { + if ((this.ClearLogOperationCompleted == null)) { this.ClearLogOperationCompleted = new System.Threading.SendOrPostCallback(this.OnClearLogOperationCompleted); } this.InvokeAsync("ClearLog", new object[] { serverId, logName}, this.ClearLogOperationCompleted, userState); } - - private void OnClearLogOperationCompleted(object arg) - { - if ((this.ClearLogCompleted != null)) - { + + private void OnClearLogOperationCompleted(object arg) { + if ((this.ClearLogCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.ClearLogCompleted(this, new ClearLogCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RebootSystem", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int RebootSystem(int serverId) - { + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RebootSystem", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int RebootSystem(int serverId) { object[] results = this.Invoke("RebootSystem", new object[] { serverId}); return ((int)(results[0])); } - + /// - public System.IAsyncResult BeginRebootSystem(int serverId, System.AsyncCallback callback, object asyncState) - { + public System.IAsyncResult BeginRebootSystem(int serverId, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("RebootSystem", new object[] { serverId}, callback, asyncState); } - + /// - public int EndRebootSystem(System.IAsyncResult asyncResult) - { + public int EndRebootSystem(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((int)(results[0])); } - + /// - public void RebootSystemAsync(int serverId) - { + public void RebootSystemAsync(int serverId) { this.RebootSystemAsync(serverId, null); } - + /// - public void RebootSystemAsync(int serverId, object userState) - { - if ((this.RebootSystemOperationCompleted == null)) - { + public void RebootSystemAsync(int serverId, object userState) { + if ((this.RebootSystemOperationCompleted == null)) { this.RebootSystemOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRebootSystemOperationCompleted); } this.InvokeAsync("RebootSystem", new object[] { serverId}, this.RebootSystemOperationCompleted, userState); } - - private void OnRebootSystemOperationCompleted(object arg) - { - if ((this.RebootSystemCompleted != null)) - { + + private void OnRebootSystemOperationCompleted(object arg) { + if ((this.RebootSystemCompleted != null)) { System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); this.RebootSystemCompleted(this, new RebootSystemCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); } } - + /// - public new void CancelAsync(object userState) - { + public new void CancelAsync(object userState) { base.CancelAsync(userState); } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetAllServersCompletedEventHandler(object sender, GetAllServersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetAllServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetAllServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetAllServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetAllServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServerInfo[] Result - { - get - { + public ServerInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ServerInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawAllServersCompletedEventHandler(object sender, GetRawAllServersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawAllServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawAllServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawAllServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawAllServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServersCompletedEventHandler(object sender, GetServersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServerInfo[] Result - { - get - { + public ServerInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ServerInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawServersCompletedEventHandler(object sender, GetRawServersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServerShortDetailsCompletedEventHandler(object sender, GetServerShortDetailsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServerShortDetailsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServerShortDetailsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServerShortDetailsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServerShortDetailsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServerInfo Result - { - get - { + public ServerInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((ServerInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServerByIdCompletedEventHandler(object sender, GetServerByIdCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServerByIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServerByIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServerByIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServerByIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServerInfo Result - { - get - { + public ServerInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((ServerInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServerByNameCompletedEventHandler(object sender, GetServerByNameCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServerByNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServerByNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServerByNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServerByNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServerInfo Result - { - get - { + public ServerInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((ServerInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void CheckServerAvailableCompletedEventHandler(object sender, CheckServerAvailableCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class CheckServerAvailableCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class CheckServerAvailableCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal CheckServerAvailableCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal CheckServerAvailableCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddServerCompletedEventHandler(object sender, AddServerCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateServerCompletedEventHandler(object sender, UpdateServerCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateServerConnectionPasswordCompletedEventHandler(object sender, UpdateServerConnectionPasswordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateServerConnectionPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateServerConnectionPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateServerConnectionPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateServerConnectionPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateServerADPasswordCompletedEventHandler(object sender, UpdateServerADPasswordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateServerADPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateServerADPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateServerADPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateServerADPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteServerCompletedEventHandler(object sender, DeleteServerCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetVirtualServersCompletedEventHandler(object sender, GetVirtualServersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetVirtualServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetVirtualServersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetVirtualServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetVirtualServersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetAvailableVirtualServicesCompletedEventHandler(object sender, GetAvailableVirtualServicesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetAvailableVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetAvailableVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetAvailableVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetAvailableVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetVirtualServicesCompletedEventHandler(object sender, GetVirtualServicesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddVirtualServicesCompletedEventHandler(object sender, AddVirtualServicesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteVirtualServicesCompletedEventHandler(object sender, DeleteVirtualServicesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteVirtualServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteVirtualServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateVirtualGroupsCompletedEventHandler(object sender, UpdateVirtualGroupsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateVirtualGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateVirtualGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateVirtualGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateVirtualGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawServicesByServerIdCompletedEventHandler(object sender, GetRawServicesByServerIdCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawServicesByServerIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawServicesByServerIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawServicesByServerIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawServicesByServerIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServicesByServerIdCompletedEventHandler(object sender, GetServicesByServerIdCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServicesByServerIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServicesByServerIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServicesByServerIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServicesByServerIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServiceInfo[] Result - { - get - { + public ServiceInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ServiceInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServicesByServerIdGroupNameCompletedEventHandler(object sender, GetServicesByServerIdGroupNameCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServicesByServerIdGroupNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServicesByServerIdGroupNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServicesByServerIdGroupNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServicesByServerIdGroupNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServiceInfo[] Result - { - get - { + public ServiceInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ServiceInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawServicesByGroupIdCompletedEventHandler(object sender, GetRawServicesByGroupIdCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawServicesByGroupIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawServicesByGroupIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawServicesByGroupIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawServicesByGroupIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawServicesByGroupNameCompletedEventHandler(object sender, GetRawServicesByGroupNameCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawServicesByGroupNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawServicesByGroupNameCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawServicesByGroupNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawServicesByGroupNameCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServiceInfoCompletedEventHandler(object sender, GetServiceInfoCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServiceInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServiceInfoCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServiceInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServiceInfoCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ServiceInfo Result - { - get - { + public ServiceInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((ServiceInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddServiceCompletedEventHandler(object sender, AddServiceCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateServiceCompletedEventHandler(object sender, UpdateServiceCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteServiceCompletedEventHandler(object sender, DeleteServiceCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServiceSettingsCompletedEventHandler(object sender, GetServiceSettingsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServiceSettingsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServiceSettingsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServiceSettingsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServiceSettingsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public string[] Result - { - get - { + public string[] Result { + get { this.RaiseExceptionIfNecessary(); return ((string[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateServiceSettingsCompletedEventHandler(object sender, UpdateServiceSettingsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateServiceSettingsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateServiceSettingsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateServiceSettingsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateServiceSettingsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void InstallServiceCompletedEventHandler(object sender, InstallServiceCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class InstallServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class InstallServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal InstallServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal InstallServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public string[] Result - { - get - { + public string[] Result { + get { this.RaiseExceptionIfNecessary(); return ((string[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetProviderServiceQuotaCompletedEventHandler(object sender, GetProviderServiceQuotaCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetProviderServiceQuotaCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetProviderServiceQuotaCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetProviderServiceQuotaCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetProviderServiceQuotaCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public QuotaInfo Result - { - get - { + public QuotaInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((QuotaInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetInstalledProvidersCompletedEventHandler(object sender, GetInstalledProvidersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetInstalledProvidersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetInstalledProvidersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetInstalledProvidersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetInstalledProvidersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ProviderInfo[] Result - { - get - { + public ProviderInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ProviderInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetResourceGroupsCompletedEventHandler(object sender, GetResourceGroupsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetResourceGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetResourceGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetResourceGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetResourceGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResourceGroupInfo[] Result - { - get - { + public ResourceGroupInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ResourceGroupInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetResourceGroupCompletedEventHandler(object sender, GetResourceGroupCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetResourceGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetResourceGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetResourceGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetResourceGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResourceGroupInfo Result - { - get - { + public ResourceGroupInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((ResourceGroupInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetProviderCompletedEventHandler(object sender, GetProviderCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetProviderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetProviderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetProviderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetProviderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ProviderInfo Result - { - get - { + public ProviderInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((ProviderInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetProvidersCompletedEventHandler(object sender, GetProvidersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetProvidersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetProvidersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetProvidersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetProvidersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ProviderInfo[] Result - { - get - { + public ProviderInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ProviderInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetProvidersByGroupIdCompletedEventHandler(object sender, GetProvidersByGroupIdCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetProvidersByGroupIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetProvidersByGroupIdCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetProvidersByGroupIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetProvidersByGroupIdCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ProviderInfo[] Result - { - get - { + public ProviderInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ProviderInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageServiceProviderCompletedEventHandler(object sender, GetPackageServiceProviderCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetPackageServiceProviderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetPackageServiceProviderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetPackageServiceProviderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetPackageServiceProviderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ProviderInfo Result - { - get - { + public ProviderInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((ProviderInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void IsInstalledCompletedEventHandler(object sender, IsInstalledCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class IsInstalledCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class IsInstalledCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal IsInstalledCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal IsInstalledCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public BoolResult Result - { - get - { + public BoolResult Result { + get { this.RaiseExceptionIfNecessary(); return ((BoolResult)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetServerVersionCompletedEventHandler(object sender, GetServerVersionCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetServerVersionCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetServerVersionCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetServerVersionCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetServerVersionCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public string Result - { - get - { + public string Result { + get { this.RaiseExceptionIfNecessary(); return ((string)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetIPAddressesCompletedEventHandler(object sender, GetIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public IPAddressInfo[] Result - { - get - { + public IPAddressInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((IPAddressInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetIPAddressesPagedCompletedEventHandler(object sender, GetIPAddressesPagedCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetIPAddressesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetIPAddressesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetIPAddressesPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetIPAddressesPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public IPAddressesPaged Result - { - get - { + public IPAddressesPaged Result { + get { this.RaiseExceptionIfNecessary(); return ((IPAddressesPaged)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetIPAddressCompletedEventHandler(object sender, GetIPAddressCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public IPAddressInfo Result - { - get - { + public IPAddressInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((IPAddressInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddIPAddressCompletedEventHandler(object sender, AddIPAddressCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public IntResult Result - { - get - { + public IntResult Result { + get { this.RaiseExceptionIfNecessary(); return ((IntResult)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddIPAddressesRangeCompletedEventHandler(object sender, AddIPAddressesRangeCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddIPAddressesRangeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddIPAddressesRangeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddIPAddressesRangeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddIPAddressesRangeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateIPAddressCompletedEventHandler(object sender, UpdateIPAddressCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateIPAddressesCompletedEventHandler(object sender, UpdateIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteIPAddressCompletedEventHandler(object sender, DeleteIPAddressCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteIPAddressCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteIPAddressCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteIPAddressesCompletedEventHandler(object sender, DeleteIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetUnallottedIPAddressesCompletedEventHandler(object sender, GetUnallottedIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetUnallottedIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetUnallottedIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetUnallottedIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetUnallottedIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public IPAddressInfo[] Result - { - get - { + public IPAddressInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((IPAddressInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageIPAddressesCompletedEventHandler(object sender, GetPackageIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetPackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetPackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetPackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetPackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public PackageIPAddressesPaged Result - { - get - { + public PackageIPAddressesPaged Result { + get { this.RaiseExceptionIfNecessary(); return ((PackageIPAddressesPaged)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetPackageUnassignedIPAddressesCompletedEventHandler(object sender, GetPackageUnassignedIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetPackageUnassignedIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetPackageUnassignedIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetPackageUnassignedIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetPackageUnassignedIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public PackageIPAddress[] Result - { - get - { + public PackageIPAddress[] Result { + get { this.RaiseExceptionIfNecessary(); return ((PackageIPAddress[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AllocatePackageIPAddressesCompletedEventHandler(object sender, AllocatePackageIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AllocatePackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AllocatePackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AllocatePackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AllocatePackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AllocateMaximumPackageIPAddressesCompletedEventHandler(object sender, AllocateMaximumPackageIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AllocateMaximumPackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AllocateMaximumPackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AllocateMaximumPackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AllocateMaximumPackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeallocatePackageIPAddressesCompletedEventHandler(object sender, DeallocatePackageIPAddressesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeallocatePackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeallocatePackageIPAddressesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeallocatePackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeallocatePackageIPAddressesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ResultObject Result - { - get - { + public ResultObject Result { + get { this.RaiseExceptionIfNecessary(); return ((ResultObject)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetClustersCompletedEventHandler(object sender, GetClustersCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetClustersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetClustersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetClustersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetClustersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public ClusterInfo[] Result - { - get - { + public ClusterInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((ClusterInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddClusterCompletedEventHandler(object sender, AddClusterCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddClusterCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddClusterCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddClusterCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddClusterCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteClusterCompletedEventHandler(object sender, DeleteClusterCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteClusterCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteClusterCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteClusterCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteClusterCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawDnsRecordsByServiceCompletedEventHandler(object sender, GetRawDnsRecordsByServiceCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawDnsRecordsByServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawDnsRecordsByServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawDnsRecordsByServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawDnsRecordsByServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawDnsRecordsByServerCompletedEventHandler(object sender, GetRawDnsRecordsByServerCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawDnsRecordsByServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawDnsRecordsByServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawDnsRecordsByServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawDnsRecordsByServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawDnsRecordsByPackageCompletedEventHandler(object sender, GetRawDnsRecordsByPackageCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawDnsRecordsByPackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawDnsRecordsByPackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawDnsRecordsByPackageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawDnsRecordsByPackageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawDnsRecordsByGroupCompletedEventHandler(object sender, GetRawDnsRecordsByGroupCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawDnsRecordsByGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawDnsRecordsByGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawDnsRecordsByGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawDnsRecordsByGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDnsRecordsByServiceCompletedEventHandler(object sender, GetDnsRecordsByServiceCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDnsRecordsByServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDnsRecordsByServiceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDnsRecordsByServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDnsRecordsByServiceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public GlobalDnsRecord[] Result - { - get - { + public GlobalDnsRecord[] Result { + get { this.RaiseExceptionIfNecessary(); return ((GlobalDnsRecord[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDnsRecordsByServerCompletedEventHandler(object sender, GetDnsRecordsByServerCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDnsRecordsByServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDnsRecordsByServerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDnsRecordsByServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDnsRecordsByServerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public GlobalDnsRecord[] Result - { - get - { + public GlobalDnsRecord[] Result { + get { this.RaiseExceptionIfNecessary(); return ((GlobalDnsRecord[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDnsRecordsByPackageCompletedEventHandler(object sender, GetDnsRecordsByPackageCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDnsRecordsByPackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDnsRecordsByPackageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDnsRecordsByPackageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDnsRecordsByPackageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public GlobalDnsRecord[] Result - { - get - { + public GlobalDnsRecord[] Result { + get { this.RaiseExceptionIfNecessary(); return ((GlobalDnsRecord[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDnsRecordsByGroupCompletedEventHandler(object sender, GetDnsRecordsByGroupCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDnsRecordsByGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDnsRecordsByGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDnsRecordsByGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDnsRecordsByGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public GlobalDnsRecord[] Result - { - get - { + public GlobalDnsRecord[] Result { + get { this.RaiseExceptionIfNecessary(); return ((GlobalDnsRecord[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDnsRecordCompletedEventHandler(object sender, GetDnsRecordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public GlobalDnsRecord Result - { - get - { + public GlobalDnsRecord Result { + get { this.RaiseExceptionIfNecessary(); return ((GlobalDnsRecord)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddDnsRecordCompletedEventHandler(object sender, AddDnsRecordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateDnsRecordCompletedEventHandler(object sender, UpdateDnsRecordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteDnsRecordCompletedEventHandler(object sender, DeleteDnsRecordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteDnsRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteDnsRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDomainsCompletedEventHandler(object sender, GetDomainsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public DomainInfo[] Result - { - get - { + public DomainInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((DomainInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetMyDomainsCompletedEventHandler(object sender, GetMyDomainsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetMyDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetMyDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetMyDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetMyDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public DomainInfo[] Result - { - get - { + public DomainInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((DomainInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetResellerDomainsCompletedEventHandler(object sender, GetResellerDomainsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetResellerDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetResellerDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetResellerDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetResellerDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public DomainInfo[] Result - { - get - { + public DomainInfo[] Result { + get { this.RaiseExceptionIfNecessary(); return ((DomainInfo[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDomainsPagedCompletedEventHandler(object sender, GetDomainsPagedCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDomainsPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDomainsPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDomainsPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDomainsPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDomainCompletedEventHandler(object sender, GetDomainCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public DomainInfo Result - { - get - { + public DomainInfo Result { + get { this.RaiseExceptionIfNecessary(); return ((DomainInfo)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddDomainCompletedEventHandler(object sender, AddDomainCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddDomainWithProvisioningCompletedEventHandler(object sender, AddDomainWithProvisioningCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddDomainWithProvisioningCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddDomainWithProvisioningCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddDomainWithProvisioningCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddDomainWithProvisioningCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateDomainCompletedEventHandler(object sender, UpdateDomainCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteDomainCompletedEventHandler(object sender, DeleteDomainCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DetachDomainCompletedEventHandler(object sender, DetachDomainCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DetachDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DetachDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DetachDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DetachDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void EnableDomainDnsCompletedEventHandler(object sender, EnableDomainDnsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class EnableDomainDnsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class EnableDomainDnsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal EnableDomainDnsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal EnableDomainDnsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DisableDomainDnsCompletedEventHandler(object sender, DisableDomainDnsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DisableDomainDnsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DisableDomainDnsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DisableDomainDnsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DisableDomainDnsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void CreateDomainInstantAliasCompletedEventHandler(object sender, CreateDomainInstantAliasCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class CreateDomainInstantAliasCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class CreateDomainInstantAliasCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal CreateDomainInstantAliasCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal CreateDomainInstantAliasCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteDomainInstantAliasCompletedEventHandler(object sender, DeleteDomainInstantAliasCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteDomainInstantAliasCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteDomainInstantAliasCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteDomainInstantAliasCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteDomainInstantAliasCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetDnsZoneRecordsCompletedEventHandler(object sender, GetDnsZoneRecordsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetDnsZoneRecordsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetDnsZoneRecordsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetDnsZoneRecordsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetDnsZoneRecordsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public DnsRecord[] Result - { - get - { + public DnsRecord[] Result { + get { this.RaiseExceptionIfNecessary(); return ((DnsRecord[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetRawDnsZoneRecordsCompletedEventHandler(object sender, GetRawDnsZoneRecordsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawDnsZoneRecordsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetRawDnsZoneRecordsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetRawDnsZoneRecordsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetRawDnsZoneRecordsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public System.Data.DataSet Result - { - get - { + public System.Data.DataSet Result { + get { this.RaiseExceptionIfNecessary(); return ((System.Data.DataSet)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void AddDnsZoneRecordCompletedEventHandler(object sender, AddDnsZoneRecordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddDnsZoneRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class AddDnsZoneRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal AddDnsZoneRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal AddDnsZoneRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void UpdateDnsZoneRecordCompletedEventHandler(object sender, UpdateDnsZoneRecordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateDnsZoneRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class UpdateDnsZoneRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal UpdateDnsZoneRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal UpdateDnsZoneRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void DeleteDnsZoneRecordCompletedEventHandler(object sender, DeleteDnsZoneRecordCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteDnsZoneRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class DeleteDnsZoneRecordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal DeleteDnsZoneRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal DeleteDnsZoneRecordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetTerminalServicesSessionsCompletedEventHandler(object sender, GetTerminalServicesSessionsCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetTerminalServicesSessionsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetTerminalServicesSessionsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetTerminalServicesSessionsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetTerminalServicesSessionsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public TerminalSession[] Result - { - get - { + public TerminalSession[] Result { + get { this.RaiseExceptionIfNecessary(); return ((TerminalSession[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void CloseTerminalServicesSessionCompletedEventHandler(object sender, CloseTerminalServicesSessionCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class CloseTerminalServicesSessionCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class CloseTerminalServicesSessionCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal CloseTerminalServicesSessionCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal CloseTerminalServicesSessionCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWindowsProcessesCompletedEventHandler(object sender, GetWindowsProcessesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetWindowsProcessesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetWindowsProcessesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetWindowsProcessesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetWindowsProcessesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public WindowsProcess[] Result - { - get - { + public WindowsProcess[] Result { + get { this.RaiseExceptionIfNecessary(); return ((WindowsProcess[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void TerminateWindowsProcessCompletedEventHandler(object sender, TerminateWindowsProcessCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class TerminateWindowsProcessCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class TerminateWindowsProcessCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal TerminateWindowsProcessCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal TerminateWindowsProcessCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void InitWPIFeedsCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWPITabsCompletedEventHandler(object sender, GetWPITabsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetWPITabsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9189,11 +8005,11 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWPIKeywordsCompletedEventHandler(object sender, GetWPIKeywordsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetWPIKeywordsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9215,11 +8031,11 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWPIProductsCompletedEventHandler(object sender, GetWPIProductsCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetWPIProductsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9241,11 +8057,11 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWPIProductsFilteredCompletedEventHandler(object sender, GetWPIProductsFilteredCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetWPIProductsFilteredCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9267,11 +8083,11 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWPIProductsWithDependenciesCompletedEventHandler(object sender, GetWPIProductsWithDependenciesCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetWPIProductsWithDependenciesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9293,19 +8109,19 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void InstallWPIProductsCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void CancelInstallWPIProductsCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWPIStatusCompletedEventHandler(object sender, GetWPIStatusCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class GetWPIStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9327,11 +8143,11 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void WpiGetLogFileDirectoryCompletedEventHandler(object sender, WpiGetLogFileDirectoryCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class WpiGetLogFileDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9353,11 +8169,11 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void WpiGetLogsInDirectoryCompletedEventHandler(object sender, WpiGetLogsInDirectoryCompletedEventArgs e); /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] public partial class WpiGetLogsInDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { @@ -9379,209 +8195,181 @@ namespace WebsitePanel.EnterpriseServer } /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetWindowsServicesCompletedEventHandler(object sender, GetWindowsServicesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetWindowsServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetWindowsServicesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetWindowsServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetWindowsServicesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public WindowsService[] Result - { - get - { + public WindowsService[] Result { + get { this.RaiseExceptionIfNecessary(); return ((WindowsService[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void ChangeWindowsServiceStatusCompletedEventHandler(object sender, ChangeWindowsServiceStatusCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ChangeWindowsServiceStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class ChangeWindowsServiceStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal ChangeWindowsServiceStatusCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal ChangeWindowsServiceStatusCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetLogNamesCompletedEventHandler(object sender, GetLogNamesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetLogNamesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetLogNamesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetLogNamesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetLogNamesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public string[] Result - { - get - { + public string[] Result { + get { this.RaiseExceptionIfNecessary(); return ((string[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetLogEntriesCompletedEventHandler(object sender, GetLogEntriesCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetLogEntriesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetLogEntriesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetLogEntriesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetLogEntriesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public SystemLogEntry[] Result - { - get - { + public SystemLogEntry[] Result { + get { this.RaiseExceptionIfNecessary(); return ((SystemLogEntry[])(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void GetLogEntriesPagedCompletedEventHandler(object sender, GetLogEntriesPagedCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetLogEntriesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class GetLogEntriesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal GetLogEntriesPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal GetLogEntriesPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public SystemLogEntriesPaged Result - { - get - { + public SystemLogEntriesPaged Result { + get { this.RaiseExceptionIfNecessary(); return ((SystemLogEntriesPaged)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void ClearLogCompletedEventHandler(object sender, ClearLogCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ClearLogCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class ClearLogCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal ClearLogCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal ClearLogCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } } } - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] public delegate void RebootSystemCompletedEventHandler(object sender, RebootSystemCompletedEventArgs e); - + /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class RebootSystemCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - + public partial class RebootSystemCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + private object[] results; - - internal RebootSystemCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { + + internal RebootSystemCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { this.results = results; } - + /// - public int Result - { - get - { + public int Result { + get { this.RaiseExceptionIfNecessary(); return ((int)(this.results[0])); } diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/WebServersProxy.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/WebServersProxy.cs index ed922590..7aee25d6 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/WebServersProxy.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer.Client/WebServersProxy.cs @@ -29,7 +29,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.3053 +// Runtime Version:2.0.50727.6387 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -39,6889 +39,5930 @@ // // This source code was auto-generated by wsdl, Version=2.0.50727.3038. // -namespace WebsitePanel.EnterpriseServer -{ - using System.Diagnostics; - using System.Web.Services; - using System.ComponentModel; - using System.Web.Services.Protocols; - using System; - using System.Xml.Serialization; - using System.Data; - using WebsitePanel.Providers; - using WebsitePanel.Providers.Common; - using WebsitePanel.Providers.Web; - using WebsitePanel.Providers.ResultObjects; - - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Web.Services.WebServiceBindingAttribute(Name = "esWebServersSoap", Namespace = "http://smbsaas/websitepanel/enterpriseserver")] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ServiceProviderItem))] - public partial class esWebServers : Microsoft.Web.Services3.WebServicesClientProtocol - { - - private System.Threading.SendOrPostCallback GetRawWebSitesPagedOperationCompleted; - - private System.Threading.SendOrPostCallback GetWebSitesOperationCompleted; - - private System.Threading.SendOrPostCallback GetWebSiteOperationCompleted; - - private System.Threading.SendOrPostCallback GetVirtualDirectoriesOperationCompleted; - - private System.Threading.SendOrPostCallback GetVirtualDirectoryOperationCompleted; - - private System.Threading.SendOrPostCallback GetWebSitePointersOperationCompleted; - - private System.Threading.SendOrPostCallback AddWebSitePointerOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteWebSitePointerOperationCompleted; - - private System.Threading.SendOrPostCallback AddWebSiteOperationCompleted; - - private System.Threading.SendOrPostCallback AddVirtualDirectoryOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateWebSiteOperationCompleted; - - private System.Threading.SendOrPostCallback InstallFrontPageOperationCompleted; - - private System.Threading.SendOrPostCallback UninstallFrontPageOperationCompleted; - - private System.Threading.SendOrPostCallback ChangeFrontPagePasswordOperationCompleted; - - private System.Threading.SendOrPostCallback RepairWebSiteOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateVirtualDirectoryOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteWebSiteOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteVirtualDirectoryOperationCompleted; - - private System.Threading.SendOrPostCallback ChangeSiteStateOperationCompleted; - - private System.Threading.SendOrPostCallback GetSharedSSLDomainsOperationCompleted; - - private System.Threading.SendOrPostCallback GetRawSSLFoldersPagedOperationCompleted; - - private System.Threading.SendOrPostCallback GetSharedSSLFoldersOperationCompleted; - - private System.Threading.SendOrPostCallback GetSharedSSLFolderOperationCompleted; - - private System.Threading.SendOrPostCallback AddSharedSSLFolderOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateSharedSSLFolderOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteSharedSSLFolderOperationCompleted; - - private System.Threading.SendOrPostCallback InstallSecuredFoldersOperationCompleted; - - private System.Threading.SendOrPostCallback UninstallSecuredFoldersOperationCompleted; - - private System.Threading.SendOrPostCallback GetSecuredFoldersOperationCompleted; - - private System.Threading.SendOrPostCallback GetSecuredFolderOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateSecuredFolderOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteSecuredFolderOperationCompleted; - - private System.Threading.SendOrPostCallback GetSecuredUsersOperationCompleted; - - private System.Threading.SendOrPostCallback GetSecuredUserOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateSecuredUserOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteSecuredUserOperationCompleted; - - private System.Threading.SendOrPostCallback GetSecuredGroupsOperationCompleted; - - private System.Threading.SendOrPostCallback GetSecuredGroupOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateSecuredGroupOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteSecuredGroupOperationCompleted; - - private System.Threading.SendOrPostCallback GrantWebDeployPublishingAccessOperationCompleted; - - private System.Threading.SendOrPostCallback SaveWebDeployPublishingProfileOperationCompleted; - - private System.Threading.SendOrPostCallback RevokeWebDeployPublishingAccessOperationCompleted; - - private System.Threading.SendOrPostCallback GetWebDeployPublishingProfileOperationCompleted; - - private System.Threading.SendOrPostCallback ChangeWebDeployPublishingPasswordOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeStatusOperationCompleted; - - private System.Threading.SendOrPostCallback InstallHeliconApeOperationCompleted; - - private System.Threading.SendOrPostCallback EnableHeliconApeOperationCompleted; - - private System.Threading.SendOrPostCallback DisableHeliconApeOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeFoldersOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeHttpdFolderOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeFolderOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateHeliconApeFolderOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateHeliconApeHttpdFolderOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteHeliconApeFolderOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeUsersOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeUserOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateHeliconApeUserOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteHeliconApeUserOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeGroupsOperationCompleted; - - private System.Threading.SendOrPostCallback GetHeliconApeGroupOperationCompleted; - - private System.Threading.SendOrPostCallback UpdateHeliconApeGroupOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteHeliconApeGroupOperationCompleted; - - private System.Threading.SendOrPostCallback GrantWebManagementAccessOperationCompleted; - - private System.Threading.SendOrPostCallback RevokeWebManagementAccessOperationCompleted; - - private System.Threading.SendOrPostCallback ChangeWebManagementAccessPasswordOperationCompleted; - - private System.Threading.SendOrPostCallback CertificateRequestOperationCompleted; - - private System.Threading.SendOrPostCallback InstallCertificateOperationCompleted; - - private System.Threading.SendOrPostCallback InstallPfxOperationCompleted; - - private System.Threading.SendOrPostCallback GetPendingCertificatesOperationCompleted; - - private System.Threading.SendOrPostCallback GetSSLCertificateByIDOperationCompleted; - - private System.Threading.SendOrPostCallback GetSiteCertOperationCompleted; - - private System.Threading.SendOrPostCallback CheckSSLForWebsiteOperationCompleted; - - private System.Threading.SendOrPostCallback CheckSSLForDomainOperationCompleted; - - private System.Threading.SendOrPostCallback ExportCertificateOperationCompleted; - - private System.Threading.SendOrPostCallback GetCertificatesForSiteOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteCertificateOperationCompleted; - - private System.Threading.SendOrPostCallback ImportCertificateOperationCompleted; - - private System.Threading.SendOrPostCallback CheckCertificateOperationCompleted; - - private System.Threading.SendOrPostCallback DeleteCertificateRequestOperationCompleted; - - /// - public esWebServers() - { - this.Url = "http://localhost:1625/esWebServers.asmx"; - } - - /// - public event GetRawWebSitesPagedCompletedEventHandler GetRawWebSitesPagedCompleted; - - /// - public event GetWebSitesCompletedEventHandler GetWebSitesCompleted; - - /// - public event GetWebSiteCompletedEventHandler GetWebSiteCompleted; - - /// - public event GetVirtualDirectoriesCompletedEventHandler GetVirtualDirectoriesCompleted; - - /// - public event GetVirtualDirectoryCompletedEventHandler GetVirtualDirectoryCompleted; - - /// - public event GetWebSitePointersCompletedEventHandler GetWebSitePointersCompleted; - - /// - public event AddWebSitePointerCompletedEventHandler AddWebSitePointerCompleted; - - /// - public event DeleteWebSitePointerCompletedEventHandler DeleteWebSitePointerCompleted; - - /// - public event AddWebSiteCompletedEventHandler AddWebSiteCompleted; - - /// - public event AddVirtualDirectoryCompletedEventHandler AddVirtualDirectoryCompleted; - - /// - public event UpdateWebSiteCompletedEventHandler UpdateWebSiteCompleted; - - /// - public event InstallFrontPageCompletedEventHandler InstallFrontPageCompleted; - - /// - public event UninstallFrontPageCompletedEventHandler UninstallFrontPageCompleted; - - /// - public event ChangeFrontPagePasswordCompletedEventHandler ChangeFrontPagePasswordCompleted; - - /// - public event RepairWebSiteCompletedEventHandler RepairWebSiteCompleted; - - /// - public event UpdateVirtualDirectoryCompletedEventHandler UpdateVirtualDirectoryCompleted; - - /// - public event DeleteWebSiteCompletedEventHandler DeleteWebSiteCompleted; - - /// - public event DeleteVirtualDirectoryCompletedEventHandler DeleteVirtualDirectoryCompleted; - - /// - public event ChangeSiteStateCompletedEventHandler ChangeSiteStateCompleted; - - /// - public event GetSharedSSLDomainsCompletedEventHandler GetSharedSSLDomainsCompleted; - - /// - public event GetRawSSLFoldersPagedCompletedEventHandler GetRawSSLFoldersPagedCompleted; - - /// - public event GetSharedSSLFoldersCompletedEventHandler GetSharedSSLFoldersCompleted; - - /// - public event GetSharedSSLFolderCompletedEventHandler GetSharedSSLFolderCompleted; - - /// - public event AddSharedSSLFolderCompletedEventHandler AddSharedSSLFolderCompleted; - - /// - public event UpdateSharedSSLFolderCompletedEventHandler UpdateSharedSSLFolderCompleted; - - /// - public event DeleteSharedSSLFolderCompletedEventHandler DeleteSharedSSLFolderCompleted; - - /// - public event InstallSecuredFoldersCompletedEventHandler InstallSecuredFoldersCompleted; - - /// - public event UninstallSecuredFoldersCompletedEventHandler UninstallSecuredFoldersCompleted; - - /// - public event GetSecuredFoldersCompletedEventHandler GetSecuredFoldersCompleted; - - /// - public event GetSecuredFolderCompletedEventHandler GetSecuredFolderCompleted; - - /// - public event UpdateSecuredFolderCompletedEventHandler UpdateSecuredFolderCompleted; - - /// - public event DeleteSecuredFolderCompletedEventHandler DeleteSecuredFolderCompleted; - - /// - public event GetSecuredUsersCompletedEventHandler GetSecuredUsersCompleted; - - /// - public event GetSecuredUserCompletedEventHandler GetSecuredUserCompleted; - - /// - public event UpdateSecuredUserCompletedEventHandler UpdateSecuredUserCompleted; - - /// - public event DeleteSecuredUserCompletedEventHandler DeleteSecuredUserCompleted; - - /// - public event GetSecuredGroupsCompletedEventHandler GetSecuredGroupsCompleted; - - /// - public event GetSecuredGroupCompletedEventHandler GetSecuredGroupCompleted; - - /// - public event UpdateSecuredGroupCompletedEventHandler UpdateSecuredGroupCompleted; - - /// - public event DeleteSecuredGroupCompletedEventHandler DeleteSecuredGroupCompleted; - - /// - public event GetHeliconApeStatusCompletedEventHandler GetHeliconApeStatusCompleted; - - /// - public event InstallHeliconApeCompletedEventHandler InstallHeliconApeCompleted; - - /// - public event EnableHeliconApeCompletedEventHandler EnableHeliconApeCompleted; - - /// - public event DisableHeliconApeCompletedEventHandler DisableHeliconApeCompleted; - - /// - public event GetHeliconApeFoldersCompletedEventHandler GetHeliconApeFoldersCompleted; - - /// - public event GetHeliconApeHttpdFolderCompletedEventHandler GetHeliconApeHttpdFolderCompleted; - - /// - public event GetHeliconApeFolderCompletedEventHandler GetHeliconApeFolderCompleted; - - /// - public event UpdateHeliconApeFolderCompletedEventHandler UpdateHeliconApeFolderCompleted; - - /// - public event UpdateHeliconApeHttpdFolderCompletedEventHandler UpdateHeliconApeHttpdFolderCompleted; - - /// - public event DeleteHeliconApeFolderCompletedEventHandler DeleteHeliconApeFolderCompleted; - - /// - public event GetHeliconApeUsersCompletedEventHandler GetHeliconApeUsersCompleted; - - /// - public event GetHeliconApeUserCompletedEventHandler GetHeliconApeUserCompleted; - - /// - public event UpdateHeliconApeUserCompletedEventHandler UpdateHeliconApeUserCompleted; - - /// - public event DeleteHeliconApeUserCompletedEventHandler DeleteHeliconApeUserCompleted; - - /// - public event GetHeliconApeGroupsCompletedEventHandler GetHeliconApeGroupsCompleted; - - /// - public event GetHeliconApeGroupCompletedEventHandler GetHeliconApeGroupCompleted; - - /// - public event UpdateHeliconApeGroupCompletedEventHandler UpdateHeliconApeGroupCompleted; - - /// - public event DeleteHeliconApeGroupCompletedEventHandler DeleteHeliconApeGroupCompleted; - - /// - public event GrantWebDeployPublishingAccessCompletedEventHandler GrantWebDeployPublishingAccessCompleted; - - /// - public event SaveWebDeployPublishingProfileCompletedEventHandler SaveWebDeployPublishingProfileCompleted; - - /// - public event RevokeWebDeployPublishingAccessCompletedEventHandler RevokeWebDeployPublishingAccessCompleted; - - /// - public event GetWebDeployPublishingProfileCompletedEventHandler GetWebDeployPublishingProfileCompleted; - - /// - public event ChangeWebDeployPublishingPasswordCompletedEventHandler ChangeWebDeployPublishingPasswordCompleted; - - /// - public event GrantWebManagementAccessCompletedEventHandler GrantWebManagementAccessCompleted; - - /// - public event RevokeWebManagementAccessCompletedEventHandler RevokeWebManagementAccessCompleted; - - /// - public event ChangeWebManagementAccessPasswordCompletedEventHandler ChangeWebManagementAccessPasswordCompleted; - - /// - public event CertificateRequestCompletedEventHandler CertificateRequestCompleted; - - /// - public event InstallCertificateCompletedEventHandler InstallCertificateCompleted; - - /// - public event InstallPfxCompletedEventHandler InstallPfxCompleted; - - /// - public event GetPendingCertificatesCompletedEventHandler GetPendingCertificatesCompleted; - - /// - public event GetSSLCertificateByIDCompletedEventHandler GetSSLCertificateByIDCompleted; - - /// - public event GetSiteCertCompletedEventHandler GetSiteCertCompleted; - - /// - public event CheckSSLForWebsiteCompletedEventHandler CheckSSLForWebsiteCompleted; - - /// - public event CheckSSLForDomainCompletedEventHandler CheckSSLForDomainCompleted; - - /// - public event ExportCertificateCompletedEventHandler ExportCertificateCompleted; - - /// - public event GetCertificatesForSiteCompletedEventHandler GetCertificatesForSiteCompleted; - - /// - public event DeleteCertificateCompletedEventHandler DeleteCertificateCompleted; - - /// - public event ImportCertificateCompletedEventHandler ImportCertificateCompleted; - - /// - public event CheckCertificateCompletedEventHandler CheckCertificateCompleted; - - /// - public event DeleteCertificateRequestCompletedEventHandler DeleteCertificateRequestCompleted; - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawWebSitesPaged", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawWebSitesPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { - object[] results = this.Invoke("GetRawWebSitesPaged", new object[] { +namespace WebsitePanel.EnterpriseServer { + using System.Xml.Serialization; + using System.Web.Services; + using System.ComponentModel; + using System.Web.Services.Protocols; + using System; + using System.Diagnostics; + using System.Data; + + using WebsitePanel.Providers; + using WebsitePanel.Providers.Common; + using WebsitePanel.Providers.Web; + using WebsitePanel.Providers.ResultObjects; + + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Web.Services.WebServiceBindingAttribute(Name="esWebServersSoap", Namespace="http://smbsaas/websitepanel/enterpriseserver")] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ServiceProviderItem))] + public partial class esWebServers : Microsoft.Web.Services3.WebServicesClientProtocol { + + private System.Threading.SendOrPostCallback GetRawWebSitesPagedOperationCompleted; + + private System.Threading.SendOrPostCallback GetWebSitesOperationCompleted; + + private System.Threading.SendOrPostCallback GetWebSiteOperationCompleted; + + private System.Threading.SendOrPostCallback GetVirtualDirectoriesOperationCompleted; + + private System.Threading.SendOrPostCallback GetVirtualDirectoryOperationCompleted; + + private System.Threading.SendOrPostCallback GetWebSitePointersOperationCompleted; + + private System.Threading.SendOrPostCallback AddWebSitePointerOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteWebSitePointerOperationCompleted; + + private System.Threading.SendOrPostCallback AddWebSiteOperationCompleted; + + private System.Threading.SendOrPostCallback AddVirtualDirectoryOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateWebSiteOperationCompleted; + + private System.Threading.SendOrPostCallback InstallFrontPageOperationCompleted; + + private System.Threading.SendOrPostCallback UninstallFrontPageOperationCompleted; + + private System.Threading.SendOrPostCallback ChangeFrontPagePasswordOperationCompleted; + + private System.Threading.SendOrPostCallback RepairWebSiteOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateVirtualDirectoryOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteWebSiteOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteVirtualDirectoryOperationCompleted; + + private System.Threading.SendOrPostCallback ChangeSiteStateOperationCompleted; + + private System.Threading.SendOrPostCallback GetSharedSSLDomainsOperationCompleted; + + private System.Threading.SendOrPostCallback GetRawSSLFoldersPagedOperationCompleted; + + private System.Threading.SendOrPostCallback GetSharedSSLFoldersOperationCompleted; + + private System.Threading.SendOrPostCallback GetSharedSSLFolderOperationCompleted; + + private System.Threading.SendOrPostCallback AddSharedSSLFolderOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateSharedSSLFolderOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteSharedSSLFolderOperationCompleted; + + private System.Threading.SendOrPostCallback InstallSecuredFoldersOperationCompleted; + + private System.Threading.SendOrPostCallback UninstallSecuredFoldersOperationCompleted; + + private System.Threading.SendOrPostCallback GetSecuredFoldersOperationCompleted; + + private System.Threading.SendOrPostCallback GetSecuredFolderOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateSecuredFolderOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteSecuredFolderOperationCompleted; + + private System.Threading.SendOrPostCallback GetSecuredUsersOperationCompleted; + + private System.Threading.SendOrPostCallback GetSecuredUserOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateSecuredUserOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteSecuredUserOperationCompleted; + + private System.Threading.SendOrPostCallback GetSecuredGroupsOperationCompleted; + + private System.Threading.SendOrPostCallback GetSecuredGroupOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateSecuredGroupOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteSecuredGroupOperationCompleted; + + private System.Threading.SendOrPostCallback GrantWebDeployPublishingAccessOperationCompleted; + + private System.Threading.SendOrPostCallback SaveWebDeployPublishingProfileOperationCompleted; + + private System.Threading.SendOrPostCallback RevokeWebDeployPublishingAccessOperationCompleted; + + private System.Threading.SendOrPostCallback GetWebDeployPublishingProfileOperationCompleted; + + private System.Threading.SendOrPostCallback ChangeWebDeployPublishingPasswordOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeStatusOperationCompleted; + + private System.Threading.SendOrPostCallback InstallHeliconApeOperationCompleted; + + private System.Threading.SendOrPostCallback EnableHeliconApeOperationCompleted; + + private System.Threading.SendOrPostCallback DisableHeliconApeOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeFoldersOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeHttpdFolderOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeFolderOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateHeliconApeFolderOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateHeliconApeHttpdFolderOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteHeliconApeFolderOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeUsersOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeUserOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateHeliconApeUserOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteHeliconApeUserOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeGroupsOperationCompleted; + + private System.Threading.SendOrPostCallback GetHeliconApeGroupOperationCompleted; + + private System.Threading.SendOrPostCallback UpdateHeliconApeGroupOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteHeliconApeGroupOperationCompleted; + + private System.Threading.SendOrPostCallback GrantWebManagementAccessOperationCompleted; + + private System.Threading.SendOrPostCallback RevokeWebManagementAccessOperationCompleted; + + private System.Threading.SendOrPostCallback ChangeWebManagementAccessPasswordOperationCompleted; + + private System.Threading.SendOrPostCallback CertificateRequestOperationCompleted; + + private System.Threading.SendOrPostCallback InstallCertificateOperationCompleted; + + private System.Threading.SendOrPostCallback InstallPfxOperationCompleted; + + private System.Threading.SendOrPostCallback GetPendingCertificatesOperationCompleted; + + private System.Threading.SendOrPostCallback GetSSLCertificateByIDOperationCompleted; + + private System.Threading.SendOrPostCallback GetSiteCertOperationCompleted; + + private System.Threading.SendOrPostCallback CheckSSLForWebsiteOperationCompleted; + + private System.Threading.SendOrPostCallback CheckSSLForDomainOperationCompleted; + + private System.Threading.SendOrPostCallback ExportCertificateOperationCompleted; + + private System.Threading.SendOrPostCallback GetCertificatesForSiteOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteCertificateOperationCompleted; + + private System.Threading.SendOrPostCallback ImportCertificateOperationCompleted; + + private System.Threading.SendOrPostCallback CheckCertificateOperationCompleted; + + private System.Threading.SendOrPostCallback DeleteCertificateRequestOperationCompleted; + + /// + public esWebServers() { + this.Url = "http://localhost:9002/esWebServers.asmx"; + } + + /// + public event GetRawWebSitesPagedCompletedEventHandler GetRawWebSitesPagedCompleted; + + /// + public event GetWebSitesCompletedEventHandler GetWebSitesCompleted; + + /// + public event GetWebSiteCompletedEventHandler GetWebSiteCompleted; + + /// + public event GetVirtualDirectoriesCompletedEventHandler GetVirtualDirectoriesCompleted; + + /// + public event GetVirtualDirectoryCompletedEventHandler GetVirtualDirectoryCompleted; + + /// + public event GetWebSitePointersCompletedEventHandler GetWebSitePointersCompleted; + + /// + public event AddWebSitePointerCompletedEventHandler AddWebSitePointerCompleted; + + /// + public event DeleteWebSitePointerCompletedEventHandler DeleteWebSitePointerCompleted; + + /// + public event AddWebSiteCompletedEventHandler AddWebSiteCompleted; + + /// + public event AddVirtualDirectoryCompletedEventHandler AddVirtualDirectoryCompleted; + + /// + public event UpdateWebSiteCompletedEventHandler UpdateWebSiteCompleted; + + /// + public event InstallFrontPageCompletedEventHandler InstallFrontPageCompleted; + + /// + public event UninstallFrontPageCompletedEventHandler UninstallFrontPageCompleted; + + /// + public event ChangeFrontPagePasswordCompletedEventHandler ChangeFrontPagePasswordCompleted; + + /// + public event RepairWebSiteCompletedEventHandler RepairWebSiteCompleted; + + /// + public event UpdateVirtualDirectoryCompletedEventHandler UpdateVirtualDirectoryCompleted; + + /// + public event DeleteWebSiteCompletedEventHandler DeleteWebSiteCompleted; + + /// + public event DeleteVirtualDirectoryCompletedEventHandler DeleteVirtualDirectoryCompleted; + + /// + public event ChangeSiteStateCompletedEventHandler ChangeSiteStateCompleted; + + /// + public event GetSharedSSLDomainsCompletedEventHandler GetSharedSSLDomainsCompleted; + + /// + public event GetRawSSLFoldersPagedCompletedEventHandler GetRawSSLFoldersPagedCompleted; + + /// + public event GetSharedSSLFoldersCompletedEventHandler GetSharedSSLFoldersCompleted; + + /// + public event GetSharedSSLFolderCompletedEventHandler GetSharedSSLFolderCompleted; + + /// + public event AddSharedSSLFolderCompletedEventHandler AddSharedSSLFolderCompleted; + + /// + public event UpdateSharedSSLFolderCompletedEventHandler UpdateSharedSSLFolderCompleted; + + /// + public event DeleteSharedSSLFolderCompletedEventHandler DeleteSharedSSLFolderCompleted; + + /// + public event InstallSecuredFoldersCompletedEventHandler InstallSecuredFoldersCompleted; + + /// + public event UninstallSecuredFoldersCompletedEventHandler UninstallSecuredFoldersCompleted; + + /// + public event GetSecuredFoldersCompletedEventHandler GetSecuredFoldersCompleted; + + /// + public event GetSecuredFolderCompletedEventHandler GetSecuredFolderCompleted; + + /// + public event UpdateSecuredFolderCompletedEventHandler UpdateSecuredFolderCompleted; + + /// + public event DeleteSecuredFolderCompletedEventHandler DeleteSecuredFolderCompleted; + + /// + public event GetSecuredUsersCompletedEventHandler GetSecuredUsersCompleted; + + /// + public event GetSecuredUserCompletedEventHandler GetSecuredUserCompleted; + + /// + public event UpdateSecuredUserCompletedEventHandler UpdateSecuredUserCompleted; + + /// + public event DeleteSecuredUserCompletedEventHandler DeleteSecuredUserCompleted; + + /// + public event GetSecuredGroupsCompletedEventHandler GetSecuredGroupsCompleted; + + /// + public event GetSecuredGroupCompletedEventHandler GetSecuredGroupCompleted; + + /// + public event UpdateSecuredGroupCompletedEventHandler UpdateSecuredGroupCompleted; + + /// + public event DeleteSecuredGroupCompletedEventHandler DeleteSecuredGroupCompleted; + + /// + public event GrantWebDeployPublishingAccessCompletedEventHandler GrantWebDeployPublishingAccessCompleted; + + /// + public event SaveWebDeployPublishingProfileCompletedEventHandler SaveWebDeployPublishingProfileCompleted; + + /// + public event RevokeWebDeployPublishingAccessCompletedEventHandler RevokeWebDeployPublishingAccessCompleted; + + /// + public event GetWebDeployPublishingProfileCompletedEventHandler GetWebDeployPublishingProfileCompleted; + + /// + public event ChangeWebDeployPublishingPasswordCompletedEventHandler ChangeWebDeployPublishingPasswordCompleted; + + /// + public event GetHeliconApeStatusCompletedEventHandler GetHeliconApeStatusCompleted; + + /// + public event InstallHeliconApeCompletedEventHandler InstallHeliconApeCompleted; + + /// + public event EnableHeliconApeCompletedEventHandler EnableHeliconApeCompleted; + + /// + public event DisableHeliconApeCompletedEventHandler DisableHeliconApeCompleted; + + /// + public event GetHeliconApeFoldersCompletedEventHandler GetHeliconApeFoldersCompleted; + + /// + public event GetHeliconApeHttpdFolderCompletedEventHandler GetHeliconApeHttpdFolderCompleted; + + /// + public event GetHeliconApeFolderCompletedEventHandler GetHeliconApeFolderCompleted; + + /// + public event UpdateHeliconApeFolderCompletedEventHandler UpdateHeliconApeFolderCompleted; + + /// + public event UpdateHeliconApeHttpdFolderCompletedEventHandler UpdateHeliconApeHttpdFolderCompleted; + + /// + public event DeleteHeliconApeFolderCompletedEventHandler DeleteHeliconApeFolderCompleted; + + /// + public event GetHeliconApeUsersCompletedEventHandler GetHeliconApeUsersCompleted; + + /// + public event GetHeliconApeUserCompletedEventHandler GetHeliconApeUserCompleted; + + /// + public event UpdateHeliconApeUserCompletedEventHandler UpdateHeliconApeUserCompleted; + + /// + public event DeleteHeliconApeUserCompletedEventHandler DeleteHeliconApeUserCompleted; + + /// + public event GetHeliconApeGroupsCompletedEventHandler GetHeliconApeGroupsCompleted; + + /// + public event GetHeliconApeGroupCompletedEventHandler GetHeliconApeGroupCompleted; + + /// + public event UpdateHeliconApeGroupCompletedEventHandler UpdateHeliconApeGroupCompleted; + + /// + public event DeleteHeliconApeGroupCompletedEventHandler DeleteHeliconApeGroupCompleted; + + /// + public event GrantWebManagementAccessCompletedEventHandler GrantWebManagementAccessCompleted; + + /// + public event RevokeWebManagementAccessCompletedEventHandler RevokeWebManagementAccessCompleted; + + /// + public event ChangeWebManagementAccessPasswordCompletedEventHandler ChangeWebManagementAccessPasswordCompleted; + + /// + public event CertificateRequestCompletedEventHandler CertificateRequestCompleted; + + /// + public event InstallCertificateCompletedEventHandler InstallCertificateCompleted; + + /// + public event InstallPfxCompletedEventHandler InstallPfxCompleted; + + /// + public event GetPendingCertificatesCompletedEventHandler GetPendingCertificatesCompleted; + + /// + public event GetSSLCertificateByIDCompletedEventHandler GetSSLCertificateByIDCompleted; + + /// + public event GetSiteCertCompletedEventHandler GetSiteCertCompleted; + + /// + public event CheckSSLForWebsiteCompletedEventHandler CheckSSLForWebsiteCompleted; + + /// + public event CheckSSLForDomainCompletedEventHandler CheckSSLForDomainCompleted; + + /// + public event ExportCertificateCompletedEventHandler ExportCertificateCompleted; + + /// + public event GetCertificatesForSiteCompletedEventHandler GetCertificatesForSiteCompleted; + + /// + public event DeleteCertificateCompletedEventHandler DeleteCertificateCompleted; + + /// + public event ImportCertificateCompletedEventHandler ImportCertificateCompleted; + + /// + public event CheckCertificateCompletedEventHandler CheckCertificateCompleted; + + /// + public event DeleteCertificateRequestCompletedEventHandler DeleteCertificateRequestCompleted; + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawWebSitesPaged", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawWebSitesPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { + object[] results = this.Invoke("GetRawWebSitesPaged", new object[] { packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows}); - return ((System.Data.DataSet)(results[0])); - } - - /// - public System.IAsyncResult BeginGetRawWebSitesPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetRawWebSitesPaged", new object[] { + return ((System.Data.DataSet)(results[0])); + } + + /// + public System.IAsyncResult BeginGetRawWebSitesPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetRawWebSitesPaged", new object[] { packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows}, callback, asyncState); - } - - /// - public System.Data.DataSet EndGetRawWebSitesPaged(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((System.Data.DataSet)(results[0])); - } - - /// - public void GetRawWebSitesPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { - this.GetRawWebSitesPagedAsync(packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows, null); - } - - /// - public void GetRawWebSitesPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) - { - if ((this.GetRawWebSitesPagedOperationCompleted == null)) - { - this.GetRawWebSitesPagedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawWebSitesPagedOperationCompleted); - } - this.InvokeAsync("GetRawWebSitesPaged", new object[] { + } + + /// + public System.Data.DataSet EndGetRawWebSitesPaged(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((System.Data.DataSet)(results[0])); + } + + /// + public void GetRawWebSitesPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { + this.GetRawWebSitesPagedAsync(packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows, null); + } + + /// + public void GetRawWebSitesPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) { + if ((this.GetRawWebSitesPagedOperationCompleted == null)) { + this.GetRawWebSitesPagedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawWebSitesPagedOperationCompleted); + } + this.InvokeAsync("GetRawWebSitesPaged", new object[] { packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows}, this.GetRawWebSitesPagedOperationCompleted, userState); - } - - private void OnGetRawWebSitesPagedOperationCompleted(object arg) - { - if ((this.GetRawWebSitesPagedCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetRawWebSitesPagedCompleted(this, new GetRawWebSitesPagedCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebSites", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebSite[] GetWebSites(int packageId, bool recursive) - { - object[] results = this.Invoke("GetWebSites", new object[] { + } + + private void OnGetRawWebSitesPagedOperationCompleted(object arg) { + if ((this.GetRawWebSitesPagedCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetRawWebSitesPagedCompleted(this, new GetRawWebSitesPagedCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebSites", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebSite[] GetWebSites(int packageId, bool recursive) { + object[] results = this.Invoke("GetWebSites", new object[] { packageId, recursive}); - return ((WebSite[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetWebSites(int packageId, bool recursive, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetWebSites", new object[] { + return ((WebSite[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetWebSites(int packageId, bool recursive, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetWebSites", new object[] { packageId, recursive}, callback, asyncState); - } - - /// - public WebSite[] EndGetWebSites(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebSite[])(results[0])); - } - - /// - public void GetWebSitesAsync(int packageId, bool recursive) - { - this.GetWebSitesAsync(packageId, recursive, null); - } - - /// - public void GetWebSitesAsync(int packageId, bool recursive, object userState) - { - if ((this.GetWebSitesOperationCompleted == null)) - { - this.GetWebSitesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebSitesOperationCompleted); - } - this.InvokeAsync("GetWebSites", new object[] { + } + + /// + public WebSite[] EndGetWebSites(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebSite[])(results[0])); + } + + /// + public void GetWebSitesAsync(int packageId, bool recursive) { + this.GetWebSitesAsync(packageId, recursive, null); + } + + /// + public void GetWebSitesAsync(int packageId, bool recursive, object userState) { + if ((this.GetWebSitesOperationCompleted == null)) { + this.GetWebSitesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebSitesOperationCompleted); + } + this.InvokeAsync("GetWebSites", new object[] { packageId, recursive}, this.GetWebSitesOperationCompleted, userState); - } - - private void OnGetWebSitesOperationCompleted(object arg) - { - if ((this.GetWebSitesCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetWebSitesCompleted(this, new GetWebSitesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebSite", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebSite GetWebSite(int siteItemId) - { - object[] results = this.Invoke("GetWebSite", new object[] { + } + + private void OnGetWebSitesOperationCompleted(object arg) { + if ((this.GetWebSitesCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetWebSitesCompleted(this, new GetWebSitesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebSite", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebSite GetWebSite(int siteItemId) { + object[] results = this.Invoke("GetWebSite", new object[] { siteItemId}); - return ((WebSite)(results[0])); - } - - /// - public System.IAsyncResult BeginGetWebSite(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetWebSite", new object[] { + return ((WebSite)(results[0])); + } + + /// + public System.IAsyncResult BeginGetWebSite(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetWebSite", new object[] { siteItemId}, callback, asyncState); - } - - /// - public WebSite EndGetWebSite(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebSite)(results[0])); - } - - /// - public void GetWebSiteAsync(int siteItemId) - { - this.GetWebSiteAsync(siteItemId, null); - } - - /// - public void GetWebSiteAsync(int siteItemId, object userState) - { - if ((this.GetWebSiteOperationCompleted == null)) - { - this.GetWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebSiteOperationCompleted); - } - this.InvokeAsync("GetWebSite", new object[] { + } + + /// + public WebSite EndGetWebSite(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebSite)(results[0])); + } + + /// + public void GetWebSiteAsync(int siteItemId) { + this.GetWebSiteAsync(siteItemId, null); + } + + /// + public void GetWebSiteAsync(int siteItemId, object userState) { + if ((this.GetWebSiteOperationCompleted == null)) { + this.GetWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebSiteOperationCompleted); + } + this.InvokeAsync("GetWebSite", new object[] { siteItemId}, this.GetWebSiteOperationCompleted, userState); - } - - private void OnGetWebSiteOperationCompleted(object arg) - { - if ((this.GetWebSiteCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetWebSiteCompleted(this, new GetWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualDirectories", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebVirtualDirectory[] GetVirtualDirectories(int siteItemId) - { - object[] results = this.Invoke("GetVirtualDirectories", new object[] { + } + + private void OnGetWebSiteOperationCompleted(object arg) { + if ((this.GetWebSiteCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetWebSiteCompleted(this, new GetWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualDirectories", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebVirtualDirectory[] GetVirtualDirectories(int siteItemId) { + object[] results = this.Invoke("GetVirtualDirectories", new object[] { siteItemId}); - return ((WebVirtualDirectory[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetVirtualDirectories(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetVirtualDirectories", new object[] { + return ((WebVirtualDirectory[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetVirtualDirectories(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetVirtualDirectories", new object[] { siteItemId}, callback, asyncState); - } - - /// - public WebVirtualDirectory[] EndGetVirtualDirectories(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebVirtualDirectory[])(results[0])); - } - - /// - public void GetVirtualDirectoriesAsync(int siteItemId) - { - this.GetVirtualDirectoriesAsync(siteItemId, null); - } - - /// - public void GetVirtualDirectoriesAsync(int siteItemId, object userState) - { - if ((this.GetVirtualDirectoriesOperationCompleted == null)) - { - this.GetVirtualDirectoriesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVirtualDirectoriesOperationCompleted); - } - this.InvokeAsync("GetVirtualDirectories", new object[] { + } + + /// + public WebVirtualDirectory[] EndGetVirtualDirectories(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebVirtualDirectory[])(results[0])); + } + + /// + public void GetVirtualDirectoriesAsync(int siteItemId) { + this.GetVirtualDirectoriesAsync(siteItemId, null); + } + + /// + public void GetVirtualDirectoriesAsync(int siteItemId, object userState) { + if ((this.GetVirtualDirectoriesOperationCompleted == null)) { + this.GetVirtualDirectoriesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVirtualDirectoriesOperationCompleted); + } + this.InvokeAsync("GetVirtualDirectories", new object[] { siteItemId}, this.GetVirtualDirectoriesOperationCompleted, userState); - } - - private void OnGetVirtualDirectoriesOperationCompleted(object arg) - { - if ((this.GetVirtualDirectoriesCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetVirtualDirectoriesCompleted(this, new GetVirtualDirectoriesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualDirectory", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebVirtualDirectory GetVirtualDirectory(int siteItemId, string vdirName) - { - object[] results = this.Invoke("GetVirtualDirectory", new object[] { + } + + private void OnGetVirtualDirectoriesOperationCompleted(object arg) { + if ((this.GetVirtualDirectoriesCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetVirtualDirectoriesCompleted(this, new GetVirtualDirectoriesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetVirtualDirectory", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebVirtualDirectory GetVirtualDirectory(int siteItemId, string vdirName) { + object[] results = this.Invoke("GetVirtualDirectory", new object[] { siteItemId, vdirName}); - return ((WebVirtualDirectory)(results[0])); - } - - /// - public System.IAsyncResult BeginGetVirtualDirectory(int siteItemId, string vdirName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetVirtualDirectory", new object[] { + return ((WebVirtualDirectory)(results[0])); + } + + /// + public System.IAsyncResult BeginGetVirtualDirectory(int siteItemId, string vdirName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetVirtualDirectory", new object[] { siteItemId, vdirName}, callback, asyncState); - } - - /// - public WebVirtualDirectory EndGetVirtualDirectory(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebVirtualDirectory)(results[0])); - } - - /// - public void GetVirtualDirectoryAsync(int siteItemId, string vdirName) - { - this.GetVirtualDirectoryAsync(siteItemId, vdirName, null); - } - - /// - public void GetVirtualDirectoryAsync(int siteItemId, string vdirName, object userState) - { - if ((this.GetVirtualDirectoryOperationCompleted == null)) - { - this.GetVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVirtualDirectoryOperationCompleted); - } - this.InvokeAsync("GetVirtualDirectory", new object[] { + } + + /// + public WebVirtualDirectory EndGetVirtualDirectory(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebVirtualDirectory)(results[0])); + } + + /// + public void GetVirtualDirectoryAsync(int siteItemId, string vdirName) { + this.GetVirtualDirectoryAsync(siteItemId, vdirName, null); + } + + /// + public void GetVirtualDirectoryAsync(int siteItemId, string vdirName, object userState) { + if ((this.GetVirtualDirectoryOperationCompleted == null)) { + this.GetVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetVirtualDirectoryOperationCompleted); + } + this.InvokeAsync("GetVirtualDirectory", new object[] { siteItemId, vdirName}, this.GetVirtualDirectoryOperationCompleted, userState); - } - - private void OnGetVirtualDirectoryOperationCompleted(object arg) - { - if ((this.GetVirtualDirectoryCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetVirtualDirectoryCompleted(this, new GetVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebSitePointers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public DomainInfo[] GetWebSitePointers(int siteItemId) - { - object[] results = this.Invoke("GetWebSitePointers", new object[] { + } + + private void OnGetVirtualDirectoryOperationCompleted(object arg) { + if ((this.GetVirtualDirectoryCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetVirtualDirectoryCompleted(this, new GetVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebSitePointers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public DomainInfo[] GetWebSitePointers(int siteItemId) { + object[] results = this.Invoke("GetWebSitePointers", new object[] { siteItemId}); - return ((DomainInfo[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetWebSitePointers(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetWebSitePointers", new object[] { + return ((DomainInfo[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetWebSitePointers(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetWebSitePointers", new object[] { siteItemId}, callback, asyncState); - } - - /// - public DomainInfo[] EndGetWebSitePointers(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((DomainInfo[])(results[0])); - } - - /// - public void GetWebSitePointersAsync(int siteItemId) - { - this.GetWebSitePointersAsync(siteItemId, null); - } - - /// - public void GetWebSitePointersAsync(int siteItemId, object userState) - { - if ((this.GetWebSitePointersOperationCompleted == null)) - { - this.GetWebSitePointersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebSitePointersOperationCompleted); - } - this.InvokeAsync("GetWebSitePointers", new object[] { + } + + /// + public DomainInfo[] EndGetWebSitePointers(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((DomainInfo[])(results[0])); + } + + /// + public void GetWebSitePointersAsync(int siteItemId) { + this.GetWebSitePointersAsync(siteItemId, null); + } + + /// + public void GetWebSitePointersAsync(int siteItemId, object userState) { + if ((this.GetWebSitePointersOperationCompleted == null)) { + this.GetWebSitePointersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebSitePointersOperationCompleted); + } + this.InvokeAsync("GetWebSitePointers", new object[] { siteItemId}, this.GetWebSitePointersOperationCompleted, userState); - } - - private void OnGetWebSitePointersOperationCompleted(object arg) - { - if ((this.GetWebSitePointersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetWebSitePointersCompleted(this, new GetWebSitePointersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddWebSitePointer", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddWebSitePointer(int siteItemId, int domainId) - { - object[] results = this.Invoke("AddWebSitePointer", new object[] { + } + + private void OnGetWebSitePointersOperationCompleted(object arg) { + if ((this.GetWebSitePointersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetWebSitePointersCompleted(this, new GetWebSitePointersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddWebSitePointer", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddWebSitePointer(int siteItemId, string hostName, int domainId) { + object[] results = this.Invoke("AddWebSitePointer", new object[] { siteItemId, + hostName, domainId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginAddWebSitePointer(int siteItemId, int domainId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("AddWebSitePointer", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginAddWebSitePointer(int siteItemId, string hostName, int domainId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("AddWebSitePointer", new object[] { siteItemId, + hostName, domainId}, callback, asyncState); - } - - /// - public int EndAddWebSitePointer(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void AddWebSitePointerAsync(int siteItemId, int domainId) - { - this.AddWebSitePointerAsync(siteItemId, domainId, null); - } - - /// - public void AddWebSitePointerAsync(int siteItemId, int domainId, object userState) - { - if ((this.AddWebSitePointerOperationCompleted == null)) - { - this.AddWebSitePointerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddWebSitePointerOperationCompleted); - } - this.InvokeAsync("AddWebSitePointer", new object[] { + } + + /// + public int EndAddWebSitePointer(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void AddWebSitePointerAsync(int siteItemId, string hostName, int domainId) { + this.AddWebSitePointerAsync(siteItemId, hostName, domainId, null); + } + + /// + public void AddWebSitePointerAsync(int siteItemId, string hostName, int domainId, object userState) { + if ((this.AddWebSitePointerOperationCompleted == null)) { + this.AddWebSitePointerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddWebSitePointerOperationCompleted); + } + this.InvokeAsync("AddWebSitePointer", new object[] { siteItemId, + hostName, domainId}, this.AddWebSitePointerOperationCompleted, userState); - } - - private void OnAddWebSitePointerOperationCompleted(object arg) - { - if ((this.AddWebSitePointerCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.AddWebSitePointerCompleted(this, new AddWebSitePointerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteWebSitePointer", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteWebSitePointer(int siteItemId, int domainId) - { - object[] results = this.Invoke("DeleteWebSitePointer", new object[] { + } + + private void OnAddWebSitePointerOperationCompleted(object arg) { + if ((this.AddWebSitePointerCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.AddWebSitePointerCompleted(this, new AddWebSitePointerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteWebSitePointer", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteWebSitePointer(int siteItemId, int domainId) { + object[] results = this.Invoke("DeleteWebSitePointer", new object[] { siteItemId, domainId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteWebSitePointer(int siteItemId, int domainId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteWebSitePointer", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteWebSitePointer(int siteItemId, int domainId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteWebSitePointer", new object[] { siteItemId, domainId}, callback, asyncState); - } - - /// - public int EndDeleteWebSitePointer(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteWebSitePointerAsync(int siteItemId, int domainId) - { - this.DeleteWebSitePointerAsync(siteItemId, domainId, null); - } - - /// - public void DeleteWebSitePointerAsync(int siteItemId, int domainId, object userState) - { - if ((this.DeleteWebSitePointerOperationCompleted == null)) - { - this.DeleteWebSitePointerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteWebSitePointerOperationCompleted); - } - this.InvokeAsync("DeleteWebSitePointer", new object[] { + } + + /// + public int EndDeleteWebSitePointer(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteWebSitePointerAsync(int siteItemId, int domainId) { + this.DeleteWebSitePointerAsync(siteItemId, domainId, null); + } + + /// + public void DeleteWebSitePointerAsync(int siteItemId, int domainId, object userState) { + if ((this.DeleteWebSitePointerOperationCompleted == null)) { + this.DeleteWebSitePointerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteWebSitePointerOperationCompleted); + } + this.InvokeAsync("DeleteWebSitePointer", new object[] { siteItemId, domainId}, this.DeleteWebSitePointerOperationCompleted, userState); - } - - private void OnDeleteWebSitePointerOperationCompleted(object arg) - { - if ((this.DeleteWebSitePointerCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteWebSitePointerCompleted(this, new DeleteWebSitePointerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddWebSite", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddWebSite(int packageId, int domainId, int ipAddressId) - { - object[] results = this.Invoke("AddWebSite", new object[] { + } + + private void OnDeleteWebSitePointerOperationCompleted(object arg) { + if ((this.DeleteWebSitePointerCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteWebSitePointerCompleted(this, new DeleteWebSitePointerCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddWebSite", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddWebSite(int packageId, string hostName, int domainId, int ipAddressId) { + object[] results = this.Invoke("AddWebSite", new object[] { packageId, + hostName, domainId, ipAddressId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginAddWebSite(int packageId, int domainId, int ipAddressId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("AddWebSite", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginAddWebSite(int packageId, string hostName, int domainId, int ipAddressId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("AddWebSite", new object[] { packageId, + hostName, domainId, ipAddressId}, callback, asyncState); - } - - /// - public int EndAddWebSite(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void AddWebSiteAsync(int packageId, int domainId, int ipAddressId) - { - this.AddWebSiteAsync(packageId, domainId, ipAddressId, null); - } - - /// - public void AddWebSiteAsync(int packageId, int domainId, int ipAddressId, object userState) - { - if ((this.AddWebSiteOperationCompleted == null)) - { - this.AddWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddWebSiteOperationCompleted); - } - this.InvokeAsync("AddWebSite", new object[] { + } + + /// + public int EndAddWebSite(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void AddWebSiteAsync(int packageId, string hostName, int domainId, int ipAddressId) { + this.AddWebSiteAsync(packageId, hostName, domainId, ipAddressId, null); + } + + /// + public void AddWebSiteAsync(int packageId, string hostName, int domainId, int ipAddressId, object userState) { + if ((this.AddWebSiteOperationCompleted == null)) { + this.AddWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddWebSiteOperationCompleted); + } + this.InvokeAsync("AddWebSite", new object[] { packageId, + hostName, domainId, ipAddressId}, this.AddWebSiteOperationCompleted, userState); - } - - private void OnAddWebSiteOperationCompleted(object arg) - { - if ((this.AddWebSiteCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.AddWebSiteCompleted(this, new AddWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddVirtualDirectory", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddVirtualDirectory(int siteItemId, string vdirName, string vdirPath, string aspNetVersion) - { - object[] results = this.Invoke("AddVirtualDirectory", new object[] { + } + + private void OnAddWebSiteOperationCompleted(object arg) { + if ((this.AddWebSiteCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.AddWebSiteCompleted(this, new AddWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddVirtualDirectory", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddVirtualDirectory(int siteItemId, string vdirName, string vdirPath, string aspNetVersion) { + object[] results = this.Invoke("AddVirtualDirectory", new object[] { siteItemId, vdirName, vdirPath, aspNetVersion}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginAddVirtualDirectory(int siteItemId, string vdirName, string vdirPath, string aspNetVersion, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("AddVirtualDirectory", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginAddVirtualDirectory(int siteItemId, string vdirName, string vdirPath, string aspNetVersion, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("AddVirtualDirectory", new object[] { siteItemId, vdirName, vdirPath, aspNetVersion}, callback, asyncState); - } - - /// - public int EndAddVirtualDirectory(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void AddVirtualDirectoryAsync(int siteItemId, string vdirName, string vdirPath, string aspNetVersion) - { - this.AddVirtualDirectoryAsync(siteItemId, vdirName, vdirPath, aspNetVersion, null); - } - - /// - public void AddVirtualDirectoryAsync(int siteItemId, string vdirName, string vdirPath, string aspNetVersion, object userState) - { - if ((this.AddVirtualDirectoryOperationCompleted == null)) - { - this.AddVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddVirtualDirectoryOperationCompleted); - } - this.InvokeAsync("AddVirtualDirectory", new object[] { + } + + /// + public int EndAddVirtualDirectory(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void AddVirtualDirectoryAsync(int siteItemId, string vdirName, string vdirPath, string aspNetVersion) { + this.AddVirtualDirectoryAsync(siteItemId, vdirName, vdirPath, aspNetVersion, null); + } + + /// + public void AddVirtualDirectoryAsync(int siteItemId, string vdirName, string vdirPath, string aspNetVersion, object userState) { + if ((this.AddVirtualDirectoryOperationCompleted == null)) { + this.AddVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddVirtualDirectoryOperationCompleted); + } + this.InvokeAsync("AddVirtualDirectory", new object[] { siteItemId, vdirName, vdirPath, aspNetVersion}, this.AddVirtualDirectoryOperationCompleted, userState); - } - - private void OnAddVirtualDirectoryOperationCompleted(object arg) - { - if ((this.AddVirtualDirectoryCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.AddVirtualDirectoryCompleted(this, new AddVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateWebSite", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateWebSite(WebSite site) - { - object[] results = this.Invoke("UpdateWebSite", new object[] { + } + + private void OnAddVirtualDirectoryOperationCompleted(object arg) { + if ((this.AddVirtualDirectoryCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.AddVirtualDirectoryCompleted(this, new AddVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateWebSite", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateWebSite(WebSite site) { + object[] results = this.Invoke("UpdateWebSite", new object[] { site}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateWebSite(WebSite site, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateWebSite", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateWebSite(WebSite site, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateWebSite", new object[] { site}, callback, asyncState); - } - - /// - public int EndUpdateWebSite(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateWebSiteAsync(WebSite site) - { - this.UpdateWebSiteAsync(site, null); - } - - /// - public void UpdateWebSiteAsync(WebSite site, object userState) - { - if ((this.UpdateWebSiteOperationCompleted == null)) - { - this.UpdateWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateWebSiteOperationCompleted); - } - this.InvokeAsync("UpdateWebSite", new object[] { + } + + /// + public int EndUpdateWebSite(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateWebSiteAsync(WebSite site) { + this.UpdateWebSiteAsync(site, null); + } + + /// + public void UpdateWebSiteAsync(WebSite site, object userState) { + if ((this.UpdateWebSiteOperationCompleted == null)) { + this.UpdateWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateWebSiteOperationCompleted); + } + this.InvokeAsync("UpdateWebSite", new object[] { site}, this.UpdateWebSiteOperationCompleted, userState); - } - - private void OnUpdateWebSiteOperationCompleted(object arg) - { - if ((this.UpdateWebSiteCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateWebSiteCompleted(this, new UpdateWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallFrontPage", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int InstallFrontPage(int siteItemId, string username, string password) - { - object[] results = this.Invoke("InstallFrontPage", new object[] { + } + + private void OnUpdateWebSiteOperationCompleted(object arg) { + if ((this.UpdateWebSiteCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateWebSiteCompleted(this, new UpdateWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallFrontPage", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int InstallFrontPage(int siteItemId, string username, string password) { + object[] results = this.Invoke("InstallFrontPage", new object[] { siteItemId, username, password}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginInstallFrontPage(int siteItemId, string username, string password, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("InstallFrontPage", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginInstallFrontPage(int siteItemId, string username, string password, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("InstallFrontPage", new object[] { siteItemId, username, password}, callback, asyncState); - } - - /// - public int EndInstallFrontPage(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void InstallFrontPageAsync(int siteItemId, string username, string password) - { - this.InstallFrontPageAsync(siteItemId, username, password, null); - } - - /// - public void InstallFrontPageAsync(int siteItemId, string username, string password, object userState) - { - if ((this.InstallFrontPageOperationCompleted == null)) - { - this.InstallFrontPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallFrontPageOperationCompleted); - } - this.InvokeAsync("InstallFrontPage", new object[] { + } + + /// + public int EndInstallFrontPage(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void InstallFrontPageAsync(int siteItemId, string username, string password) { + this.InstallFrontPageAsync(siteItemId, username, password, null); + } + + /// + public void InstallFrontPageAsync(int siteItemId, string username, string password, object userState) { + if ((this.InstallFrontPageOperationCompleted == null)) { + this.InstallFrontPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallFrontPageOperationCompleted); + } + this.InvokeAsync("InstallFrontPage", new object[] { siteItemId, username, password}, this.InstallFrontPageOperationCompleted, userState); - } - - private void OnInstallFrontPageOperationCompleted(object arg) - { - if ((this.InstallFrontPageCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.InstallFrontPageCompleted(this, new InstallFrontPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UninstallFrontPage", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UninstallFrontPage(int siteItemId) - { - object[] results = this.Invoke("UninstallFrontPage", new object[] { + } + + private void OnInstallFrontPageOperationCompleted(object arg) { + if ((this.InstallFrontPageCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.InstallFrontPageCompleted(this, new InstallFrontPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UninstallFrontPage", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UninstallFrontPage(int siteItemId) { + object[] results = this.Invoke("UninstallFrontPage", new object[] { siteItemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUninstallFrontPage(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UninstallFrontPage", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUninstallFrontPage(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UninstallFrontPage", new object[] { siteItemId}, callback, asyncState); - } - - /// - public int EndUninstallFrontPage(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UninstallFrontPageAsync(int siteItemId) - { - this.UninstallFrontPageAsync(siteItemId, null); - } - - /// - public void UninstallFrontPageAsync(int siteItemId, object userState) - { - if ((this.UninstallFrontPageOperationCompleted == null)) - { - this.UninstallFrontPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUninstallFrontPageOperationCompleted); - } - this.InvokeAsync("UninstallFrontPage", new object[] { + } + + /// + public int EndUninstallFrontPage(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UninstallFrontPageAsync(int siteItemId) { + this.UninstallFrontPageAsync(siteItemId, null); + } + + /// + public void UninstallFrontPageAsync(int siteItemId, object userState) { + if ((this.UninstallFrontPageOperationCompleted == null)) { + this.UninstallFrontPageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUninstallFrontPageOperationCompleted); + } + this.InvokeAsync("UninstallFrontPage", new object[] { siteItemId}, this.UninstallFrontPageOperationCompleted, userState); - } - - private void OnUninstallFrontPageOperationCompleted(object arg) - { - if ((this.UninstallFrontPageCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UninstallFrontPageCompleted(this, new UninstallFrontPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeFrontPagePassword", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int ChangeFrontPagePassword(int siteItemId, string password) - { - object[] results = this.Invoke("ChangeFrontPagePassword", new object[] { + } + + private void OnUninstallFrontPageOperationCompleted(object arg) { + if ((this.UninstallFrontPageCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UninstallFrontPageCompleted(this, new UninstallFrontPageCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeFrontPagePassword", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int ChangeFrontPagePassword(int siteItemId, string password) { + object[] results = this.Invoke("ChangeFrontPagePassword", new object[] { siteItemId, password}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginChangeFrontPagePassword(int siteItemId, string password, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("ChangeFrontPagePassword", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginChangeFrontPagePassword(int siteItemId, string password, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("ChangeFrontPagePassword", new object[] { siteItemId, password}, callback, asyncState); - } - - /// - public int EndChangeFrontPagePassword(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void ChangeFrontPagePasswordAsync(int siteItemId, string password) - { - this.ChangeFrontPagePasswordAsync(siteItemId, password, null); - } - - /// - public void ChangeFrontPagePasswordAsync(int siteItemId, string password, object userState) - { - if ((this.ChangeFrontPagePasswordOperationCompleted == null)) - { - this.ChangeFrontPagePasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeFrontPagePasswordOperationCompleted); - } - this.InvokeAsync("ChangeFrontPagePassword", new object[] { + } + + /// + public int EndChangeFrontPagePassword(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void ChangeFrontPagePasswordAsync(int siteItemId, string password) { + this.ChangeFrontPagePasswordAsync(siteItemId, password, null); + } + + /// + public void ChangeFrontPagePasswordAsync(int siteItemId, string password, object userState) { + if ((this.ChangeFrontPagePasswordOperationCompleted == null)) { + this.ChangeFrontPagePasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeFrontPagePasswordOperationCompleted); + } + this.InvokeAsync("ChangeFrontPagePassword", new object[] { siteItemId, password}, this.ChangeFrontPagePasswordOperationCompleted, userState); - } - - private void OnChangeFrontPagePasswordOperationCompleted(object arg) - { - if ((this.ChangeFrontPagePasswordCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.ChangeFrontPagePasswordCompleted(this, new ChangeFrontPagePasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RepairWebSite", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int RepairWebSite(int siteItemId) - { - object[] results = this.Invoke("RepairWebSite", new object[] { + } + + private void OnChangeFrontPagePasswordOperationCompleted(object arg) { + if ((this.ChangeFrontPagePasswordCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.ChangeFrontPagePasswordCompleted(this, new ChangeFrontPagePasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RepairWebSite", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int RepairWebSite(int siteItemId) { + object[] results = this.Invoke("RepairWebSite", new object[] { siteItemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginRepairWebSite(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("RepairWebSite", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginRepairWebSite(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("RepairWebSite", new object[] { siteItemId}, callback, asyncState); - } - - /// - public int EndRepairWebSite(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void RepairWebSiteAsync(int siteItemId) - { - this.RepairWebSiteAsync(siteItemId, null); - } - - /// - public void RepairWebSiteAsync(int siteItemId, object userState) - { - if ((this.RepairWebSiteOperationCompleted == null)) - { - this.RepairWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRepairWebSiteOperationCompleted); - } - this.InvokeAsync("RepairWebSite", new object[] { + } + + /// + public int EndRepairWebSite(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void RepairWebSiteAsync(int siteItemId) { + this.RepairWebSiteAsync(siteItemId, null); + } + + /// + public void RepairWebSiteAsync(int siteItemId, object userState) { + if ((this.RepairWebSiteOperationCompleted == null)) { + this.RepairWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRepairWebSiteOperationCompleted); + } + this.InvokeAsync("RepairWebSite", new object[] { siteItemId}, this.RepairWebSiteOperationCompleted, userState); - } - - private void OnRepairWebSiteOperationCompleted(object arg) - { - if ((this.RepairWebSiteCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.RepairWebSiteCompleted(this, new RepairWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateVirtualDirectory", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateVirtualDirectory(int siteItemId, WebVirtualDirectory vdir) - { - object[] results = this.Invoke("UpdateVirtualDirectory", new object[] { + } + + private void OnRepairWebSiteOperationCompleted(object arg) { + if ((this.RepairWebSiteCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.RepairWebSiteCompleted(this, new RepairWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateVirtualDirectory", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateVirtualDirectory(int siteItemId, WebVirtualDirectory vdir) { + object[] results = this.Invoke("UpdateVirtualDirectory", new object[] { siteItemId, vdir}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateVirtualDirectory(int siteItemId, WebVirtualDirectory vdir, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateVirtualDirectory", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateVirtualDirectory(int siteItemId, WebVirtualDirectory vdir, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateVirtualDirectory", new object[] { siteItemId, vdir}, callback, asyncState); - } - - /// - public int EndUpdateVirtualDirectory(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateVirtualDirectoryAsync(int siteItemId, WebVirtualDirectory vdir) - { - this.UpdateVirtualDirectoryAsync(siteItemId, vdir, null); - } - - /// - public void UpdateVirtualDirectoryAsync(int siteItemId, WebVirtualDirectory vdir, object userState) - { - if ((this.UpdateVirtualDirectoryOperationCompleted == null)) - { - this.UpdateVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateVirtualDirectoryOperationCompleted); - } - this.InvokeAsync("UpdateVirtualDirectory", new object[] { + } + + /// + public int EndUpdateVirtualDirectory(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateVirtualDirectoryAsync(int siteItemId, WebVirtualDirectory vdir) { + this.UpdateVirtualDirectoryAsync(siteItemId, vdir, null); + } + + /// + public void UpdateVirtualDirectoryAsync(int siteItemId, WebVirtualDirectory vdir, object userState) { + if ((this.UpdateVirtualDirectoryOperationCompleted == null)) { + this.UpdateVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateVirtualDirectoryOperationCompleted); + } + this.InvokeAsync("UpdateVirtualDirectory", new object[] { siteItemId, vdir}, this.UpdateVirtualDirectoryOperationCompleted, userState); - } - - private void OnUpdateVirtualDirectoryOperationCompleted(object arg) - { - if ((this.UpdateVirtualDirectoryCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateVirtualDirectoryCompleted(this, new UpdateVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteWebSite", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteWebSite(int siteItemId) - { - object[] results = this.Invoke("DeleteWebSite", new object[] { + } + + private void OnUpdateVirtualDirectoryOperationCompleted(object arg) { + if ((this.UpdateVirtualDirectoryCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateVirtualDirectoryCompleted(this, new UpdateVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteWebSite", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteWebSite(int siteItemId) { + object[] results = this.Invoke("DeleteWebSite", new object[] { siteItemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteWebSite(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteWebSite", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteWebSite(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteWebSite", new object[] { siteItemId}, callback, asyncState); - } - - /// - public int EndDeleteWebSite(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteWebSiteAsync(int siteItemId) - { - this.DeleteWebSiteAsync(siteItemId, null); - } - - /// - public void DeleteWebSiteAsync(int siteItemId, object userState) - { - if ((this.DeleteWebSiteOperationCompleted == null)) - { - this.DeleteWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteWebSiteOperationCompleted); - } - this.InvokeAsync("DeleteWebSite", new object[] { + } + + /// + public int EndDeleteWebSite(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteWebSiteAsync(int siteItemId) { + this.DeleteWebSiteAsync(siteItemId, null); + } + + /// + public void DeleteWebSiteAsync(int siteItemId, object userState) { + if ((this.DeleteWebSiteOperationCompleted == null)) { + this.DeleteWebSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteWebSiteOperationCompleted); + } + this.InvokeAsync("DeleteWebSite", new object[] { siteItemId}, this.DeleteWebSiteOperationCompleted, userState); - } - - private void OnDeleteWebSiteOperationCompleted(object arg) - { - if ((this.DeleteWebSiteCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteWebSiteCompleted(this, new DeleteWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteVirtualDirectory", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteVirtualDirectory(int siteItemId, string vdirName) - { - object[] results = this.Invoke("DeleteVirtualDirectory", new object[] { + } + + private void OnDeleteWebSiteOperationCompleted(object arg) { + if ((this.DeleteWebSiteCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteWebSiteCompleted(this, new DeleteWebSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteVirtualDirectory", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteVirtualDirectory(int siteItemId, string vdirName) { + object[] results = this.Invoke("DeleteVirtualDirectory", new object[] { siteItemId, vdirName}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteVirtualDirectory(int siteItemId, string vdirName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteVirtualDirectory", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteVirtualDirectory(int siteItemId, string vdirName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteVirtualDirectory", new object[] { siteItemId, vdirName}, callback, asyncState); - } - - /// - public int EndDeleteVirtualDirectory(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteVirtualDirectoryAsync(int siteItemId, string vdirName) - { - this.DeleteVirtualDirectoryAsync(siteItemId, vdirName, null); - } - - /// - public void DeleteVirtualDirectoryAsync(int siteItemId, string vdirName, object userState) - { - if ((this.DeleteVirtualDirectoryOperationCompleted == null)) - { - this.DeleteVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteVirtualDirectoryOperationCompleted); - } - this.InvokeAsync("DeleteVirtualDirectory", new object[] { + } + + /// + public int EndDeleteVirtualDirectory(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteVirtualDirectoryAsync(int siteItemId, string vdirName) { + this.DeleteVirtualDirectoryAsync(siteItemId, vdirName, null); + } + + /// + public void DeleteVirtualDirectoryAsync(int siteItemId, string vdirName, object userState) { + if ((this.DeleteVirtualDirectoryOperationCompleted == null)) { + this.DeleteVirtualDirectoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteVirtualDirectoryOperationCompleted); + } + this.InvokeAsync("DeleteVirtualDirectory", new object[] { siteItemId, vdirName}, this.DeleteVirtualDirectoryOperationCompleted, userState); - } - - private void OnDeleteVirtualDirectoryOperationCompleted(object arg) - { - if ((this.DeleteVirtualDirectoryCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteVirtualDirectoryCompleted(this, new DeleteVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeSiteState", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int ChangeSiteState(int siteItemId, ServerState state) - { - object[] results = this.Invoke("ChangeSiteState", new object[] { + } + + private void OnDeleteVirtualDirectoryOperationCompleted(object arg) { + if ((this.DeleteVirtualDirectoryCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteVirtualDirectoryCompleted(this, new DeleteVirtualDirectoryCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeSiteState", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int ChangeSiteState(int siteItemId, ServerState state) { + object[] results = this.Invoke("ChangeSiteState", new object[] { siteItemId, state}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginChangeSiteState(int siteItemId, ServerState state, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("ChangeSiteState", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginChangeSiteState(int siteItemId, ServerState state, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("ChangeSiteState", new object[] { siteItemId, state}, callback, asyncState); - } - - /// - public int EndChangeSiteState(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void ChangeSiteStateAsync(int siteItemId, ServerState state) - { - this.ChangeSiteStateAsync(siteItemId, state, null); - } - - /// - public void ChangeSiteStateAsync(int siteItemId, ServerState state, object userState) - { - if ((this.ChangeSiteStateOperationCompleted == null)) - { - this.ChangeSiteStateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeSiteStateOperationCompleted); - } - this.InvokeAsync("ChangeSiteState", new object[] { + } + + /// + public int EndChangeSiteState(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void ChangeSiteStateAsync(int siteItemId, ServerState state) { + this.ChangeSiteStateAsync(siteItemId, state, null); + } + + /// + public void ChangeSiteStateAsync(int siteItemId, ServerState state, object userState) { + if ((this.ChangeSiteStateOperationCompleted == null)) { + this.ChangeSiteStateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeSiteStateOperationCompleted); + } + this.InvokeAsync("ChangeSiteState", new object[] { siteItemId, state}, this.ChangeSiteStateOperationCompleted, userState); - } - - private void OnChangeSiteStateOperationCompleted(object arg) - { - if ((this.ChangeSiteStateCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.ChangeSiteStateCompleted(this, new ChangeSiteStateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSharedSSLDomains", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public string[] GetSharedSSLDomains(int packageId) - { - object[] results = this.Invoke("GetSharedSSLDomains", new object[] { + } + + private void OnChangeSiteStateOperationCompleted(object arg) { + if ((this.ChangeSiteStateCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.ChangeSiteStateCompleted(this, new ChangeSiteStateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSharedSSLDomains", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public string[] GetSharedSSLDomains(int packageId) { + object[] results = this.Invoke("GetSharedSSLDomains", new object[] { packageId}); - return ((string[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetSharedSSLDomains(int packageId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSharedSSLDomains", new object[] { + return ((string[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetSharedSSLDomains(int packageId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSharedSSLDomains", new object[] { packageId}, callback, asyncState); - } - - /// - public string[] EndGetSharedSSLDomains(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((string[])(results[0])); - } - - /// - public void GetSharedSSLDomainsAsync(int packageId) - { - this.GetSharedSSLDomainsAsync(packageId, null); - } - - /// - public void GetSharedSSLDomainsAsync(int packageId, object userState) - { - if ((this.GetSharedSSLDomainsOperationCompleted == null)) - { - this.GetSharedSSLDomainsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSharedSSLDomainsOperationCompleted); - } - this.InvokeAsync("GetSharedSSLDomains", new object[] { + } + + /// + public string[] EndGetSharedSSLDomains(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((string[])(results[0])); + } + + /// + public void GetSharedSSLDomainsAsync(int packageId) { + this.GetSharedSSLDomainsAsync(packageId, null); + } + + /// + public void GetSharedSSLDomainsAsync(int packageId, object userState) { + if ((this.GetSharedSSLDomainsOperationCompleted == null)) { + this.GetSharedSSLDomainsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSharedSSLDomainsOperationCompleted); + } + this.InvokeAsync("GetSharedSSLDomains", new object[] { packageId}, this.GetSharedSSLDomainsOperationCompleted, userState); - } - - private void OnGetSharedSSLDomainsOperationCompleted(object arg) - { - if ((this.GetSharedSSLDomainsCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSharedSSLDomainsCompleted(this, new GetSharedSSLDomainsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawSSLFoldersPaged", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public System.Data.DataSet GetRawSSLFoldersPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { - object[] results = this.Invoke("GetRawSSLFoldersPaged", new object[] { + } + + private void OnGetSharedSSLDomainsOperationCompleted(object arg) { + if ((this.GetSharedSSLDomainsCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSharedSSLDomainsCompleted(this, new GetSharedSSLDomainsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetRawSSLFoldersPaged", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public System.Data.DataSet GetRawSSLFoldersPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { + object[] results = this.Invoke("GetRawSSLFoldersPaged", new object[] { packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows}); - return ((System.Data.DataSet)(results[0])); - } - - /// - public System.IAsyncResult BeginGetRawSSLFoldersPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetRawSSLFoldersPaged", new object[] { + return ((System.Data.DataSet)(results[0])); + } + + /// + public System.IAsyncResult BeginGetRawSSLFoldersPaged(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetRawSSLFoldersPaged", new object[] { packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows}, callback, asyncState); - } - - /// - public System.Data.DataSet EndGetRawSSLFoldersPaged(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((System.Data.DataSet)(results[0])); - } - - /// - public void GetRawSSLFoldersPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) - { - this.GetRawSSLFoldersPagedAsync(packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows, null); - } - - /// - public void GetRawSSLFoldersPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) - { - if ((this.GetRawSSLFoldersPagedOperationCompleted == null)) - { - this.GetRawSSLFoldersPagedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawSSLFoldersPagedOperationCompleted); - } - this.InvokeAsync("GetRawSSLFoldersPaged", new object[] { + } + + /// + public System.Data.DataSet EndGetRawSSLFoldersPaged(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((System.Data.DataSet)(results[0])); + } + + /// + public void GetRawSSLFoldersPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows) { + this.GetRawSSLFoldersPagedAsync(packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows, null); + } + + /// + public void GetRawSSLFoldersPagedAsync(int packageId, string filterColumn, string filterValue, string sortColumn, int startRow, int maximumRows, object userState) { + if ((this.GetRawSSLFoldersPagedOperationCompleted == null)) { + this.GetRawSSLFoldersPagedOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRawSSLFoldersPagedOperationCompleted); + } + this.InvokeAsync("GetRawSSLFoldersPaged", new object[] { packageId, filterColumn, filterValue, sortColumn, startRow, maximumRows}, this.GetRawSSLFoldersPagedOperationCompleted, userState); - } - - private void OnGetRawSSLFoldersPagedOperationCompleted(object arg) - { - if ((this.GetRawSSLFoldersPagedCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetRawSSLFoldersPagedCompleted(this, new GetRawSSLFoldersPagedCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSharedSSLFolders", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SharedSSLFolder[] GetSharedSSLFolders(int packageId, bool recursive) - { - object[] results = this.Invoke("GetSharedSSLFolders", new object[] { + } + + private void OnGetRawSSLFoldersPagedOperationCompleted(object arg) { + if ((this.GetRawSSLFoldersPagedCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetRawSSLFoldersPagedCompleted(this, new GetRawSSLFoldersPagedCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSharedSSLFolders", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SharedSSLFolder[] GetSharedSSLFolders(int packageId, bool recursive) { + object[] results = this.Invoke("GetSharedSSLFolders", new object[] { packageId, recursive}); - return ((SharedSSLFolder[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetSharedSSLFolders(int packageId, bool recursive, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSharedSSLFolders", new object[] { + return ((SharedSSLFolder[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetSharedSSLFolders(int packageId, bool recursive, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSharedSSLFolders", new object[] { packageId, recursive}, callback, asyncState); - } - - /// - public SharedSSLFolder[] EndGetSharedSSLFolders(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((SharedSSLFolder[])(results[0])); - } - - /// - public void GetSharedSSLFoldersAsync(int packageId, bool recursive) - { - this.GetSharedSSLFoldersAsync(packageId, recursive, null); - } - - /// - public void GetSharedSSLFoldersAsync(int packageId, bool recursive, object userState) - { - if ((this.GetSharedSSLFoldersOperationCompleted == null)) - { - this.GetSharedSSLFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSharedSSLFoldersOperationCompleted); - } - this.InvokeAsync("GetSharedSSLFolders", new object[] { + } + + /// + public SharedSSLFolder[] EndGetSharedSSLFolders(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((SharedSSLFolder[])(results[0])); + } + + /// + public void GetSharedSSLFoldersAsync(int packageId, bool recursive) { + this.GetSharedSSLFoldersAsync(packageId, recursive, null); + } + + /// + public void GetSharedSSLFoldersAsync(int packageId, bool recursive, object userState) { + if ((this.GetSharedSSLFoldersOperationCompleted == null)) { + this.GetSharedSSLFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSharedSSLFoldersOperationCompleted); + } + this.InvokeAsync("GetSharedSSLFolders", new object[] { packageId, recursive}, this.GetSharedSSLFoldersOperationCompleted, userState); - } - - private void OnGetSharedSSLFoldersOperationCompleted(object arg) - { - if ((this.GetSharedSSLFoldersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSharedSSLFoldersCompleted(this, new GetSharedSSLFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSharedSSLFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SharedSSLFolder GetSharedSSLFolder(int itemId) - { - object[] results = this.Invoke("GetSharedSSLFolder", new object[] { + } + + private void OnGetSharedSSLFoldersOperationCompleted(object arg) { + if ((this.GetSharedSSLFoldersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSharedSSLFoldersCompleted(this, new GetSharedSSLFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSharedSSLFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SharedSSLFolder GetSharedSSLFolder(int itemId) { + object[] results = this.Invoke("GetSharedSSLFolder", new object[] { itemId}); - return ((SharedSSLFolder)(results[0])); - } - - /// - public System.IAsyncResult BeginGetSharedSSLFolder(int itemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSharedSSLFolder", new object[] { + return ((SharedSSLFolder)(results[0])); + } + + /// + public System.IAsyncResult BeginGetSharedSSLFolder(int itemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSharedSSLFolder", new object[] { itemId}, callback, asyncState); - } - - /// - public SharedSSLFolder EndGetSharedSSLFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((SharedSSLFolder)(results[0])); - } - - /// - public void GetSharedSSLFolderAsync(int itemId) - { - this.GetSharedSSLFolderAsync(itemId, null); - } - - /// - public void GetSharedSSLFolderAsync(int itemId, object userState) - { - if ((this.GetSharedSSLFolderOperationCompleted == null)) - { - this.GetSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSharedSSLFolderOperationCompleted); - } - this.InvokeAsync("GetSharedSSLFolder", new object[] { + } + + /// + public SharedSSLFolder EndGetSharedSSLFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((SharedSSLFolder)(results[0])); + } + + /// + public void GetSharedSSLFolderAsync(int itemId) { + this.GetSharedSSLFolderAsync(itemId, null); + } + + /// + public void GetSharedSSLFolderAsync(int itemId, object userState) { + if ((this.GetSharedSSLFolderOperationCompleted == null)) { + this.GetSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSharedSSLFolderOperationCompleted); + } + this.InvokeAsync("GetSharedSSLFolder", new object[] { itemId}, this.GetSharedSSLFolderOperationCompleted, userState); - } - - private void OnGetSharedSSLFolderOperationCompleted(object arg) - { - if ((this.GetSharedSSLFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSharedSSLFolderCompleted(this, new GetSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddSharedSSLFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int AddSharedSSLFolder(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath) - { - object[] results = this.Invoke("AddSharedSSLFolder", new object[] { + } + + private void OnGetSharedSSLFolderOperationCompleted(object arg) { + if ((this.GetSharedSSLFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSharedSSLFolderCompleted(this, new GetSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/AddSharedSSLFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int AddSharedSSLFolder(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath) { + object[] results = this.Invoke("AddSharedSSLFolder", new object[] { packageId, sslDomain, siteId, vdirName, vdirPath}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginAddSharedSSLFolder(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("AddSharedSSLFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginAddSharedSSLFolder(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("AddSharedSSLFolder", new object[] { packageId, sslDomain, siteId, vdirName, vdirPath}, callback, asyncState); - } - - /// - public int EndAddSharedSSLFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void AddSharedSSLFolderAsync(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath) - { - this.AddSharedSSLFolderAsync(packageId, sslDomain, siteId, vdirName, vdirPath, null); - } - - /// - public void AddSharedSSLFolderAsync(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath, object userState) - { - if ((this.AddSharedSSLFolderOperationCompleted == null)) - { - this.AddSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddSharedSSLFolderOperationCompleted); - } - this.InvokeAsync("AddSharedSSLFolder", new object[] { + } + + /// + public int EndAddSharedSSLFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void AddSharedSSLFolderAsync(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath) { + this.AddSharedSSLFolderAsync(packageId, sslDomain, siteId, vdirName, vdirPath, null); + } + + /// + public void AddSharedSSLFolderAsync(int packageId, string sslDomain, int siteId, string vdirName, string vdirPath, object userState) { + if ((this.AddSharedSSLFolderOperationCompleted == null)) { + this.AddSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddSharedSSLFolderOperationCompleted); + } + this.InvokeAsync("AddSharedSSLFolder", new object[] { packageId, sslDomain, siteId, vdirName, vdirPath}, this.AddSharedSSLFolderOperationCompleted, userState); - } - - private void OnAddSharedSSLFolderOperationCompleted(object arg) - { - if ((this.AddSharedSSLFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.AddSharedSSLFolderCompleted(this, new AddSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSharedSSLFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateSharedSSLFolder(SharedSSLFolder vdir) - { - object[] results = this.Invoke("UpdateSharedSSLFolder", new object[] { + } + + private void OnAddSharedSSLFolderOperationCompleted(object arg) { + if ((this.AddSharedSSLFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.AddSharedSSLFolderCompleted(this, new AddSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSharedSSLFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateSharedSSLFolder(SharedSSLFolder vdir) { + object[] results = this.Invoke("UpdateSharedSSLFolder", new object[] { vdir}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateSharedSSLFolder(SharedSSLFolder vdir, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateSharedSSLFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateSharedSSLFolder(SharedSSLFolder vdir, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateSharedSSLFolder", new object[] { vdir}, callback, asyncState); - } - - /// - public int EndUpdateSharedSSLFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateSharedSSLFolderAsync(SharedSSLFolder vdir) - { - this.UpdateSharedSSLFolderAsync(vdir, null); - } - - /// - public void UpdateSharedSSLFolderAsync(SharedSSLFolder vdir, object userState) - { - if ((this.UpdateSharedSSLFolderOperationCompleted == null)) - { - this.UpdateSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSharedSSLFolderOperationCompleted); - } - this.InvokeAsync("UpdateSharedSSLFolder", new object[] { + } + + /// + public int EndUpdateSharedSSLFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateSharedSSLFolderAsync(SharedSSLFolder vdir) { + this.UpdateSharedSSLFolderAsync(vdir, null); + } + + /// + public void UpdateSharedSSLFolderAsync(SharedSSLFolder vdir, object userState) { + if ((this.UpdateSharedSSLFolderOperationCompleted == null)) { + this.UpdateSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSharedSSLFolderOperationCompleted); + } + this.InvokeAsync("UpdateSharedSSLFolder", new object[] { vdir}, this.UpdateSharedSSLFolderOperationCompleted, userState); - } - - private void OnUpdateSharedSSLFolderOperationCompleted(object arg) - { - if ((this.UpdateSharedSSLFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateSharedSSLFolderCompleted(this, new UpdateSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSharedSSLFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteSharedSSLFolder(int itemId) - { - object[] results = this.Invoke("DeleteSharedSSLFolder", new object[] { + } + + private void OnUpdateSharedSSLFolderOperationCompleted(object arg) { + if ((this.UpdateSharedSSLFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateSharedSSLFolderCompleted(this, new UpdateSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSharedSSLFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteSharedSSLFolder(int itemId) { + object[] results = this.Invoke("DeleteSharedSSLFolder", new object[] { itemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteSharedSSLFolder(int itemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteSharedSSLFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteSharedSSLFolder(int itemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteSharedSSLFolder", new object[] { itemId}, callback, asyncState); - } - - /// - public int EndDeleteSharedSSLFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteSharedSSLFolderAsync(int itemId) - { - this.DeleteSharedSSLFolderAsync(itemId, null); - } - - /// - public void DeleteSharedSSLFolderAsync(int itemId, object userState) - { - if ((this.DeleteSharedSSLFolderOperationCompleted == null)) - { - this.DeleteSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSharedSSLFolderOperationCompleted); - } - this.InvokeAsync("DeleteSharedSSLFolder", new object[] { + } + + /// + public int EndDeleteSharedSSLFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteSharedSSLFolderAsync(int itemId) { + this.DeleteSharedSSLFolderAsync(itemId, null); + } + + /// + public void DeleteSharedSSLFolderAsync(int itemId, object userState) { + if ((this.DeleteSharedSSLFolderOperationCompleted == null)) { + this.DeleteSharedSSLFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSharedSSLFolderOperationCompleted); + } + this.InvokeAsync("DeleteSharedSSLFolder", new object[] { itemId}, this.DeleteSharedSSLFolderOperationCompleted, userState); - } - - private void OnDeleteSharedSSLFolderOperationCompleted(object arg) - { - if ((this.DeleteSharedSSLFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteSharedSSLFolderCompleted(this, new DeleteSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallSecuredFolders", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int InstallSecuredFolders(int siteItemId) - { - object[] results = this.Invoke("InstallSecuredFolders", new object[] { + } + + private void OnDeleteSharedSSLFolderOperationCompleted(object arg) { + if ((this.DeleteSharedSSLFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteSharedSSLFolderCompleted(this, new DeleteSharedSSLFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallSecuredFolders", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int InstallSecuredFolders(int siteItemId) { + object[] results = this.Invoke("InstallSecuredFolders", new object[] { siteItemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginInstallSecuredFolders(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("InstallSecuredFolders", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginInstallSecuredFolders(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("InstallSecuredFolders", new object[] { siteItemId}, callback, asyncState); - } - - /// - public int EndInstallSecuredFolders(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void InstallSecuredFoldersAsync(int siteItemId) - { - this.InstallSecuredFoldersAsync(siteItemId, null); - } - - /// - public void InstallSecuredFoldersAsync(int siteItemId, object userState) - { - if ((this.InstallSecuredFoldersOperationCompleted == null)) - { - this.InstallSecuredFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallSecuredFoldersOperationCompleted); - } - this.InvokeAsync("InstallSecuredFolders", new object[] { + } + + /// + public int EndInstallSecuredFolders(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void InstallSecuredFoldersAsync(int siteItemId) { + this.InstallSecuredFoldersAsync(siteItemId, null); + } + + /// + public void InstallSecuredFoldersAsync(int siteItemId, object userState) { + if ((this.InstallSecuredFoldersOperationCompleted == null)) { + this.InstallSecuredFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallSecuredFoldersOperationCompleted); + } + this.InvokeAsync("InstallSecuredFolders", new object[] { siteItemId}, this.InstallSecuredFoldersOperationCompleted, userState); - } - - private void OnInstallSecuredFoldersOperationCompleted(object arg) - { - if ((this.InstallSecuredFoldersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.InstallSecuredFoldersCompleted(this, new InstallSecuredFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UninstallSecuredFolders", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UninstallSecuredFolders(int siteItemId) - { - object[] results = this.Invoke("UninstallSecuredFolders", new object[] { + } + + private void OnInstallSecuredFoldersOperationCompleted(object arg) { + if ((this.InstallSecuredFoldersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.InstallSecuredFoldersCompleted(this, new InstallSecuredFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UninstallSecuredFolders", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UninstallSecuredFolders(int siteItemId) { + object[] results = this.Invoke("UninstallSecuredFolders", new object[] { siteItemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUninstallSecuredFolders(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UninstallSecuredFolders", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUninstallSecuredFolders(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UninstallSecuredFolders", new object[] { siteItemId}, callback, asyncState); - } - - /// - public int EndUninstallSecuredFolders(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UninstallSecuredFoldersAsync(int siteItemId) - { - this.UninstallSecuredFoldersAsync(siteItemId, null); - } - - /// - public void UninstallSecuredFoldersAsync(int siteItemId, object userState) - { - if ((this.UninstallSecuredFoldersOperationCompleted == null)) - { - this.UninstallSecuredFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUninstallSecuredFoldersOperationCompleted); - } - this.InvokeAsync("UninstallSecuredFolders", new object[] { + } + + /// + public int EndUninstallSecuredFolders(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UninstallSecuredFoldersAsync(int siteItemId) { + this.UninstallSecuredFoldersAsync(siteItemId, null); + } + + /// + public void UninstallSecuredFoldersAsync(int siteItemId, object userState) { + if ((this.UninstallSecuredFoldersOperationCompleted == null)) { + this.UninstallSecuredFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUninstallSecuredFoldersOperationCompleted); + } + this.InvokeAsync("UninstallSecuredFolders", new object[] { siteItemId}, this.UninstallSecuredFoldersOperationCompleted, userState); - } - - private void OnUninstallSecuredFoldersOperationCompleted(object arg) - { - if ((this.UninstallSecuredFoldersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UninstallSecuredFoldersCompleted(this, new UninstallSecuredFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredFolders", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebFolder[] GetSecuredFolders(int siteItemId) - { - object[] results = this.Invoke("GetSecuredFolders", new object[] { + } + + private void OnUninstallSecuredFoldersOperationCompleted(object arg) { + if ((this.UninstallSecuredFoldersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UninstallSecuredFoldersCompleted(this, new UninstallSecuredFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredFolders", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebFolder[] GetSecuredFolders(int siteItemId) { + object[] results = this.Invoke("GetSecuredFolders", new object[] { siteItemId}); - return ((WebFolder[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetSecuredFolders(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSecuredFolders", new object[] { + return ((WebFolder[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetSecuredFolders(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSecuredFolders", new object[] { siteItemId}, callback, asyncState); - } - - /// - public WebFolder[] EndGetSecuredFolders(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebFolder[])(results[0])); - } - - /// - public void GetSecuredFoldersAsync(int siteItemId) - { - this.GetSecuredFoldersAsync(siteItemId, null); - } - - /// - public void GetSecuredFoldersAsync(int siteItemId, object userState) - { - if ((this.GetSecuredFoldersOperationCompleted == null)) - { - this.GetSecuredFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredFoldersOperationCompleted); - } - this.InvokeAsync("GetSecuredFolders", new object[] { + } + + /// + public WebFolder[] EndGetSecuredFolders(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebFolder[])(results[0])); + } + + /// + public void GetSecuredFoldersAsync(int siteItemId) { + this.GetSecuredFoldersAsync(siteItemId, null); + } + + /// + public void GetSecuredFoldersAsync(int siteItemId, object userState) { + if ((this.GetSecuredFoldersOperationCompleted == null)) { + this.GetSecuredFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredFoldersOperationCompleted); + } + this.InvokeAsync("GetSecuredFolders", new object[] { siteItemId}, this.GetSecuredFoldersOperationCompleted, userState); - } - - private void OnGetSecuredFoldersOperationCompleted(object arg) - { - if ((this.GetSecuredFoldersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSecuredFoldersCompleted(this, new GetSecuredFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebFolder GetSecuredFolder(int siteItemId, string folderPath) - { - object[] results = this.Invoke("GetSecuredFolder", new object[] { + } + + private void OnGetSecuredFoldersOperationCompleted(object arg) { + if ((this.GetSecuredFoldersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSecuredFoldersCompleted(this, new GetSecuredFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebFolder GetSecuredFolder(int siteItemId, string folderPath) { + object[] results = this.Invoke("GetSecuredFolder", new object[] { siteItemId, folderPath}); - return ((WebFolder)(results[0])); - } - - /// - public System.IAsyncResult BeginGetSecuredFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSecuredFolder", new object[] { + return ((WebFolder)(results[0])); + } + + /// + public System.IAsyncResult BeginGetSecuredFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSecuredFolder", new object[] { siteItemId, folderPath}, callback, asyncState); - } - - /// - public WebFolder EndGetSecuredFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebFolder)(results[0])); - } - - /// - public void GetSecuredFolderAsync(int siteItemId, string folderPath) - { - this.GetSecuredFolderAsync(siteItemId, folderPath, null); - } - - /// - public void GetSecuredFolderAsync(int siteItemId, string folderPath, object userState) - { - if ((this.GetSecuredFolderOperationCompleted == null)) - { - this.GetSecuredFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredFolderOperationCompleted); - } - this.InvokeAsync("GetSecuredFolder", new object[] { + } + + /// + public WebFolder EndGetSecuredFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebFolder)(results[0])); + } + + /// + public void GetSecuredFolderAsync(int siteItemId, string folderPath) { + this.GetSecuredFolderAsync(siteItemId, folderPath, null); + } + + /// + public void GetSecuredFolderAsync(int siteItemId, string folderPath, object userState) { + if ((this.GetSecuredFolderOperationCompleted == null)) { + this.GetSecuredFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredFolderOperationCompleted); + } + this.InvokeAsync("GetSecuredFolder", new object[] { siteItemId, folderPath}, this.GetSecuredFolderOperationCompleted, userState); - } - - private void OnGetSecuredFolderOperationCompleted(object arg) - { - if ((this.GetSecuredFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSecuredFolderCompleted(this, new GetSecuredFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSecuredFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateSecuredFolder(int siteItemId, WebFolder folder) - { - object[] results = this.Invoke("UpdateSecuredFolder", new object[] { + } + + private void OnGetSecuredFolderOperationCompleted(object arg) { + if ((this.GetSecuredFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSecuredFolderCompleted(this, new GetSecuredFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSecuredFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateSecuredFolder(int siteItemId, WebFolder folder) { + object[] results = this.Invoke("UpdateSecuredFolder", new object[] { siteItemId, folder}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateSecuredFolder(int siteItemId, WebFolder folder, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateSecuredFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateSecuredFolder(int siteItemId, WebFolder folder, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateSecuredFolder", new object[] { siteItemId, folder}, callback, asyncState); - } - - /// - public int EndUpdateSecuredFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateSecuredFolderAsync(int siteItemId, WebFolder folder) - { - this.UpdateSecuredFolderAsync(siteItemId, folder, null); - } - - /// - public void UpdateSecuredFolderAsync(int siteItemId, WebFolder folder, object userState) - { - if ((this.UpdateSecuredFolderOperationCompleted == null)) - { - this.UpdateSecuredFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSecuredFolderOperationCompleted); - } - this.InvokeAsync("UpdateSecuredFolder", new object[] { + } + + /// + public int EndUpdateSecuredFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateSecuredFolderAsync(int siteItemId, WebFolder folder) { + this.UpdateSecuredFolderAsync(siteItemId, folder, null); + } + + /// + public void UpdateSecuredFolderAsync(int siteItemId, WebFolder folder, object userState) { + if ((this.UpdateSecuredFolderOperationCompleted == null)) { + this.UpdateSecuredFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSecuredFolderOperationCompleted); + } + this.InvokeAsync("UpdateSecuredFolder", new object[] { siteItemId, folder}, this.UpdateSecuredFolderOperationCompleted, userState); - } - - private void OnUpdateSecuredFolderOperationCompleted(object arg) - { - if ((this.UpdateSecuredFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateSecuredFolderCompleted(this, new UpdateSecuredFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSecuredFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteSecuredFolder(int siteItemId, string folderPath) - { - object[] results = this.Invoke("DeleteSecuredFolder", new object[] { + } + + private void OnUpdateSecuredFolderOperationCompleted(object arg) { + if ((this.UpdateSecuredFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateSecuredFolderCompleted(this, new UpdateSecuredFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSecuredFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteSecuredFolder(int siteItemId, string folderPath) { + object[] results = this.Invoke("DeleteSecuredFolder", new object[] { siteItemId, folderPath}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteSecuredFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteSecuredFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteSecuredFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteSecuredFolder", new object[] { siteItemId, folderPath}, callback, asyncState); - } - - /// - public int EndDeleteSecuredFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteSecuredFolderAsync(int siteItemId, string folderPath) - { - this.DeleteSecuredFolderAsync(siteItemId, folderPath, null); - } - - /// - public void DeleteSecuredFolderAsync(int siteItemId, string folderPath, object userState) - { - if ((this.DeleteSecuredFolderOperationCompleted == null)) - { - this.DeleteSecuredFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSecuredFolderOperationCompleted); - } - this.InvokeAsync("DeleteSecuredFolder", new object[] { + } + + /// + public int EndDeleteSecuredFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteSecuredFolderAsync(int siteItemId, string folderPath) { + this.DeleteSecuredFolderAsync(siteItemId, folderPath, null); + } + + /// + public void DeleteSecuredFolderAsync(int siteItemId, string folderPath, object userState) { + if ((this.DeleteSecuredFolderOperationCompleted == null)) { + this.DeleteSecuredFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSecuredFolderOperationCompleted); + } + this.InvokeAsync("DeleteSecuredFolder", new object[] { siteItemId, folderPath}, this.DeleteSecuredFolderOperationCompleted, userState); - } - - private void OnDeleteSecuredFolderOperationCompleted(object arg) - { - if ((this.DeleteSecuredFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteSecuredFolderCompleted(this, new DeleteSecuredFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredUsers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebUser[] GetSecuredUsers(int siteItemId) - { - object[] results = this.Invoke("GetSecuredUsers", new object[] { + } + + private void OnDeleteSecuredFolderOperationCompleted(object arg) { + if ((this.DeleteSecuredFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteSecuredFolderCompleted(this, new DeleteSecuredFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredUsers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebUser[] GetSecuredUsers(int siteItemId) { + object[] results = this.Invoke("GetSecuredUsers", new object[] { siteItemId}); - return ((WebUser[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetSecuredUsers(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSecuredUsers", new object[] { + return ((WebUser[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetSecuredUsers(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSecuredUsers", new object[] { siteItemId}, callback, asyncState); - } - - /// - public WebUser[] EndGetSecuredUsers(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebUser[])(results[0])); - } - - /// - public void GetSecuredUsersAsync(int siteItemId) - { - this.GetSecuredUsersAsync(siteItemId, null); - } - - /// - public void GetSecuredUsersAsync(int siteItemId, object userState) - { - if ((this.GetSecuredUsersOperationCompleted == null)) - { - this.GetSecuredUsersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredUsersOperationCompleted); - } - this.InvokeAsync("GetSecuredUsers", new object[] { + } + + /// + public WebUser[] EndGetSecuredUsers(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebUser[])(results[0])); + } + + /// + public void GetSecuredUsersAsync(int siteItemId) { + this.GetSecuredUsersAsync(siteItemId, null); + } + + /// + public void GetSecuredUsersAsync(int siteItemId, object userState) { + if ((this.GetSecuredUsersOperationCompleted == null)) { + this.GetSecuredUsersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredUsersOperationCompleted); + } + this.InvokeAsync("GetSecuredUsers", new object[] { siteItemId}, this.GetSecuredUsersOperationCompleted, userState); - } - - private void OnGetSecuredUsersOperationCompleted(object arg) - { - if ((this.GetSecuredUsersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSecuredUsersCompleted(this, new GetSecuredUsersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredUser", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebUser GetSecuredUser(int siteItemId, string userName) - { - object[] results = this.Invoke("GetSecuredUser", new object[] { + } + + private void OnGetSecuredUsersOperationCompleted(object arg) { + if ((this.GetSecuredUsersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSecuredUsersCompleted(this, new GetSecuredUsersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredUser", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebUser GetSecuredUser(int siteItemId, string userName) { + object[] results = this.Invoke("GetSecuredUser", new object[] { siteItemId, userName}); - return ((WebUser)(results[0])); - } - - /// - public System.IAsyncResult BeginGetSecuredUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSecuredUser", new object[] { + return ((WebUser)(results[0])); + } + + /// + public System.IAsyncResult BeginGetSecuredUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSecuredUser", new object[] { siteItemId, userName}, callback, asyncState); - } - - /// - public WebUser EndGetSecuredUser(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebUser)(results[0])); - } - - /// - public void GetSecuredUserAsync(int siteItemId, string userName) - { - this.GetSecuredUserAsync(siteItemId, userName, null); - } - - /// - public void GetSecuredUserAsync(int siteItemId, string userName, object userState) - { - if ((this.GetSecuredUserOperationCompleted == null)) - { - this.GetSecuredUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredUserOperationCompleted); - } - this.InvokeAsync("GetSecuredUser", new object[] { + } + + /// + public WebUser EndGetSecuredUser(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebUser)(results[0])); + } + + /// + public void GetSecuredUserAsync(int siteItemId, string userName) { + this.GetSecuredUserAsync(siteItemId, userName, null); + } + + /// + public void GetSecuredUserAsync(int siteItemId, string userName, object userState) { + if ((this.GetSecuredUserOperationCompleted == null)) { + this.GetSecuredUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredUserOperationCompleted); + } + this.InvokeAsync("GetSecuredUser", new object[] { siteItemId, userName}, this.GetSecuredUserOperationCompleted, userState); - } - - private void OnGetSecuredUserOperationCompleted(object arg) - { - if ((this.GetSecuredUserCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSecuredUserCompleted(this, new GetSecuredUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSecuredUser", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateSecuredUser(int siteItemId, WebUser user) - { - object[] results = this.Invoke("UpdateSecuredUser", new object[] { + } + + private void OnGetSecuredUserOperationCompleted(object arg) { + if ((this.GetSecuredUserCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSecuredUserCompleted(this, new GetSecuredUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSecuredUser", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateSecuredUser(int siteItemId, WebUser user) { + object[] results = this.Invoke("UpdateSecuredUser", new object[] { siteItemId, user}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateSecuredUser(int siteItemId, WebUser user, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateSecuredUser", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateSecuredUser(int siteItemId, WebUser user, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateSecuredUser", new object[] { siteItemId, user}, callback, asyncState); - } - - /// - public int EndUpdateSecuredUser(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateSecuredUserAsync(int siteItemId, WebUser user) - { - this.UpdateSecuredUserAsync(siteItemId, user, null); - } - - /// - public void UpdateSecuredUserAsync(int siteItemId, WebUser user, object userState) - { - if ((this.UpdateSecuredUserOperationCompleted == null)) - { - this.UpdateSecuredUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSecuredUserOperationCompleted); - } - this.InvokeAsync("UpdateSecuredUser", new object[] { + } + + /// + public int EndUpdateSecuredUser(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateSecuredUserAsync(int siteItemId, WebUser user) { + this.UpdateSecuredUserAsync(siteItemId, user, null); + } + + /// + public void UpdateSecuredUserAsync(int siteItemId, WebUser user, object userState) { + if ((this.UpdateSecuredUserOperationCompleted == null)) { + this.UpdateSecuredUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSecuredUserOperationCompleted); + } + this.InvokeAsync("UpdateSecuredUser", new object[] { siteItemId, user}, this.UpdateSecuredUserOperationCompleted, userState); - } - - private void OnUpdateSecuredUserOperationCompleted(object arg) - { - if ((this.UpdateSecuredUserCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateSecuredUserCompleted(this, new UpdateSecuredUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSecuredUser", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteSecuredUser(int siteItemId, string userName) - { - object[] results = this.Invoke("DeleteSecuredUser", new object[] { + } + + private void OnUpdateSecuredUserOperationCompleted(object arg) { + if ((this.UpdateSecuredUserCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateSecuredUserCompleted(this, new UpdateSecuredUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSecuredUser", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteSecuredUser(int siteItemId, string userName) { + object[] results = this.Invoke("DeleteSecuredUser", new object[] { siteItemId, userName}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteSecuredUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteSecuredUser", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteSecuredUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteSecuredUser", new object[] { siteItemId, userName}, callback, asyncState); - } - - /// - public int EndDeleteSecuredUser(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteSecuredUserAsync(int siteItemId, string userName) - { - this.DeleteSecuredUserAsync(siteItemId, userName, null); - } - - /// - public void DeleteSecuredUserAsync(int siteItemId, string userName, object userState) - { - if ((this.DeleteSecuredUserOperationCompleted == null)) - { - this.DeleteSecuredUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSecuredUserOperationCompleted); - } - this.InvokeAsync("DeleteSecuredUser", new object[] { + } + + /// + public int EndDeleteSecuredUser(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteSecuredUserAsync(int siteItemId, string userName) { + this.DeleteSecuredUserAsync(siteItemId, userName, null); + } + + /// + public void DeleteSecuredUserAsync(int siteItemId, string userName, object userState) { + if ((this.DeleteSecuredUserOperationCompleted == null)) { + this.DeleteSecuredUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSecuredUserOperationCompleted); + } + this.InvokeAsync("DeleteSecuredUser", new object[] { siteItemId, userName}, this.DeleteSecuredUserOperationCompleted, userState); - } - - private void OnDeleteSecuredUserOperationCompleted(object arg) - { - if ((this.DeleteSecuredUserCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteSecuredUserCompleted(this, new DeleteSecuredUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredGroups", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebGroup[] GetSecuredGroups(int siteItemId) - { - object[] results = this.Invoke("GetSecuredGroups", new object[] { + } + + private void OnDeleteSecuredUserOperationCompleted(object arg) { + if ((this.DeleteSecuredUserCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteSecuredUserCompleted(this, new DeleteSecuredUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredGroups", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebGroup[] GetSecuredGroups(int siteItemId) { + object[] results = this.Invoke("GetSecuredGroups", new object[] { siteItemId}); - return ((WebGroup[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetSecuredGroups(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSecuredGroups", new object[] { + return ((WebGroup[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetSecuredGroups(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSecuredGroups", new object[] { siteItemId}, callback, asyncState); - } - - /// - public WebGroup[] EndGetSecuredGroups(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebGroup[])(results[0])); - } - - /// - public void GetSecuredGroupsAsync(int siteItemId) - { - this.GetSecuredGroupsAsync(siteItemId, null); - } - - /// - public void GetSecuredGroupsAsync(int siteItemId, object userState) - { - if ((this.GetSecuredGroupsOperationCompleted == null)) - { - this.GetSecuredGroupsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredGroupsOperationCompleted); - } - this.InvokeAsync("GetSecuredGroups", new object[] { + } + + /// + public WebGroup[] EndGetSecuredGroups(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebGroup[])(results[0])); + } + + /// + public void GetSecuredGroupsAsync(int siteItemId) { + this.GetSecuredGroupsAsync(siteItemId, null); + } + + /// + public void GetSecuredGroupsAsync(int siteItemId, object userState) { + if ((this.GetSecuredGroupsOperationCompleted == null)) { + this.GetSecuredGroupsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredGroupsOperationCompleted); + } + this.InvokeAsync("GetSecuredGroups", new object[] { siteItemId}, this.GetSecuredGroupsOperationCompleted, userState); - } - - private void OnGetSecuredGroupsOperationCompleted(object arg) - { - if ((this.GetSecuredGroupsCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSecuredGroupsCompleted(this, new GetSecuredGroupsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebGroup GetSecuredGroup(int siteItemId, string groupName) - { - object[] results = this.Invoke("GetSecuredGroup", new object[] { + } + + private void OnGetSecuredGroupsOperationCompleted(object arg) { + if ((this.GetSecuredGroupsCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSecuredGroupsCompleted(this, new GetSecuredGroupsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSecuredGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebGroup GetSecuredGroup(int siteItemId, string groupName) { + object[] results = this.Invoke("GetSecuredGroup", new object[] { siteItemId, groupName}); - return ((WebGroup)(results[0])); - } - - /// - public System.IAsyncResult BeginGetSecuredGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSecuredGroup", new object[] { + return ((WebGroup)(results[0])); + } + + /// + public System.IAsyncResult BeginGetSecuredGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSecuredGroup", new object[] { siteItemId, groupName}, callback, asyncState); - } - - /// - public WebGroup EndGetSecuredGroup(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebGroup)(results[0])); - } - - /// - public void GetSecuredGroupAsync(int siteItemId, string groupName) - { - this.GetSecuredGroupAsync(siteItemId, groupName, null); - } - - /// - public void GetSecuredGroupAsync(int siteItemId, string groupName, object userState) - { - if ((this.GetSecuredGroupOperationCompleted == null)) - { - this.GetSecuredGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredGroupOperationCompleted); - } - this.InvokeAsync("GetSecuredGroup", new object[] { + } + + /// + public WebGroup EndGetSecuredGroup(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebGroup)(results[0])); + } + + /// + public void GetSecuredGroupAsync(int siteItemId, string groupName) { + this.GetSecuredGroupAsync(siteItemId, groupName, null); + } + + /// + public void GetSecuredGroupAsync(int siteItemId, string groupName, object userState) { + if ((this.GetSecuredGroupOperationCompleted == null)) { + this.GetSecuredGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSecuredGroupOperationCompleted); + } + this.InvokeAsync("GetSecuredGroup", new object[] { siteItemId, groupName}, this.GetSecuredGroupOperationCompleted, userState); - } - - private void OnGetSecuredGroupOperationCompleted(object arg) - { - if ((this.GetSecuredGroupCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSecuredGroupCompleted(this, new GetSecuredGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSecuredGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateSecuredGroup(int siteItemId, WebGroup group) - { - object[] results = this.Invoke("UpdateSecuredGroup", new object[] { + } + + private void OnGetSecuredGroupOperationCompleted(object arg) { + if ((this.GetSecuredGroupCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSecuredGroupCompleted(this, new GetSecuredGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateSecuredGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateSecuredGroup(int siteItemId, WebGroup group) { + object[] results = this.Invoke("UpdateSecuredGroup", new object[] { siteItemId, group}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateSecuredGroup(int siteItemId, WebGroup group, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateSecuredGroup", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateSecuredGroup(int siteItemId, WebGroup group, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateSecuredGroup", new object[] { siteItemId, group}, callback, asyncState); - } - - /// - public int EndUpdateSecuredGroup(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateSecuredGroupAsync(int siteItemId, WebGroup group) - { - this.UpdateSecuredGroupAsync(siteItemId, group, null); - } - - /// - public void UpdateSecuredGroupAsync(int siteItemId, WebGroup group, object userState) - { - if ((this.UpdateSecuredGroupOperationCompleted == null)) - { - this.UpdateSecuredGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSecuredGroupOperationCompleted); - } - this.InvokeAsync("UpdateSecuredGroup", new object[] { + } + + /// + public int EndUpdateSecuredGroup(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateSecuredGroupAsync(int siteItemId, WebGroup group) { + this.UpdateSecuredGroupAsync(siteItemId, group, null); + } + + /// + public void UpdateSecuredGroupAsync(int siteItemId, WebGroup group, object userState) { + if ((this.UpdateSecuredGroupOperationCompleted == null)) { + this.UpdateSecuredGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateSecuredGroupOperationCompleted); + } + this.InvokeAsync("UpdateSecuredGroup", new object[] { siteItemId, group}, this.UpdateSecuredGroupOperationCompleted, userState); - } - - private void OnUpdateSecuredGroupOperationCompleted(object arg) - { - if ((this.UpdateSecuredGroupCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateSecuredGroupCompleted(this, new UpdateSecuredGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSecuredGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteSecuredGroup(int siteItemId, string groupName) - { - object[] results = this.Invoke("DeleteSecuredGroup", new object[] { + } + + private void OnUpdateSecuredGroupOperationCompleted(object arg) { + if ((this.UpdateSecuredGroupCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateSecuredGroupCompleted(this, new UpdateSecuredGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteSecuredGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteSecuredGroup(int siteItemId, string groupName) { + object[] results = this.Invoke("DeleteSecuredGroup", new object[] { siteItemId, groupName}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteSecuredGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteSecuredGroup", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteSecuredGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteSecuredGroup", new object[] { siteItemId, groupName}, callback, asyncState); - } - - /// - public int EndDeleteSecuredGroup(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteSecuredGroupAsync(int siteItemId, string groupName) - { - this.DeleteSecuredGroupAsync(siteItemId, groupName, null); - } - - /// - public void DeleteSecuredGroupAsync(int siteItemId, string groupName, object userState) - { - if ((this.DeleteSecuredGroupOperationCompleted == null)) - { - this.DeleteSecuredGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSecuredGroupOperationCompleted); - } - this.InvokeAsync("DeleteSecuredGroup", new object[] { + } + + /// + public int EndDeleteSecuredGroup(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteSecuredGroupAsync(int siteItemId, string groupName) { + this.DeleteSecuredGroupAsync(siteItemId, groupName, null); + } + + /// + public void DeleteSecuredGroupAsync(int siteItemId, string groupName, object userState) { + if ((this.DeleteSecuredGroupOperationCompleted == null)) { + this.DeleteSecuredGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteSecuredGroupOperationCompleted); + } + this.InvokeAsync("DeleteSecuredGroup", new object[] { siteItemId, groupName}, this.DeleteSecuredGroupOperationCompleted, userState); - } - - private void OnDeleteSecuredGroupOperationCompleted(object arg) - { - if ((this.DeleteSecuredGroupCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteSecuredGroupCompleted(this, new DeleteSecuredGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GrantWebDeployPublishingAccess", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject GrantWebDeployPublishingAccess(int siteItemId, string accountName, string accountPassword) - { - object[] results = this.Invoke("GrantWebDeployPublishingAccess", new object[] { + } + + private void OnDeleteSecuredGroupOperationCompleted(object arg) { + if ((this.DeleteSecuredGroupCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteSecuredGroupCompleted(this, new DeleteSecuredGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GrantWebDeployPublishingAccess", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject GrantWebDeployPublishingAccess(int siteItemId, string accountName, string accountPassword) { + object[] results = this.Invoke("GrantWebDeployPublishingAccess", new object[] { siteItemId, accountName, accountPassword}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginGrantWebDeployPublishingAccess(int siteItemId, string accountName, string accountPassword, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GrantWebDeployPublishingAccess", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginGrantWebDeployPublishingAccess(int siteItemId, string accountName, string accountPassword, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GrantWebDeployPublishingAccess", new object[] { siteItemId, accountName, accountPassword}, callback, asyncState); - } - - /// - public ResultObject EndGrantWebDeployPublishingAccess(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void GrantWebDeployPublishingAccessAsync(int siteItemId, string accountName, string accountPassword) - { - this.GrantWebDeployPublishingAccessAsync(siteItemId, accountName, accountPassword, null); - } - - /// - public void GrantWebDeployPublishingAccessAsync(int siteItemId, string accountName, string accountPassword, object userState) - { - if ((this.GrantWebDeployPublishingAccessOperationCompleted == null)) - { - this.GrantWebDeployPublishingAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGrantWebDeployPublishingAccessOperationCompleted); - } - this.InvokeAsync("GrantWebDeployPublishingAccess", new object[] { + } + + /// + public ResultObject EndGrantWebDeployPublishingAccess(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void GrantWebDeployPublishingAccessAsync(int siteItemId, string accountName, string accountPassword) { + this.GrantWebDeployPublishingAccessAsync(siteItemId, accountName, accountPassword, null); + } + + /// + public void GrantWebDeployPublishingAccessAsync(int siteItemId, string accountName, string accountPassword, object userState) { + if ((this.GrantWebDeployPublishingAccessOperationCompleted == null)) { + this.GrantWebDeployPublishingAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGrantWebDeployPublishingAccessOperationCompleted); + } + this.InvokeAsync("GrantWebDeployPublishingAccess", new object[] { siteItemId, accountName, accountPassword}, this.GrantWebDeployPublishingAccessOperationCompleted, userState); - } - - private void OnGrantWebDeployPublishingAccessOperationCompleted(object arg) - { - if ((this.GrantWebDeployPublishingAccessCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GrantWebDeployPublishingAccessCompleted(this, new GrantWebDeployPublishingAccessCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/SaveWebDeployPublishingProfile", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject SaveWebDeployPublishingProfile(int siteItemId, int[] serviceItemIds) - { - object[] results = this.Invoke("SaveWebDeployPublishingProfile", new object[] { + } + + private void OnGrantWebDeployPublishingAccessOperationCompleted(object arg) { + if ((this.GrantWebDeployPublishingAccessCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GrantWebDeployPublishingAccessCompleted(this, new GrantWebDeployPublishingAccessCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/SaveWebDeployPublishingProfile", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject SaveWebDeployPublishingProfile(int siteItemId, int[] serviceItemIds) { + object[] results = this.Invoke("SaveWebDeployPublishingProfile", new object[] { siteItemId, serviceItemIds}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginSaveWebDeployPublishingProfile(int siteItemId, int[] serviceItemIds, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("SaveWebDeployPublishingProfile", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginSaveWebDeployPublishingProfile(int siteItemId, int[] serviceItemIds, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("SaveWebDeployPublishingProfile", new object[] { siteItemId, serviceItemIds}, callback, asyncState); - } - - /// - public ResultObject EndSaveWebDeployPublishingProfile(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void SaveWebDeployPublishingProfileAsync(int siteItemId, int[] serviceItemIds) - { - this.SaveWebDeployPublishingProfileAsync(siteItemId, serviceItemIds, null); - } - - /// - public void SaveWebDeployPublishingProfileAsync(int siteItemId, int[] serviceItemIds, object userState) - { - if ((this.SaveWebDeployPublishingProfileOperationCompleted == null)) - { - this.SaveWebDeployPublishingProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSaveWebDeployPublishingProfileOperationCompleted); - } - this.InvokeAsync("SaveWebDeployPublishingProfile", new object[] { + } + + /// + public ResultObject EndSaveWebDeployPublishingProfile(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void SaveWebDeployPublishingProfileAsync(int siteItemId, int[] serviceItemIds) { + this.SaveWebDeployPublishingProfileAsync(siteItemId, serviceItemIds, null); + } + + /// + public void SaveWebDeployPublishingProfileAsync(int siteItemId, int[] serviceItemIds, object userState) { + if ((this.SaveWebDeployPublishingProfileOperationCompleted == null)) { + this.SaveWebDeployPublishingProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSaveWebDeployPublishingProfileOperationCompleted); + } + this.InvokeAsync("SaveWebDeployPublishingProfile", new object[] { siteItemId, serviceItemIds}, this.SaveWebDeployPublishingProfileOperationCompleted, userState); - } - - private void OnSaveWebDeployPublishingProfileOperationCompleted(object arg) - { - if ((this.SaveWebDeployPublishingProfileCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.SaveWebDeployPublishingProfileCompleted(this, new SaveWebDeployPublishingProfileCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RevokeWebDeployPublishingAccess", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public void RevokeWebDeployPublishingAccess(int siteItemId) - { - this.Invoke("RevokeWebDeployPublishingAccess", new object[] { + } + + private void OnSaveWebDeployPublishingProfileOperationCompleted(object arg) { + if ((this.SaveWebDeployPublishingProfileCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.SaveWebDeployPublishingProfileCompleted(this, new SaveWebDeployPublishingProfileCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RevokeWebDeployPublishingAccess", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public void RevokeWebDeployPublishingAccess(int siteItemId) { + this.Invoke("RevokeWebDeployPublishingAccess", new object[] { siteItemId}); - } - - /// - public System.IAsyncResult BeginRevokeWebDeployPublishingAccess(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("RevokeWebDeployPublishingAccess", new object[] { + } + + /// + public System.IAsyncResult BeginRevokeWebDeployPublishingAccess(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("RevokeWebDeployPublishingAccess", new object[] { siteItemId}, callback, asyncState); - } - - /// - public void EndRevokeWebDeployPublishingAccess(System.IAsyncResult asyncResult) - { - this.EndInvoke(asyncResult); - } - - /// - public void RevokeWebDeployPublishingAccessAsync(int siteItemId) - { - this.RevokeWebDeployPublishingAccessAsync(siteItemId, null); - } - - /// - public void RevokeWebDeployPublishingAccessAsync(int siteItemId, object userState) - { - if ((this.RevokeWebDeployPublishingAccessOperationCompleted == null)) - { - this.RevokeWebDeployPublishingAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRevokeWebDeployPublishingAccessOperationCompleted); - } - this.InvokeAsync("RevokeWebDeployPublishingAccess", new object[] { + } + + /// + public void EndRevokeWebDeployPublishingAccess(System.IAsyncResult asyncResult) { + this.EndInvoke(asyncResult); + } + + /// + public void RevokeWebDeployPublishingAccessAsync(int siteItemId) { + this.RevokeWebDeployPublishingAccessAsync(siteItemId, null); + } + + /// + public void RevokeWebDeployPublishingAccessAsync(int siteItemId, object userState) { + if ((this.RevokeWebDeployPublishingAccessOperationCompleted == null)) { + this.RevokeWebDeployPublishingAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRevokeWebDeployPublishingAccessOperationCompleted); + } + this.InvokeAsync("RevokeWebDeployPublishingAccess", new object[] { siteItemId}, this.RevokeWebDeployPublishingAccessOperationCompleted, userState); - } - - private void OnRevokeWebDeployPublishingAccessOperationCompleted(object arg) - { - if ((this.RevokeWebDeployPublishingAccessCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.RevokeWebDeployPublishingAccessCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebDeployPublishingProfile", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public BytesResult GetWebDeployPublishingProfile(int siteItemId) - { - object[] results = this.Invoke("GetWebDeployPublishingProfile", new object[] { + } + + private void OnRevokeWebDeployPublishingAccessOperationCompleted(object arg) { + if ((this.RevokeWebDeployPublishingAccessCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.RevokeWebDeployPublishingAccessCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetWebDeployPublishingProfile", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public BytesResult GetWebDeployPublishingProfile(int siteItemId) { + object[] results = this.Invoke("GetWebDeployPublishingProfile", new object[] { siteItemId}); - return ((BytesResult)(results[0])); - } - - /// - public System.IAsyncResult BeginGetWebDeployPublishingProfile(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetWebDeployPublishingProfile", new object[] { + return ((BytesResult)(results[0])); + } + + /// + public System.IAsyncResult BeginGetWebDeployPublishingProfile(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetWebDeployPublishingProfile", new object[] { siteItemId}, callback, asyncState); - } - - /// - public BytesResult EndGetWebDeployPublishingProfile(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((BytesResult)(results[0])); - } - - /// - public void GetWebDeployPublishingProfileAsync(int siteItemId) - { - this.GetWebDeployPublishingProfileAsync(siteItemId, null); - } - - /// - public void GetWebDeployPublishingProfileAsync(int siteItemId, object userState) - { - if ((this.GetWebDeployPublishingProfileOperationCompleted == null)) - { - this.GetWebDeployPublishingProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebDeployPublishingProfileOperationCompleted); - } - this.InvokeAsync("GetWebDeployPublishingProfile", new object[] { + } + + /// + public BytesResult EndGetWebDeployPublishingProfile(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((BytesResult)(results[0])); + } + + /// + public void GetWebDeployPublishingProfileAsync(int siteItemId) { + this.GetWebDeployPublishingProfileAsync(siteItemId, null); + } + + /// + public void GetWebDeployPublishingProfileAsync(int siteItemId, object userState) { + if ((this.GetWebDeployPublishingProfileOperationCompleted == null)) { + this.GetWebDeployPublishingProfileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetWebDeployPublishingProfileOperationCompleted); + } + this.InvokeAsync("GetWebDeployPublishingProfile", new object[] { siteItemId}, this.GetWebDeployPublishingProfileOperationCompleted, userState); - } - - private void OnGetWebDeployPublishingProfileOperationCompleted(object arg) - { - if ((this.GetWebDeployPublishingProfileCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetWebDeployPublishingProfileCompleted(this, new GetWebDeployPublishingProfileCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeWebDeployPublishingPassword", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject ChangeWebDeployPublishingPassword(int siteItemId, string newAccountPassword) - { - object[] results = this.Invoke("ChangeWebDeployPublishingPassword", new object[] { + } + + private void OnGetWebDeployPublishingProfileOperationCompleted(object arg) { + if ((this.GetWebDeployPublishingProfileCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetWebDeployPublishingProfileCompleted(this, new GetWebDeployPublishingProfileCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeWebDeployPublishingPassword", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject ChangeWebDeployPublishingPassword(int siteItemId, string newAccountPassword) { + object[] results = this.Invoke("ChangeWebDeployPublishingPassword", new object[] { siteItemId, newAccountPassword}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginChangeWebDeployPublishingPassword(int siteItemId, string newAccountPassword, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("ChangeWebDeployPublishingPassword", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginChangeWebDeployPublishingPassword(int siteItemId, string newAccountPassword, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("ChangeWebDeployPublishingPassword", new object[] { siteItemId, newAccountPassword}, callback, asyncState); - } - - /// - public ResultObject EndChangeWebDeployPublishingPassword(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void ChangeWebDeployPublishingPasswordAsync(int siteItemId, string newAccountPassword) - { - this.ChangeWebDeployPublishingPasswordAsync(siteItemId, newAccountPassword, null); - } - - /// - public void ChangeWebDeployPublishingPasswordAsync(int siteItemId, string newAccountPassword, object userState) - { - if ((this.ChangeWebDeployPublishingPasswordOperationCompleted == null)) - { - this.ChangeWebDeployPublishingPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeWebDeployPublishingPasswordOperationCompleted); - } - this.InvokeAsync("ChangeWebDeployPublishingPassword", new object[] { + } + + /// + public ResultObject EndChangeWebDeployPublishingPassword(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void ChangeWebDeployPublishingPasswordAsync(int siteItemId, string newAccountPassword) { + this.ChangeWebDeployPublishingPasswordAsync(siteItemId, newAccountPassword, null); + } + + /// + public void ChangeWebDeployPublishingPasswordAsync(int siteItemId, string newAccountPassword, object userState) { + if ((this.ChangeWebDeployPublishingPasswordOperationCompleted == null)) { + this.ChangeWebDeployPublishingPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeWebDeployPublishingPasswordOperationCompleted); + } + this.InvokeAsync("ChangeWebDeployPublishingPassword", new object[] { siteItemId, newAccountPassword}, this.ChangeWebDeployPublishingPasswordOperationCompleted, userState); - } - - private void OnChangeWebDeployPublishingPasswordOperationCompleted(object arg) - { - if ((this.ChangeWebDeployPublishingPasswordCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.ChangeWebDeployPublishingPasswordCompleted(this, new ChangeWebDeployPublishingPasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeStatus", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public HeliconApeStatus GetHeliconApeStatus(int siteItemId) - { - object[] results = this.Invoke("GetHeliconApeStatus", new object[] { + } + + private void OnChangeWebDeployPublishingPasswordOperationCompleted(object arg) { + if ((this.ChangeWebDeployPublishingPasswordCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.ChangeWebDeployPublishingPasswordCompleted(this, new ChangeWebDeployPublishingPasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeStatus", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public HeliconApeStatus GetHeliconApeStatus(int siteItemId) { + object[] results = this.Invoke("GetHeliconApeStatus", new object[] { siteItemId}); - return ((HeliconApeStatus)(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeStatus(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeStatus", new object[] { + return ((HeliconApeStatus)(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeStatus(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeStatus", new object[] { siteItemId}, callback, asyncState); - } - - /// - public HeliconApeStatus EndGetHeliconApeStatus(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((HeliconApeStatus)(results[0])); - } - - /// - public void GetHeliconApeStatusAsync(int siteItemId) - { - this.GetHeliconApeStatusAsync(siteItemId, null); - } - - /// - public void GetHeliconApeStatusAsync(int siteItemId, object userState) - { - if ((this.GetHeliconApeStatusOperationCompleted == null)) - { - this.GetHeliconApeStatusOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeStatusOperationCompleted); - } - this.InvokeAsync("GetHeliconApeStatus", new object[] { + } + + /// + public HeliconApeStatus EndGetHeliconApeStatus(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((HeliconApeStatus)(results[0])); + } + + /// + public void GetHeliconApeStatusAsync(int siteItemId) { + this.GetHeliconApeStatusAsync(siteItemId, null); + } + + /// + public void GetHeliconApeStatusAsync(int siteItemId, object userState) { + if ((this.GetHeliconApeStatusOperationCompleted == null)) { + this.GetHeliconApeStatusOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeStatusOperationCompleted); + } + this.InvokeAsync("GetHeliconApeStatus", new object[] { siteItemId}, this.GetHeliconApeStatusOperationCompleted, userState); - } - - private void OnGetHeliconApeStatusOperationCompleted(object arg) - { - if ((this.GetHeliconApeStatusCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeStatusCompleted(this, new GetHeliconApeStatusCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallHeliconApe", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public void InstallHeliconApe(int siteItemId) - { - this.Invoke("InstallHeliconApe", new object[] { + } + + private void OnGetHeliconApeStatusOperationCompleted(object arg) { + if ((this.GetHeliconApeStatusCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeStatusCompleted(this, new GetHeliconApeStatusCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallHeliconApe", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public void InstallHeliconApe(int siteItemId) { + this.Invoke("InstallHeliconApe", new object[] { siteItemId}); - } - - /// - public System.IAsyncResult BeginInstallHeliconApe(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("InstallHeliconApe", new object[] { + } + + /// + public System.IAsyncResult BeginInstallHeliconApe(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("InstallHeliconApe", new object[] { siteItemId}, callback, asyncState); - } - - /// - public void EndInstallHeliconApe(System.IAsyncResult asyncResult) - { - this.EndInvoke(asyncResult); - } - - /// - public void InstallHeliconApeAsync(int siteItemId) - { - this.InstallHeliconApeAsync(siteItemId, null); - } - - /// - public void InstallHeliconApeAsync(int siteItemId, object userState) - { - if ((this.InstallHeliconApeOperationCompleted == null)) - { - this.InstallHeliconApeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallHeliconApeOperationCompleted); - } - this.InvokeAsync("InstallHeliconApe", new object[] { + } + + /// + public void EndInstallHeliconApe(System.IAsyncResult asyncResult) { + this.EndInvoke(asyncResult); + } + + /// + public void InstallHeliconApeAsync(int siteItemId) { + this.InstallHeliconApeAsync(siteItemId, null); + } + + /// + public void InstallHeliconApeAsync(int siteItemId, object userState) { + if ((this.InstallHeliconApeOperationCompleted == null)) { + this.InstallHeliconApeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallHeliconApeOperationCompleted); + } + this.InvokeAsync("InstallHeliconApe", new object[] { siteItemId}, this.InstallHeliconApeOperationCompleted, userState); - } - - private void OnInstallHeliconApeOperationCompleted(object arg) - { - if ((this.InstallHeliconApeCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.InstallHeliconApeCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/EnableHeliconApe", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int EnableHeliconApe(int siteItemId) - { - object[] results = this.Invoke("EnableHeliconApe", new object[] { + } + + private void OnInstallHeliconApeOperationCompleted(object arg) { + if ((this.InstallHeliconApeCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.InstallHeliconApeCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/EnableHeliconApe", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int EnableHeliconApe(int siteItemId) { + object[] results = this.Invoke("EnableHeliconApe", new object[] { siteItemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginEnableHeliconApe(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("EnableHeliconApe", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginEnableHeliconApe(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("EnableHeliconApe", new object[] { siteItemId}, callback, asyncState); - } - - /// - public int EndEnableHeliconApe(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void EnableHeliconApeAsync(int siteItemId) - { - this.EnableHeliconApeAsync(siteItemId, null); - } - - /// - public void EnableHeliconApeAsync(int siteItemId, object userState) - { - if ((this.EnableHeliconApeOperationCompleted == null)) - { - this.EnableHeliconApeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnEnableHeliconApeOperationCompleted); - } - this.InvokeAsync("EnableHeliconApe", new object[] { + } + + /// + public int EndEnableHeliconApe(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void EnableHeliconApeAsync(int siteItemId) { + this.EnableHeliconApeAsync(siteItemId, null); + } + + /// + public void EnableHeliconApeAsync(int siteItemId, object userState) { + if ((this.EnableHeliconApeOperationCompleted == null)) { + this.EnableHeliconApeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnEnableHeliconApeOperationCompleted); + } + this.InvokeAsync("EnableHeliconApe", new object[] { siteItemId}, this.EnableHeliconApeOperationCompleted, userState); - } - - private void OnEnableHeliconApeOperationCompleted(object arg) - { - if ((this.EnableHeliconApeCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.EnableHeliconApeCompleted(this, new EnableHeliconApeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DisableHeliconApe", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DisableHeliconApe(int siteItemId) - { - object[] results = this.Invoke("DisableHeliconApe", new object[] { + } + + private void OnEnableHeliconApeOperationCompleted(object arg) { + if ((this.EnableHeliconApeCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.EnableHeliconApeCompleted(this, new EnableHeliconApeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DisableHeliconApe", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DisableHeliconApe(int siteItemId) { + object[] results = this.Invoke("DisableHeliconApe", new object[] { siteItemId}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDisableHeliconApe(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DisableHeliconApe", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDisableHeliconApe(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DisableHeliconApe", new object[] { siteItemId}, callback, asyncState); - } - - /// - public int EndDisableHeliconApe(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DisableHeliconApeAsync(int siteItemId) - { - this.DisableHeliconApeAsync(siteItemId, null); - } - - /// - public void DisableHeliconApeAsync(int siteItemId, object userState) - { - if ((this.DisableHeliconApeOperationCompleted == null)) - { - this.DisableHeliconApeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDisableHeliconApeOperationCompleted); - } - this.InvokeAsync("DisableHeliconApe", new object[] { + } + + /// + public int EndDisableHeliconApe(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DisableHeliconApeAsync(int siteItemId) { + this.DisableHeliconApeAsync(siteItemId, null); + } + + /// + public void DisableHeliconApeAsync(int siteItemId, object userState) { + if ((this.DisableHeliconApeOperationCompleted == null)) { + this.DisableHeliconApeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDisableHeliconApeOperationCompleted); + } + this.InvokeAsync("DisableHeliconApe", new object[] { siteItemId}, this.DisableHeliconApeOperationCompleted, userState); - } - - private void OnDisableHeliconApeOperationCompleted(object arg) - { - if ((this.DisableHeliconApeCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DisableHeliconApeCompleted(this, new DisableHeliconApeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeFolders", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public HtaccessFolder[] GetHeliconApeFolders(int siteItemId) - { - object[] results = this.Invoke("GetHeliconApeFolders", new object[] { + } + + private void OnDisableHeliconApeOperationCompleted(object arg) { + if ((this.DisableHeliconApeCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DisableHeliconApeCompleted(this, new DisableHeliconApeCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeFolders", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public HtaccessFolder[] GetHeliconApeFolders(int siteItemId) { + object[] results = this.Invoke("GetHeliconApeFolders", new object[] { siteItemId}); - return ((HtaccessFolder[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeFolders(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeFolders", new object[] { + return ((HtaccessFolder[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeFolders(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeFolders", new object[] { siteItemId}, callback, asyncState); - } - - /// - public HtaccessFolder[] EndGetHeliconApeFolders(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((HtaccessFolder[])(results[0])); - } - - /// - public void GetHeliconApeFoldersAsync(int siteItemId) - { - this.GetHeliconApeFoldersAsync(siteItemId, null); - } - - /// - public void GetHeliconApeFoldersAsync(int siteItemId, object userState) - { - if ((this.GetHeliconApeFoldersOperationCompleted == null)) - { - this.GetHeliconApeFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeFoldersOperationCompleted); - } - this.InvokeAsync("GetHeliconApeFolders", new object[] { + } + + /// + public HtaccessFolder[] EndGetHeliconApeFolders(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((HtaccessFolder[])(results[0])); + } + + /// + public void GetHeliconApeFoldersAsync(int siteItemId) { + this.GetHeliconApeFoldersAsync(siteItemId, null); + } + + /// + public void GetHeliconApeFoldersAsync(int siteItemId, object userState) { + if ((this.GetHeliconApeFoldersOperationCompleted == null)) { + this.GetHeliconApeFoldersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeFoldersOperationCompleted); + } + this.InvokeAsync("GetHeliconApeFolders", new object[] { siteItemId}, this.GetHeliconApeFoldersOperationCompleted, userState); - } - - private void OnGetHeliconApeFoldersOperationCompleted(object arg) - { - if ((this.GetHeliconApeFoldersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeFoldersCompleted(this, new GetHeliconApeFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeHttpdFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public HtaccessFolder GetHeliconApeHttpdFolder(int serviceId) - { - object[] results = this.Invoke("GetHeliconApeHttpdFolder", new object[] { + } + + private void OnGetHeliconApeFoldersOperationCompleted(object arg) { + if ((this.GetHeliconApeFoldersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeFoldersCompleted(this, new GetHeliconApeFoldersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeHttpdFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public HtaccessFolder GetHeliconApeHttpdFolder(int serviceId) { + object[] results = this.Invoke("GetHeliconApeHttpdFolder", new object[] { serviceId}); - return ((HtaccessFolder)(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeHttpdFolder(int serviceId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeHttpdFolder", new object[] { + return ((HtaccessFolder)(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeHttpdFolder(int serviceId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeHttpdFolder", new object[] { serviceId}, callback, asyncState); - } - - /// - public HtaccessFolder EndGetHeliconApeHttpdFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((HtaccessFolder)(results[0])); - } - - /// - public void GetHeliconApeHttpdFolderAsync(int serviceId) - { - this.GetHeliconApeHttpdFolderAsync(serviceId, null); - } - - /// - public void GetHeliconApeHttpdFolderAsync(int serviceId, object userState) - { - if ((this.GetHeliconApeHttpdFolderOperationCompleted == null)) - { - this.GetHeliconApeHttpdFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeHttpdFolderOperationCompleted); - } - this.InvokeAsync("GetHeliconApeHttpdFolder", new object[] { + } + + /// + public HtaccessFolder EndGetHeliconApeHttpdFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((HtaccessFolder)(results[0])); + } + + /// + public void GetHeliconApeHttpdFolderAsync(int serviceId) { + this.GetHeliconApeHttpdFolderAsync(serviceId, null); + } + + /// + public void GetHeliconApeHttpdFolderAsync(int serviceId, object userState) { + if ((this.GetHeliconApeHttpdFolderOperationCompleted == null)) { + this.GetHeliconApeHttpdFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeHttpdFolderOperationCompleted); + } + this.InvokeAsync("GetHeliconApeHttpdFolder", new object[] { serviceId}, this.GetHeliconApeHttpdFolderOperationCompleted, userState); - } - - private void OnGetHeliconApeHttpdFolderOperationCompleted(object arg) - { - if ((this.GetHeliconApeHttpdFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeHttpdFolderCompleted(this, new GetHeliconApeHttpdFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public HtaccessFolder GetHeliconApeFolder(int siteItemId, string folderPath) - { - object[] results = this.Invoke("GetHeliconApeFolder", new object[] { + } + + private void OnGetHeliconApeHttpdFolderOperationCompleted(object arg) { + if ((this.GetHeliconApeHttpdFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeHttpdFolderCompleted(this, new GetHeliconApeHttpdFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public HtaccessFolder GetHeliconApeFolder(int siteItemId, string folderPath) { + object[] results = this.Invoke("GetHeliconApeFolder", new object[] { siteItemId, folderPath}); - return ((HtaccessFolder)(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeFolder", new object[] { + return ((HtaccessFolder)(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeFolder", new object[] { siteItemId, folderPath}, callback, asyncState); - } - - /// - public HtaccessFolder EndGetHeliconApeFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((HtaccessFolder)(results[0])); - } - - /// - public void GetHeliconApeFolderAsync(int siteItemId, string folderPath) - { - this.GetHeliconApeFolderAsync(siteItemId, folderPath, null); - } - - /// - public void GetHeliconApeFolderAsync(int siteItemId, string folderPath, object userState) - { - if ((this.GetHeliconApeFolderOperationCompleted == null)) - { - this.GetHeliconApeFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeFolderOperationCompleted); - } - this.InvokeAsync("GetHeliconApeFolder", new object[] { + } + + /// + public HtaccessFolder EndGetHeliconApeFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((HtaccessFolder)(results[0])); + } + + /// + public void GetHeliconApeFolderAsync(int siteItemId, string folderPath) { + this.GetHeliconApeFolderAsync(siteItemId, folderPath, null); + } + + /// + public void GetHeliconApeFolderAsync(int siteItemId, string folderPath, object userState) { + if ((this.GetHeliconApeFolderOperationCompleted == null)) { + this.GetHeliconApeFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeFolderOperationCompleted); + } + this.InvokeAsync("GetHeliconApeFolder", new object[] { siteItemId, folderPath}, this.GetHeliconApeFolderOperationCompleted, userState); - } - - private void OnGetHeliconApeFolderOperationCompleted(object arg) - { - if ((this.GetHeliconApeFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeFolderCompleted(this, new GetHeliconApeFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateHeliconApeFolder(int siteItemId, HtaccessFolder folder) - { - object[] results = this.Invoke("UpdateHeliconApeFolder", new object[] { + } + + private void OnGetHeliconApeFolderOperationCompleted(object arg) { + if ((this.GetHeliconApeFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeFolderCompleted(this, new GetHeliconApeFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateHeliconApeFolder(int siteItemId, HtaccessFolder folder) { + object[] results = this.Invoke("UpdateHeliconApeFolder", new object[] { siteItemId, folder}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateHeliconApeFolder(int siteItemId, HtaccessFolder folder, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateHeliconApeFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateHeliconApeFolder(int siteItemId, HtaccessFolder folder, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateHeliconApeFolder", new object[] { siteItemId, folder}, callback, asyncState); - } - - /// - public int EndUpdateHeliconApeFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateHeliconApeFolderAsync(int siteItemId, HtaccessFolder folder) - { - this.UpdateHeliconApeFolderAsync(siteItemId, folder, null); - } - - /// - public void UpdateHeliconApeFolderAsync(int siteItemId, HtaccessFolder folder, object userState) - { - if ((this.UpdateHeliconApeFolderOperationCompleted == null)) - { - this.UpdateHeliconApeFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeFolderOperationCompleted); - } - this.InvokeAsync("UpdateHeliconApeFolder", new object[] { + } + + /// + public int EndUpdateHeliconApeFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateHeliconApeFolderAsync(int siteItemId, HtaccessFolder folder) { + this.UpdateHeliconApeFolderAsync(siteItemId, folder, null); + } + + /// + public void UpdateHeliconApeFolderAsync(int siteItemId, HtaccessFolder folder, object userState) { + if ((this.UpdateHeliconApeFolderOperationCompleted == null)) { + this.UpdateHeliconApeFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeFolderOperationCompleted); + } + this.InvokeAsync("UpdateHeliconApeFolder", new object[] { siteItemId, folder}, this.UpdateHeliconApeFolderOperationCompleted, userState); - } - - private void OnUpdateHeliconApeFolderOperationCompleted(object arg) - { - if ((this.UpdateHeliconApeFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateHeliconApeFolderCompleted(this, new UpdateHeliconApeFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeHttpdFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateHeliconApeHttpdFolder(int serviceId, HtaccessFolder folder) - { - object[] results = this.Invoke("UpdateHeliconApeHttpdFolder", new object[] { + } + + private void OnUpdateHeliconApeFolderOperationCompleted(object arg) { + if ((this.UpdateHeliconApeFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateHeliconApeFolderCompleted(this, new UpdateHeliconApeFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeHttpdFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateHeliconApeHttpdFolder(int serviceId, HtaccessFolder folder) { + object[] results = this.Invoke("UpdateHeliconApeHttpdFolder", new object[] { serviceId, folder}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateHeliconApeHttpdFolder(int serviceId, HtaccessFolder folder, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateHeliconApeHttpdFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateHeliconApeHttpdFolder(int serviceId, HtaccessFolder folder, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateHeliconApeHttpdFolder", new object[] { serviceId, folder}, callback, asyncState); - } - - /// - public int EndUpdateHeliconApeHttpdFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateHeliconApeHttpdFolderAsync(int serviceId, HtaccessFolder folder) - { - this.UpdateHeliconApeHttpdFolderAsync(serviceId, folder, null); - } - - /// - public void UpdateHeliconApeHttpdFolderAsync(int serviceId, HtaccessFolder folder, object userState) - { - if ((this.UpdateHeliconApeHttpdFolderOperationCompleted == null)) - { - this.UpdateHeliconApeHttpdFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeHttpdFolderOperationCompleted); - } - this.InvokeAsync("UpdateHeliconApeHttpdFolder", new object[] { + } + + /// + public int EndUpdateHeliconApeHttpdFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateHeliconApeHttpdFolderAsync(int serviceId, HtaccessFolder folder) { + this.UpdateHeliconApeHttpdFolderAsync(serviceId, folder, null); + } + + /// + public void UpdateHeliconApeHttpdFolderAsync(int serviceId, HtaccessFolder folder, object userState) { + if ((this.UpdateHeliconApeHttpdFolderOperationCompleted == null)) { + this.UpdateHeliconApeHttpdFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeHttpdFolderOperationCompleted); + } + this.InvokeAsync("UpdateHeliconApeHttpdFolder", new object[] { serviceId, folder}, this.UpdateHeliconApeHttpdFolderOperationCompleted, userState); - } - - private void OnUpdateHeliconApeHttpdFolderOperationCompleted(object arg) - { - if ((this.UpdateHeliconApeHttpdFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateHeliconApeHttpdFolderCompleted(this, new UpdateHeliconApeHttpdFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteHeliconApeFolder", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteHeliconApeFolder(int siteItemId, string folderPath) - { - object[] results = this.Invoke("DeleteHeliconApeFolder", new object[] { + } + + private void OnUpdateHeliconApeHttpdFolderOperationCompleted(object arg) { + if ((this.UpdateHeliconApeHttpdFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateHeliconApeHttpdFolderCompleted(this, new UpdateHeliconApeHttpdFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteHeliconApeFolder", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteHeliconApeFolder(int siteItemId, string folderPath) { + object[] results = this.Invoke("DeleteHeliconApeFolder", new object[] { siteItemId, folderPath}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteHeliconApeFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteHeliconApeFolder", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteHeliconApeFolder(int siteItemId, string folderPath, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteHeliconApeFolder", new object[] { siteItemId, folderPath}, callback, asyncState); - } - - /// - public int EndDeleteHeliconApeFolder(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteHeliconApeFolderAsync(int siteItemId, string folderPath) - { - this.DeleteHeliconApeFolderAsync(siteItemId, folderPath, null); - } - - /// - public void DeleteHeliconApeFolderAsync(int siteItemId, string folderPath, object userState) - { - if ((this.DeleteHeliconApeFolderOperationCompleted == null)) - { - this.DeleteHeliconApeFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteHeliconApeFolderOperationCompleted); - } - this.InvokeAsync("DeleteHeliconApeFolder", new object[] { + } + + /// + public int EndDeleteHeliconApeFolder(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteHeliconApeFolderAsync(int siteItemId, string folderPath) { + this.DeleteHeliconApeFolderAsync(siteItemId, folderPath, null); + } + + /// + public void DeleteHeliconApeFolderAsync(int siteItemId, string folderPath, object userState) { + if ((this.DeleteHeliconApeFolderOperationCompleted == null)) { + this.DeleteHeliconApeFolderOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteHeliconApeFolderOperationCompleted); + } + this.InvokeAsync("DeleteHeliconApeFolder", new object[] { siteItemId, folderPath}, this.DeleteHeliconApeFolderOperationCompleted, userState); - } - - private void OnDeleteHeliconApeFolderOperationCompleted(object arg) - { - if ((this.DeleteHeliconApeFolderCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteHeliconApeFolderCompleted(this, new DeleteHeliconApeFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeUsers", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public HtaccessUser[] GetHeliconApeUsers(int siteItemId) - { - object[] results = this.Invoke("GetHeliconApeUsers", new object[] { + } + + private void OnDeleteHeliconApeFolderOperationCompleted(object arg) { + if ((this.DeleteHeliconApeFolderCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteHeliconApeFolderCompleted(this, new DeleteHeliconApeFolderCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeUsers", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public HtaccessUser[] GetHeliconApeUsers(int siteItemId) { + object[] results = this.Invoke("GetHeliconApeUsers", new object[] { siteItemId}); - return ((HtaccessUser[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeUsers(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeUsers", new object[] { + return ((HtaccessUser[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeUsers(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeUsers", new object[] { siteItemId}, callback, asyncState); - } - - /// - public HtaccessUser[] EndGetHeliconApeUsers(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((HtaccessUser[])(results[0])); - } - - /// - public void GetHeliconApeUsersAsync(int siteItemId) - { - this.GetHeliconApeUsersAsync(siteItemId, null); - } - - /// - public void GetHeliconApeUsersAsync(int siteItemId, object userState) - { - if ((this.GetHeliconApeUsersOperationCompleted == null)) - { - this.GetHeliconApeUsersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeUsersOperationCompleted); - } - this.InvokeAsync("GetHeliconApeUsers", new object[] { + } + + /// + public HtaccessUser[] EndGetHeliconApeUsers(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((HtaccessUser[])(results[0])); + } + + /// + public void GetHeliconApeUsersAsync(int siteItemId) { + this.GetHeliconApeUsersAsync(siteItemId, null); + } + + /// + public void GetHeliconApeUsersAsync(int siteItemId, object userState) { + if ((this.GetHeliconApeUsersOperationCompleted == null)) { + this.GetHeliconApeUsersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeUsersOperationCompleted); + } + this.InvokeAsync("GetHeliconApeUsers", new object[] { siteItemId}, this.GetHeliconApeUsersOperationCompleted, userState); - } - - private void OnGetHeliconApeUsersOperationCompleted(object arg) - { - if ((this.GetHeliconApeUsersCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeUsersCompleted(this, new GetHeliconApeUsersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeUser", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public HtaccessUser GetHeliconApeUser(int siteItemId, string userName) - { - object[] results = this.Invoke("GetHeliconApeUser", new object[] { + } + + private void OnGetHeliconApeUsersOperationCompleted(object arg) { + if ((this.GetHeliconApeUsersCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeUsersCompleted(this, new GetHeliconApeUsersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeUser", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public HtaccessUser GetHeliconApeUser(int siteItemId, string userName) { + object[] results = this.Invoke("GetHeliconApeUser", new object[] { siteItemId, userName}); - return ((HtaccessUser)(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeUser", new object[] { + return ((HtaccessUser)(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeUser", new object[] { siteItemId, userName}, callback, asyncState); - } - - /// - public HtaccessUser EndGetHeliconApeUser(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((HtaccessUser)(results[0])); - } - - /// - public void GetHeliconApeUserAsync(int siteItemId, string userName) - { - this.GetHeliconApeUserAsync(siteItemId, userName, null); - } - - /// - public void GetHeliconApeUserAsync(int siteItemId, string userName, object userState) - { - if ((this.GetHeliconApeUserOperationCompleted == null)) - { - this.GetHeliconApeUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeUserOperationCompleted); - } - this.InvokeAsync("GetHeliconApeUser", new object[] { + } + + /// + public HtaccessUser EndGetHeliconApeUser(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((HtaccessUser)(results[0])); + } + + /// + public void GetHeliconApeUserAsync(int siteItemId, string userName) { + this.GetHeliconApeUserAsync(siteItemId, userName, null); + } + + /// + public void GetHeliconApeUserAsync(int siteItemId, string userName, object userState) { + if ((this.GetHeliconApeUserOperationCompleted == null)) { + this.GetHeliconApeUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeUserOperationCompleted); + } + this.InvokeAsync("GetHeliconApeUser", new object[] { siteItemId, userName}, this.GetHeliconApeUserOperationCompleted, userState); - } - - private void OnGetHeliconApeUserOperationCompleted(object arg) - { - if ((this.GetHeliconApeUserCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeUserCompleted(this, new GetHeliconApeUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeUser", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateHeliconApeUser(int siteItemId, HtaccessUser user) - { - object[] results = this.Invoke("UpdateHeliconApeUser", new object[] { + } + + private void OnGetHeliconApeUserOperationCompleted(object arg) { + if ((this.GetHeliconApeUserCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeUserCompleted(this, new GetHeliconApeUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeUser", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateHeliconApeUser(int siteItemId, HtaccessUser user) { + object[] results = this.Invoke("UpdateHeliconApeUser", new object[] { siteItemId, user}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateHeliconApeUser(int siteItemId, HtaccessUser user, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateHeliconApeUser", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateHeliconApeUser(int siteItemId, HtaccessUser user, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateHeliconApeUser", new object[] { siteItemId, user}, callback, asyncState); - } - - /// - public int EndUpdateHeliconApeUser(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateHeliconApeUserAsync(int siteItemId, HtaccessUser user) - { - this.UpdateHeliconApeUserAsync(siteItemId, user, null); - } - - /// - public void UpdateHeliconApeUserAsync(int siteItemId, HtaccessUser user, object userState) - { - if ((this.UpdateHeliconApeUserOperationCompleted == null)) - { - this.UpdateHeliconApeUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeUserOperationCompleted); - } - this.InvokeAsync("UpdateHeliconApeUser", new object[] { + } + + /// + public int EndUpdateHeliconApeUser(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateHeliconApeUserAsync(int siteItemId, HtaccessUser user) { + this.UpdateHeliconApeUserAsync(siteItemId, user, null); + } + + /// + public void UpdateHeliconApeUserAsync(int siteItemId, HtaccessUser user, object userState) { + if ((this.UpdateHeliconApeUserOperationCompleted == null)) { + this.UpdateHeliconApeUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeUserOperationCompleted); + } + this.InvokeAsync("UpdateHeliconApeUser", new object[] { siteItemId, user}, this.UpdateHeliconApeUserOperationCompleted, userState); - } - - private void OnUpdateHeliconApeUserOperationCompleted(object arg) - { - if ((this.UpdateHeliconApeUserCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateHeliconApeUserCompleted(this, new UpdateHeliconApeUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteHeliconApeUser", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteHeliconApeUser(int siteItemId, string userName) - { - object[] results = this.Invoke("DeleteHeliconApeUser", new object[] { + } + + private void OnUpdateHeliconApeUserOperationCompleted(object arg) { + if ((this.UpdateHeliconApeUserCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateHeliconApeUserCompleted(this, new UpdateHeliconApeUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteHeliconApeUser", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteHeliconApeUser(int siteItemId, string userName) { + object[] results = this.Invoke("DeleteHeliconApeUser", new object[] { siteItemId, userName}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteHeliconApeUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteHeliconApeUser", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteHeliconApeUser(int siteItemId, string userName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteHeliconApeUser", new object[] { siteItemId, userName}, callback, asyncState); - } - - /// - public int EndDeleteHeliconApeUser(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteHeliconApeUserAsync(int siteItemId, string userName) - { - this.DeleteHeliconApeUserAsync(siteItemId, userName, null); - } - - /// - public void DeleteHeliconApeUserAsync(int siteItemId, string userName, object userState) - { - if ((this.DeleteHeliconApeUserOperationCompleted == null)) - { - this.DeleteHeliconApeUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteHeliconApeUserOperationCompleted); - } - this.InvokeAsync("DeleteHeliconApeUser", new object[] { + } + + /// + public int EndDeleteHeliconApeUser(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteHeliconApeUserAsync(int siteItemId, string userName) { + this.DeleteHeliconApeUserAsync(siteItemId, userName, null); + } + + /// + public void DeleteHeliconApeUserAsync(int siteItemId, string userName, object userState) { + if ((this.DeleteHeliconApeUserOperationCompleted == null)) { + this.DeleteHeliconApeUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteHeliconApeUserOperationCompleted); + } + this.InvokeAsync("DeleteHeliconApeUser", new object[] { siteItemId, userName}, this.DeleteHeliconApeUserOperationCompleted, userState); - } - - private void OnDeleteHeliconApeUserOperationCompleted(object arg) - { - if ((this.DeleteHeliconApeUserCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteHeliconApeUserCompleted(this, new DeleteHeliconApeUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeGroups", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebGroup[] GetHeliconApeGroups(int siteItemId) - { - object[] results = this.Invoke("GetHeliconApeGroups", new object[] { + } + + private void OnDeleteHeliconApeUserOperationCompleted(object arg) { + if ((this.DeleteHeliconApeUserCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteHeliconApeUserCompleted(this, new DeleteHeliconApeUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeGroups", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebGroup[] GetHeliconApeGroups(int siteItemId) { + object[] results = this.Invoke("GetHeliconApeGroups", new object[] { siteItemId}); - return ((WebGroup[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeGroups(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeGroups", new object[] { + return ((WebGroup[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeGroups(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeGroups", new object[] { siteItemId}, callback, asyncState); - } - - /// - public WebGroup[] EndGetHeliconApeGroups(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebGroup[])(results[0])); - } - - /// - public void GetHeliconApeGroupsAsync(int siteItemId) - { - this.GetHeliconApeGroupsAsync(siteItemId, null); - } - - /// - public void GetHeliconApeGroupsAsync(int siteItemId, object userState) - { - if ((this.GetHeliconApeGroupsOperationCompleted == null)) - { - this.GetHeliconApeGroupsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeGroupsOperationCompleted); - } - this.InvokeAsync("GetHeliconApeGroups", new object[] { + } + + /// + public WebGroup[] EndGetHeliconApeGroups(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebGroup[])(results[0])); + } + + /// + public void GetHeliconApeGroupsAsync(int siteItemId) { + this.GetHeliconApeGroupsAsync(siteItemId, null); + } + + /// + public void GetHeliconApeGroupsAsync(int siteItemId, object userState) { + if ((this.GetHeliconApeGroupsOperationCompleted == null)) { + this.GetHeliconApeGroupsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeGroupsOperationCompleted); + } + this.InvokeAsync("GetHeliconApeGroups", new object[] { siteItemId}, this.GetHeliconApeGroupsOperationCompleted, userState); - } - - private void OnGetHeliconApeGroupsOperationCompleted(object arg) - { - if ((this.GetHeliconApeGroupsCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeGroupsCompleted(this, new GetHeliconApeGroupsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public WebGroup GetHeliconApeGroup(int siteItemId, string groupName) - { - object[] results = this.Invoke("GetHeliconApeGroup", new object[] { + } + + private void OnGetHeliconApeGroupsOperationCompleted(object arg) { + if ((this.GetHeliconApeGroupsCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeGroupsCompleted(this, new GetHeliconApeGroupsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetHeliconApeGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public WebGroup GetHeliconApeGroup(int siteItemId, string groupName) { + object[] results = this.Invoke("GetHeliconApeGroup", new object[] { siteItemId, groupName}); - return ((WebGroup)(results[0])); - } - - /// - public System.IAsyncResult BeginGetHeliconApeGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetHeliconApeGroup", new object[] { + return ((WebGroup)(results[0])); + } + + /// + public System.IAsyncResult BeginGetHeliconApeGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetHeliconApeGroup", new object[] { siteItemId, groupName}, callback, asyncState); - } - - /// - public WebGroup EndGetHeliconApeGroup(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((WebGroup)(results[0])); - } - - /// - public void GetHeliconApeGroupAsync(int siteItemId, string groupName) - { - this.GetHeliconApeGroupAsync(siteItemId, groupName, null); - } - - /// - public void GetHeliconApeGroupAsync(int siteItemId, string groupName, object userState) - { - if ((this.GetHeliconApeGroupOperationCompleted == null)) - { - this.GetHeliconApeGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeGroupOperationCompleted); - } - this.InvokeAsync("GetHeliconApeGroup", new object[] { + } + + /// + public WebGroup EndGetHeliconApeGroup(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((WebGroup)(results[0])); + } + + /// + public void GetHeliconApeGroupAsync(int siteItemId, string groupName) { + this.GetHeliconApeGroupAsync(siteItemId, groupName, null); + } + + /// + public void GetHeliconApeGroupAsync(int siteItemId, string groupName, object userState) { + if ((this.GetHeliconApeGroupOperationCompleted == null)) { + this.GetHeliconApeGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetHeliconApeGroupOperationCompleted); + } + this.InvokeAsync("GetHeliconApeGroup", new object[] { siteItemId, groupName}, this.GetHeliconApeGroupOperationCompleted, userState); - } - - private void OnGetHeliconApeGroupOperationCompleted(object arg) - { - if ((this.GetHeliconApeGroupCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetHeliconApeGroupCompleted(this, new GetHeliconApeGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int UpdateHeliconApeGroup(int siteItemId, WebGroup group) - { - object[] results = this.Invoke("UpdateHeliconApeGroup", new object[] { + } + + private void OnGetHeliconApeGroupOperationCompleted(object arg) { + if ((this.GetHeliconApeGroupCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetHeliconApeGroupCompleted(this, new GetHeliconApeGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/UpdateHeliconApeGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int UpdateHeliconApeGroup(int siteItemId, WebGroup group) { + object[] results = this.Invoke("UpdateHeliconApeGroup", new object[] { siteItemId, group}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginUpdateHeliconApeGroup(int siteItemId, WebGroup group, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("UpdateHeliconApeGroup", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginUpdateHeliconApeGroup(int siteItemId, WebGroup group, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("UpdateHeliconApeGroup", new object[] { siteItemId, group}, callback, asyncState); - } - - /// - public int EndUpdateHeliconApeGroup(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void UpdateHeliconApeGroupAsync(int siteItemId, WebGroup group) - { - this.UpdateHeliconApeGroupAsync(siteItemId, group, null); - } - - /// - public void UpdateHeliconApeGroupAsync(int siteItemId, WebGroup group, object userState) - { - if ((this.UpdateHeliconApeGroupOperationCompleted == null)) - { - this.UpdateHeliconApeGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeGroupOperationCompleted); - } - this.InvokeAsync("UpdateHeliconApeGroup", new object[] { + } + + /// + public int EndUpdateHeliconApeGroup(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void UpdateHeliconApeGroupAsync(int siteItemId, WebGroup group) { + this.UpdateHeliconApeGroupAsync(siteItemId, group, null); + } + + /// + public void UpdateHeliconApeGroupAsync(int siteItemId, WebGroup group, object userState) { + if ((this.UpdateHeliconApeGroupOperationCompleted == null)) { + this.UpdateHeliconApeGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateHeliconApeGroupOperationCompleted); + } + this.InvokeAsync("UpdateHeliconApeGroup", new object[] { siteItemId, group}, this.UpdateHeliconApeGroupOperationCompleted, userState); - } - - private void OnUpdateHeliconApeGroupOperationCompleted(object arg) - { - if ((this.UpdateHeliconApeGroupCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.UpdateHeliconApeGroupCompleted(this, new UpdateHeliconApeGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteHeliconApeGroup", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int DeleteHeliconApeGroup(int siteItemId, string groupName) - { - object[] results = this.Invoke("DeleteHeliconApeGroup", new object[] { + } + + private void OnUpdateHeliconApeGroupOperationCompleted(object arg) { + if ((this.UpdateHeliconApeGroupCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.UpdateHeliconApeGroupCompleted(this, new UpdateHeliconApeGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteHeliconApeGroup", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int DeleteHeliconApeGroup(int siteItemId, string groupName) { + object[] results = this.Invoke("DeleteHeliconApeGroup", new object[] { siteItemId, groupName}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteHeliconApeGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteHeliconApeGroup", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteHeliconApeGroup(int siteItemId, string groupName, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteHeliconApeGroup", new object[] { siteItemId, groupName}, callback, asyncState); - } - - /// - public int EndDeleteHeliconApeGroup(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void DeleteHeliconApeGroupAsync(int siteItemId, string groupName) - { - this.DeleteHeliconApeGroupAsync(siteItemId, groupName, null); - } - - /// - public void DeleteHeliconApeGroupAsync(int siteItemId, string groupName, object userState) - { - if ((this.DeleteHeliconApeGroupOperationCompleted == null)) - { - this.DeleteHeliconApeGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteHeliconApeGroupOperationCompleted); - } - this.InvokeAsync("DeleteHeliconApeGroup", new object[] { + } + + /// + public int EndDeleteHeliconApeGroup(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void DeleteHeliconApeGroupAsync(int siteItemId, string groupName) { + this.DeleteHeliconApeGroupAsync(siteItemId, groupName, null); + } + + /// + public void DeleteHeliconApeGroupAsync(int siteItemId, string groupName, object userState) { + if ((this.DeleteHeliconApeGroupOperationCompleted == null)) { + this.DeleteHeliconApeGroupOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteHeliconApeGroupOperationCompleted); + } + this.InvokeAsync("DeleteHeliconApeGroup", new object[] { siteItemId, groupName}, this.DeleteHeliconApeGroupOperationCompleted, userState); - } - - private void OnDeleteHeliconApeGroupOperationCompleted(object arg) - { - if ((this.DeleteHeliconApeGroupCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteHeliconApeGroupCompleted(this, new DeleteHeliconApeGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GrantWebManagementAccess", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject GrantWebManagementAccess(int siteItemId, string accountName, string accountPassword) - { - object[] results = this.Invoke("GrantWebManagementAccess", new object[] { + } + + private void OnDeleteHeliconApeGroupOperationCompleted(object arg) { + if ((this.DeleteHeliconApeGroupCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteHeliconApeGroupCompleted(this, new DeleteHeliconApeGroupCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GrantWebManagementAccess", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject GrantWebManagementAccess(int siteItemId, string accountName, string accountPassword) { + object[] results = this.Invoke("GrantWebManagementAccess", new object[] { siteItemId, accountName, accountPassword}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginGrantWebManagementAccess(int siteItemId, string accountName, string accountPassword, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GrantWebManagementAccess", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginGrantWebManagementAccess(int siteItemId, string accountName, string accountPassword, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GrantWebManagementAccess", new object[] { siteItemId, accountName, accountPassword}, callback, asyncState); - } - - /// - public ResultObject EndGrantWebManagementAccess(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void GrantWebManagementAccessAsync(int siteItemId, string accountName, string accountPassword) - { - this.GrantWebManagementAccessAsync(siteItemId, accountName, accountPassword, null); - } - - /// - public void GrantWebManagementAccessAsync(int siteItemId, string accountName, string accountPassword, object userState) - { - if ((this.GrantWebManagementAccessOperationCompleted == null)) - { - this.GrantWebManagementAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGrantWebManagementAccessOperationCompleted); - } - this.InvokeAsync("GrantWebManagementAccess", new object[] { + } + + /// + public ResultObject EndGrantWebManagementAccess(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void GrantWebManagementAccessAsync(int siteItemId, string accountName, string accountPassword) { + this.GrantWebManagementAccessAsync(siteItemId, accountName, accountPassword, null); + } + + /// + public void GrantWebManagementAccessAsync(int siteItemId, string accountName, string accountPassword, object userState) { + if ((this.GrantWebManagementAccessOperationCompleted == null)) { + this.GrantWebManagementAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGrantWebManagementAccessOperationCompleted); + } + this.InvokeAsync("GrantWebManagementAccess", new object[] { siteItemId, accountName, accountPassword}, this.GrantWebManagementAccessOperationCompleted, userState); - } - - private void OnGrantWebManagementAccessOperationCompleted(object arg) - { - if ((this.GrantWebManagementAccessCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GrantWebManagementAccessCompleted(this, new GrantWebManagementAccessCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RevokeWebManagementAccess", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public void RevokeWebManagementAccess(int siteItemId) - { - this.Invoke("RevokeWebManagementAccess", new object[] { + } + + private void OnGrantWebManagementAccessOperationCompleted(object arg) { + if ((this.GrantWebManagementAccessCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GrantWebManagementAccessCompleted(this, new GrantWebManagementAccessCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/RevokeWebManagementAccess", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public void RevokeWebManagementAccess(int siteItemId) { + this.Invoke("RevokeWebManagementAccess", new object[] { siteItemId}); - } - - /// - public System.IAsyncResult BeginRevokeWebManagementAccess(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("RevokeWebManagementAccess", new object[] { + } + + /// + public System.IAsyncResult BeginRevokeWebManagementAccess(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("RevokeWebManagementAccess", new object[] { siteItemId}, callback, asyncState); - } - - /// - public void EndRevokeWebManagementAccess(System.IAsyncResult asyncResult) - { - this.EndInvoke(asyncResult); - } - - /// - public void RevokeWebManagementAccessAsync(int siteItemId) - { - this.RevokeWebManagementAccessAsync(siteItemId, null); - } - - /// - public void RevokeWebManagementAccessAsync(int siteItemId, object userState) - { - if ((this.RevokeWebManagementAccessOperationCompleted == null)) - { - this.RevokeWebManagementAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRevokeWebManagementAccessOperationCompleted); - } - this.InvokeAsync("RevokeWebManagementAccess", new object[] { + } + + /// + public void EndRevokeWebManagementAccess(System.IAsyncResult asyncResult) { + this.EndInvoke(asyncResult); + } + + /// + public void RevokeWebManagementAccessAsync(int siteItemId) { + this.RevokeWebManagementAccessAsync(siteItemId, null); + } + + /// + public void RevokeWebManagementAccessAsync(int siteItemId, object userState) { + if ((this.RevokeWebManagementAccessOperationCompleted == null)) { + this.RevokeWebManagementAccessOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRevokeWebManagementAccessOperationCompleted); + } + this.InvokeAsync("RevokeWebManagementAccess", new object[] { siteItemId}, this.RevokeWebManagementAccessOperationCompleted, userState); - } - - private void OnRevokeWebManagementAccessOperationCompleted(object arg) - { - if ((this.RevokeWebManagementAccessCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.RevokeWebManagementAccessCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeWebManagementAccessPassword", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject ChangeWebManagementAccessPassword(int siteItemId, string accountPassword) - { - object[] results = this.Invoke("ChangeWebManagementAccessPassword", new object[] { + } + + private void OnRevokeWebManagementAccessOperationCompleted(object arg) { + if ((this.RevokeWebManagementAccessCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.RevokeWebManagementAccessCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ChangeWebManagementAccessPassword", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject ChangeWebManagementAccessPassword(int siteItemId, string accountPassword) { + object[] results = this.Invoke("ChangeWebManagementAccessPassword", new object[] { siteItemId, accountPassword}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginChangeWebManagementAccessPassword(int siteItemId, string accountPassword, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("ChangeWebManagementAccessPassword", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginChangeWebManagementAccessPassword(int siteItemId, string accountPassword, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("ChangeWebManagementAccessPassword", new object[] { siteItemId, accountPassword}, callback, asyncState); - } - - /// - public ResultObject EndChangeWebManagementAccessPassword(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void ChangeWebManagementAccessPasswordAsync(int siteItemId, string accountPassword) - { - this.ChangeWebManagementAccessPasswordAsync(siteItemId, accountPassword, null); - } - - /// - public void ChangeWebManagementAccessPasswordAsync(int siteItemId, string accountPassword, object userState) - { - if ((this.ChangeWebManagementAccessPasswordOperationCompleted == null)) - { - this.ChangeWebManagementAccessPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeWebManagementAccessPasswordOperationCompleted); - } - this.InvokeAsync("ChangeWebManagementAccessPassword", new object[] { + } + + /// + public ResultObject EndChangeWebManagementAccessPassword(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void ChangeWebManagementAccessPasswordAsync(int siteItemId, string accountPassword) { + this.ChangeWebManagementAccessPasswordAsync(siteItemId, accountPassword, null); + } + + /// + public void ChangeWebManagementAccessPasswordAsync(int siteItemId, string accountPassword, object userState) { + if ((this.ChangeWebManagementAccessPasswordOperationCompleted == null)) { + this.ChangeWebManagementAccessPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnChangeWebManagementAccessPasswordOperationCompleted); + } + this.InvokeAsync("ChangeWebManagementAccessPassword", new object[] { siteItemId, accountPassword}, this.ChangeWebManagementAccessPasswordOperationCompleted, userState); - } - - private void OnChangeWebManagementAccessPasswordOperationCompleted(object arg) - { - if ((this.ChangeWebManagementAccessPasswordCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.ChangeWebManagementAccessPasswordCompleted(this, new ChangeWebManagementAccessPasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CertificateRequest", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SSLCertificate CertificateRequest(SSLCertificate certificate, int siteItemId) - { - object[] results = this.Invoke("CertificateRequest", new object[] { + } + + private void OnChangeWebManagementAccessPasswordOperationCompleted(object arg) { + if ((this.ChangeWebManagementAccessPasswordCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.ChangeWebManagementAccessPasswordCompleted(this, new ChangeWebManagementAccessPasswordCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CertificateRequest", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SSLCertificate CertificateRequest(SSLCertificate certificate, int siteItemId) { + object[] results = this.Invoke("CertificateRequest", new object[] { certificate, siteItemId}); - return ((SSLCertificate)(results[0])); - } - - /// - public System.IAsyncResult BeginCertificateRequest(SSLCertificate certificate, int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("CertificateRequest", new object[] { + return ((SSLCertificate)(results[0])); + } + + /// + public System.IAsyncResult BeginCertificateRequest(SSLCertificate certificate, int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("CertificateRequest", new object[] { certificate, siteItemId}, callback, asyncState); - } - - /// - public SSLCertificate EndCertificateRequest(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((SSLCertificate)(results[0])); - } - - /// - public void CertificateRequestAsync(SSLCertificate certificate, int siteItemId) - { - this.CertificateRequestAsync(certificate, siteItemId, null); - } - - /// - public void CertificateRequestAsync(SSLCertificate certificate, int siteItemId, object userState) - { - if ((this.CertificateRequestOperationCompleted == null)) - { - this.CertificateRequestOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCertificateRequestOperationCompleted); - } - this.InvokeAsync("CertificateRequest", new object[] { + } + + /// + public SSLCertificate EndCertificateRequest(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((SSLCertificate)(results[0])); + } + + /// + public void CertificateRequestAsync(SSLCertificate certificate, int siteItemId) { + this.CertificateRequestAsync(certificate, siteItemId, null); + } + + /// + public void CertificateRequestAsync(SSLCertificate certificate, int siteItemId, object userState) { + if ((this.CertificateRequestOperationCompleted == null)) { + this.CertificateRequestOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCertificateRequestOperationCompleted); + } + this.InvokeAsync("CertificateRequest", new object[] { certificate, siteItemId}, this.CertificateRequestOperationCompleted, userState); - } - - private void OnCertificateRequestOperationCompleted(object arg) - { - if ((this.CertificateRequestCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.CertificateRequestCompleted(this, new CertificateRequestCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallCertificate", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject InstallCertificate(SSLCertificate certificate, int siteItemId) - { - object[] results = this.Invoke("InstallCertificate", new object[] { + } + + private void OnCertificateRequestOperationCompleted(object arg) { + if ((this.CertificateRequestCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.CertificateRequestCompleted(this, new CertificateRequestCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallCertificate", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject InstallCertificate(SSLCertificate certificate, int siteItemId) { + object[] results = this.Invoke("InstallCertificate", new object[] { certificate, siteItemId}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginInstallCertificate(SSLCertificate certificate, int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("InstallCertificate", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginInstallCertificate(SSLCertificate certificate, int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("InstallCertificate", new object[] { certificate, siteItemId}, callback, asyncState); - } - - /// - public ResultObject EndInstallCertificate(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void InstallCertificateAsync(SSLCertificate certificate, int siteItemId) - { - this.InstallCertificateAsync(certificate, siteItemId, null); - } - - /// - public void InstallCertificateAsync(SSLCertificate certificate, int siteItemId, object userState) - { - if ((this.InstallCertificateOperationCompleted == null)) - { - this.InstallCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallCertificateOperationCompleted); - } - this.InvokeAsync("InstallCertificate", new object[] { + } + + /// + public ResultObject EndInstallCertificate(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void InstallCertificateAsync(SSLCertificate certificate, int siteItemId) { + this.InstallCertificateAsync(certificate, siteItemId, null); + } + + /// + public void InstallCertificateAsync(SSLCertificate certificate, int siteItemId, object userState) { + if ((this.InstallCertificateOperationCompleted == null)) { + this.InstallCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallCertificateOperationCompleted); + } + this.InvokeAsync("InstallCertificate", new object[] { certificate, siteItemId}, this.InstallCertificateOperationCompleted, userState); - } - - private void OnInstallCertificateOperationCompleted(object arg) - { - if ((this.InstallCertificateCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.InstallCertificateCompleted(this, new InstallCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallPfx", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject InstallPfx([System.Xml.Serialization.XmlElementAttribute(DataType = "base64Binary")] byte[] certificate, int siteItemId, string password) - { - object[] results = this.Invoke("InstallPfx", new object[] { + } + + private void OnInstallCertificateOperationCompleted(object arg) { + if ((this.InstallCertificateCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.InstallCertificateCompleted(this, new InstallCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/InstallPfx", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject InstallPfx([System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] certificate, int siteItemId, string password) { + object[] results = this.Invoke("InstallPfx", new object[] { certificate, siteItemId, password}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginInstallPfx(byte[] certificate, int siteItemId, string password, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("InstallPfx", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginInstallPfx(byte[] certificate, int siteItemId, string password, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("InstallPfx", new object[] { certificate, siteItemId, password}, callback, asyncState); - } - - /// - public ResultObject EndInstallPfx(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void InstallPfxAsync(byte[] certificate, int siteItemId, string password) - { - this.InstallPfxAsync(certificate, siteItemId, password, null); - } - - /// - public void InstallPfxAsync(byte[] certificate, int siteItemId, string password, object userState) - { - if ((this.InstallPfxOperationCompleted == null)) - { - this.InstallPfxOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallPfxOperationCompleted); - } - this.InvokeAsync("InstallPfx", new object[] { + } + + /// + public ResultObject EndInstallPfx(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void InstallPfxAsync(byte[] certificate, int siteItemId, string password) { + this.InstallPfxAsync(certificate, siteItemId, password, null); + } + + /// + public void InstallPfxAsync(byte[] certificate, int siteItemId, string password, object userState) { + if ((this.InstallPfxOperationCompleted == null)) { + this.InstallPfxOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInstallPfxOperationCompleted); + } + this.InvokeAsync("InstallPfx", new object[] { certificate, siteItemId, password}, this.InstallPfxOperationCompleted, userState); - } - - private void OnInstallPfxOperationCompleted(object arg) - { - if ((this.InstallPfxCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.InstallPfxCompleted(this, new InstallPfxCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPendingCertificates", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SSLCertificate[] GetPendingCertificates(int siteItemId) - { - object[] results = this.Invoke("GetPendingCertificates", new object[] { + } + + private void OnInstallPfxOperationCompleted(object arg) { + if ((this.InstallPfxCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.InstallPfxCompleted(this, new InstallPfxCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetPendingCertificates", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SSLCertificate[] GetPendingCertificates(int siteItemId) { + object[] results = this.Invoke("GetPendingCertificates", new object[] { siteItemId}); - return ((SSLCertificate[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetPendingCertificates(int siteItemId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetPendingCertificates", new object[] { + return ((SSLCertificate[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetPendingCertificates(int siteItemId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetPendingCertificates", new object[] { siteItemId}, callback, asyncState); - } - - /// - public SSLCertificate[] EndGetPendingCertificates(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((SSLCertificate[])(results[0])); - } - - /// - public void GetPendingCertificatesAsync(int siteItemId) - { - this.GetPendingCertificatesAsync(siteItemId, null); - } - - /// - public void GetPendingCertificatesAsync(int siteItemId, object userState) - { - if ((this.GetPendingCertificatesOperationCompleted == null)) - { - this.GetPendingCertificatesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPendingCertificatesOperationCompleted); - } - this.InvokeAsync("GetPendingCertificates", new object[] { + } + + /// + public SSLCertificate[] EndGetPendingCertificates(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((SSLCertificate[])(results[0])); + } + + /// + public void GetPendingCertificatesAsync(int siteItemId) { + this.GetPendingCertificatesAsync(siteItemId, null); + } + + /// + public void GetPendingCertificatesAsync(int siteItemId, object userState) { + if ((this.GetPendingCertificatesOperationCompleted == null)) { + this.GetPendingCertificatesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPendingCertificatesOperationCompleted); + } + this.InvokeAsync("GetPendingCertificates", new object[] { siteItemId}, this.GetPendingCertificatesOperationCompleted, userState); - } - - private void OnGetPendingCertificatesOperationCompleted(object arg) - { - if ((this.GetPendingCertificatesCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetPendingCertificatesCompleted(this, new GetPendingCertificatesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSSLCertificateByID", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SSLCertificate GetSSLCertificateByID(int Id) - { - object[] results = this.Invoke("GetSSLCertificateByID", new object[] { + } + + private void OnGetPendingCertificatesOperationCompleted(object arg) { + if ((this.GetPendingCertificatesCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetPendingCertificatesCompleted(this, new GetPendingCertificatesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSSLCertificateByID", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SSLCertificate GetSSLCertificateByID(int Id) { + object[] results = this.Invoke("GetSSLCertificateByID", new object[] { Id}); - return ((SSLCertificate)(results[0])); - } - - /// - public System.IAsyncResult BeginGetSSLCertificateByID(int Id, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSSLCertificateByID", new object[] { + return ((SSLCertificate)(results[0])); + } + + /// + public System.IAsyncResult BeginGetSSLCertificateByID(int Id, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSSLCertificateByID", new object[] { Id}, callback, asyncState); - } - - /// - public SSLCertificate EndGetSSLCertificateByID(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((SSLCertificate)(results[0])); - } - - /// - public void GetSSLCertificateByIDAsync(int Id) - { - this.GetSSLCertificateByIDAsync(Id, null); - } - - /// - public void GetSSLCertificateByIDAsync(int Id, object userState) - { - if ((this.GetSSLCertificateByIDOperationCompleted == null)) - { - this.GetSSLCertificateByIDOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSSLCertificateByIDOperationCompleted); - } - this.InvokeAsync("GetSSLCertificateByID", new object[] { + } + + /// + public SSLCertificate EndGetSSLCertificateByID(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((SSLCertificate)(results[0])); + } + + /// + public void GetSSLCertificateByIDAsync(int Id) { + this.GetSSLCertificateByIDAsync(Id, null); + } + + /// + public void GetSSLCertificateByIDAsync(int Id, object userState) { + if ((this.GetSSLCertificateByIDOperationCompleted == null)) { + this.GetSSLCertificateByIDOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSSLCertificateByIDOperationCompleted); + } + this.InvokeAsync("GetSSLCertificateByID", new object[] { Id}, this.GetSSLCertificateByIDOperationCompleted, userState); - } - - private void OnGetSSLCertificateByIDOperationCompleted(object arg) - { - if ((this.GetSSLCertificateByIDCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSSLCertificateByIDCompleted(this, new GetSSLCertificateByIDCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSiteCert", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SSLCertificate GetSiteCert(int siteID) - { - object[] results = this.Invoke("GetSiteCert", new object[] { + } + + private void OnGetSSLCertificateByIDOperationCompleted(object arg) { + if ((this.GetSSLCertificateByIDCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSSLCertificateByIDCompleted(this, new GetSSLCertificateByIDCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetSiteCert", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SSLCertificate GetSiteCert(int siteID) { + object[] results = this.Invoke("GetSiteCert", new object[] { siteID}); - return ((SSLCertificate)(results[0])); - } - - /// - public System.IAsyncResult BeginGetSiteCert(int siteID, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetSiteCert", new object[] { + return ((SSLCertificate)(results[0])); + } + + /// + public System.IAsyncResult BeginGetSiteCert(int siteID, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetSiteCert", new object[] { siteID}, callback, asyncState); - } - - /// - public SSLCertificate EndGetSiteCert(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((SSLCertificate)(results[0])); - } - - /// - public void GetSiteCertAsync(int siteID) - { - this.GetSiteCertAsync(siteID, null); - } - - /// - public void GetSiteCertAsync(int siteID, object userState) - { - if ((this.GetSiteCertOperationCompleted == null)) - { - this.GetSiteCertOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSiteCertOperationCompleted); - } - this.InvokeAsync("GetSiteCert", new object[] { + } + + /// + public SSLCertificate EndGetSiteCert(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((SSLCertificate)(results[0])); + } + + /// + public void GetSiteCertAsync(int siteID) { + this.GetSiteCertAsync(siteID, null); + } + + /// + public void GetSiteCertAsync(int siteID, object userState) { + if ((this.GetSiteCertOperationCompleted == null)) { + this.GetSiteCertOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSiteCertOperationCompleted); + } + this.InvokeAsync("GetSiteCert", new object[] { siteID}, this.GetSiteCertOperationCompleted, userState); - } - - private void OnGetSiteCertOperationCompleted(object arg) - { - if ((this.GetSiteCertCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetSiteCertCompleted(this, new GetSiteCertCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckSSLForWebsite", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public int CheckSSLForWebsite(int siteID, bool renewal) - { - object[] results = this.Invoke("CheckSSLForWebsite", new object[] { + } + + private void OnGetSiteCertOperationCompleted(object arg) { + if ((this.GetSiteCertCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetSiteCertCompleted(this, new GetSiteCertCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckSSLForWebsite", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public int CheckSSLForWebsite(int siteID, bool renewal) { + object[] results = this.Invoke("CheckSSLForWebsite", new object[] { siteID, renewal}); - return ((int)(results[0])); - } - - /// - public System.IAsyncResult BeginCheckSSLForWebsite(int siteID, bool renewal, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("CheckSSLForWebsite", new object[] { + return ((int)(results[0])); + } + + /// + public System.IAsyncResult BeginCheckSSLForWebsite(int siteID, bool renewal, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("CheckSSLForWebsite", new object[] { siteID, renewal}, callback, asyncState); - } - - /// - public int EndCheckSSLForWebsite(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((int)(results[0])); - } - - /// - public void CheckSSLForWebsiteAsync(int siteID, bool renewal) - { - this.CheckSSLForWebsiteAsync(siteID, renewal, null); - } - - /// - public void CheckSSLForWebsiteAsync(int siteID, bool renewal, object userState) - { - if ((this.CheckSSLForWebsiteOperationCompleted == null)) - { - this.CheckSSLForWebsiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckSSLForWebsiteOperationCompleted); - } - this.InvokeAsync("CheckSSLForWebsite", new object[] { + } + + /// + public int EndCheckSSLForWebsite(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((int)(results[0])); + } + + /// + public void CheckSSLForWebsiteAsync(int siteID, bool renewal) { + this.CheckSSLForWebsiteAsync(siteID, renewal, null); + } + + /// + public void CheckSSLForWebsiteAsync(int siteID, bool renewal, object userState) { + if ((this.CheckSSLForWebsiteOperationCompleted == null)) { + this.CheckSSLForWebsiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckSSLForWebsiteOperationCompleted); + } + this.InvokeAsync("CheckSSLForWebsite", new object[] { siteID, renewal}, this.CheckSSLForWebsiteOperationCompleted, userState); - } - - private void OnCheckSSLForWebsiteOperationCompleted(object arg) - { - if ((this.CheckSSLForWebsiteCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.CheckSSLForWebsiteCompleted(this, new CheckSSLForWebsiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckSSLForDomain", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject CheckSSLForDomain(string domain, int siteID) - { - object[] results = this.Invoke("CheckSSLForDomain", new object[] { + } + + private void OnCheckSSLForWebsiteOperationCompleted(object arg) { + if ((this.CheckSSLForWebsiteCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.CheckSSLForWebsiteCompleted(this, new CheckSSLForWebsiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckSSLForDomain", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject CheckSSLForDomain(string domain, int siteID) { + object[] results = this.Invoke("CheckSSLForDomain", new object[] { domain, siteID}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginCheckSSLForDomain(string domain, int siteID, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("CheckSSLForDomain", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginCheckSSLForDomain(string domain, int siteID, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("CheckSSLForDomain", new object[] { domain, siteID}, callback, asyncState); - } - - /// - public ResultObject EndCheckSSLForDomain(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void CheckSSLForDomainAsync(string domain, int siteID) - { - this.CheckSSLForDomainAsync(domain, siteID, null); - } - - /// - public void CheckSSLForDomainAsync(string domain, int siteID, object userState) - { - if ((this.CheckSSLForDomainOperationCompleted == null)) - { - this.CheckSSLForDomainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckSSLForDomainOperationCompleted); - } - this.InvokeAsync("CheckSSLForDomain", new object[] { + } + + /// + public ResultObject EndCheckSSLForDomain(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void CheckSSLForDomainAsync(string domain, int siteID) { + this.CheckSSLForDomainAsync(domain, siteID, null); + } + + /// + public void CheckSSLForDomainAsync(string domain, int siteID, object userState) { + if ((this.CheckSSLForDomainOperationCompleted == null)) { + this.CheckSSLForDomainOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckSSLForDomainOperationCompleted); + } + this.InvokeAsync("CheckSSLForDomain", new object[] { domain, siteID}, this.CheckSSLForDomainOperationCompleted, userState); - } - - private void OnCheckSSLForDomainOperationCompleted(object arg) - { - if ((this.CheckSSLForDomainCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.CheckSSLForDomainCompleted(this, new CheckSSLForDomainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ExportCertificate", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - [return: System.Xml.Serialization.XmlElementAttribute(DataType = "base64Binary")] - public byte[] ExportCertificate(int siteId, string serialNumber, string password) - { - object[] results = this.Invoke("ExportCertificate", new object[] { + } + + private void OnCheckSSLForDomainOperationCompleted(object arg) { + if ((this.CheckSSLForDomainCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.CheckSSLForDomainCompleted(this, new CheckSSLForDomainCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ExportCertificate", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + [return: System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] + public byte[] ExportCertificate(int siteId, string serialNumber, string password) { + object[] results = this.Invoke("ExportCertificate", new object[] { siteId, serialNumber, password}); - return ((byte[])(results[0])); - } - - /// - public System.IAsyncResult BeginExportCertificate(int siteId, string serialNumber, string password, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("ExportCertificate", new object[] { + return ((byte[])(results[0])); + } + + /// + public System.IAsyncResult BeginExportCertificate(int siteId, string serialNumber, string password, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("ExportCertificate", new object[] { siteId, serialNumber, password}, callback, asyncState); - } - - /// - public byte[] EndExportCertificate(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((byte[])(results[0])); - } - - /// - public void ExportCertificateAsync(int siteId, string serialNumber, string password) - { - this.ExportCertificateAsync(siteId, serialNumber, password, null); - } - - /// - public void ExportCertificateAsync(int siteId, string serialNumber, string password, object userState) - { - if ((this.ExportCertificateOperationCompleted == null)) - { - this.ExportCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExportCertificateOperationCompleted); - } - this.InvokeAsync("ExportCertificate", new object[] { + } + + /// + public byte[] EndExportCertificate(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((byte[])(results[0])); + } + + /// + public void ExportCertificateAsync(int siteId, string serialNumber, string password) { + this.ExportCertificateAsync(siteId, serialNumber, password, null); + } + + /// + public void ExportCertificateAsync(int siteId, string serialNumber, string password, object userState) { + if ((this.ExportCertificateOperationCompleted == null)) { + this.ExportCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExportCertificateOperationCompleted); + } + this.InvokeAsync("ExportCertificate", new object[] { siteId, serialNumber, password}, this.ExportCertificateOperationCompleted, userState); - } - - private void OnExportCertificateOperationCompleted(object arg) - { - if ((this.ExportCertificateCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.ExportCertificateCompleted(this, new ExportCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetCertificatesForSite", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public SSLCertificate[] GetCertificatesForSite(int siteId) - { - object[] results = this.Invoke("GetCertificatesForSite", new object[] { + } + + private void OnExportCertificateOperationCompleted(object arg) { + if ((this.ExportCertificateCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.ExportCertificateCompleted(this, new ExportCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/GetCertificatesForSite", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public SSLCertificate[] GetCertificatesForSite(int siteId) { + object[] results = this.Invoke("GetCertificatesForSite", new object[] { siteId}); - return ((SSLCertificate[])(results[0])); - } - - /// - public System.IAsyncResult BeginGetCertificatesForSite(int siteId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("GetCertificatesForSite", new object[] { + return ((SSLCertificate[])(results[0])); + } + + /// + public System.IAsyncResult BeginGetCertificatesForSite(int siteId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("GetCertificatesForSite", new object[] { siteId}, callback, asyncState); - } - - /// - public SSLCertificate[] EndGetCertificatesForSite(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((SSLCertificate[])(results[0])); - } - - /// - public void GetCertificatesForSiteAsync(int siteId) - { - this.GetCertificatesForSiteAsync(siteId, null); - } - - /// - public void GetCertificatesForSiteAsync(int siteId, object userState) - { - if ((this.GetCertificatesForSiteOperationCompleted == null)) - { - this.GetCertificatesForSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCertificatesForSiteOperationCompleted); - } - this.InvokeAsync("GetCertificatesForSite", new object[] { + } + + /// + public SSLCertificate[] EndGetCertificatesForSite(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((SSLCertificate[])(results[0])); + } + + /// + public void GetCertificatesForSiteAsync(int siteId) { + this.GetCertificatesForSiteAsync(siteId, null); + } + + /// + public void GetCertificatesForSiteAsync(int siteId, object userState) { + if ((this.GetCertificatesForSiteOperationCompleted == null)) { + this.GetCertificatesForSiteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCertificatesForSiteOperationCompleted); + } + this.InvokeAsync("GetCertificatesForSite", new object[] { siteId}, this.GetCertificatesForSiteOperationCompleted, userState); - } - - private void OnGetCertificatesForSiteOperationCompleted(object arg) - { - if ((this.GetCertificatesForSiteCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.GetCertificatesForSiteCompleted(this, new GetCertificatesForSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteCertificate", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject DeleteCertificate(int siteId, SSLCertificate certificate) - { - object[] results = this.Invoke("DeleteCertificate", new object[] { + } + + private void OnGetCertificatesForSiteOperationCompleted(object arg) { + if ((this.GetCertificatesForSiteCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.GetCertificatesForSiteCompleted(this, new GetCertificatesForSiteCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteCertificate", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject DeleteCertificate(int siteId, SSLCertificate certificate) { + object[] results = this.Invoke("DeleteCertificate", new object[] { siteId, certificate}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteCertificate(int siteId, SSLCertificate certificate, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteCertificate", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteCertificate(int siteId, SSLCertificate certificate, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteCertificate", new object[] { siteId, certificate}, callback, asyncState); - } - - /// - public ResultObject EndDeleteCertificate(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void DeleteCertificateAsync(int siteId, SSLCertificate certificate) - { - this.DeleteCertificateAsync(siteId, certificate, null); - } - - /// - public void DeleteCertificateAsync(int siteId, SSLCertificate certificate, object userState) - { - if ((this.DeleteCertificateOperationCompleted == null)) - { - this.DeleteCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteCertificateOperationCompleted); - } - this.InvokeAsync("DeleteCertificate", new object[] { + } + + /// + public ResultObject EndDeleteCertificate(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void DeleteCertificateAsync(int siteId, SSLCertificate certificate) { + this.DeleteCertificateAsync(siteId, certificate, null); + } + + /// + public void DeleteCertificateAsync(int siteId, SSLCertificate certificate, object userState) { + if ((this.DeleteCertificateOperationCompleted == null)) { + this.DeleteCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteCertificateOperationCompleted); + } + this.InvokeAsync("DeleteCertificate", new object[] { siteId, certificate}, this.DeleteCertificateOperationCompleted, userState); - } - - private void OnDeleteCertificateOperationCompleted(object arg) - { - if ((this.DeleteCertificateCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteCertificateCompleted(this, new DeleteCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ImportCertificate", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject ImportCertificate(int siteId) - { - object[] results = this.Invoke("ImportCertificate", new object[] { + } + + private void OnDeleteCertificateOperationCompleted(object arg) { + if ((this.DeleteCertificateCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteCertificateCompleted(this, new DeleteCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/ImportCertificate", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject ImportCertificate(int siteId) { + object[] results = this.Invoke("ImportCertificate", new object[] { siteId}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginImportCertificate(int siteId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("ImportCertificate", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginImportCertificate(int siteId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("ImportCertificate", new object[] { siteId}, callback, asyncState); - } - - /// - public ResultObject EndImportCertificate(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void ImportCertificateAsync(int siteId) - { - this.ImportCertificateAsync(siteId, null); - } - - /// - public void ImportCertificateAsync(int siteId, object userState) - { - if ((this.ImportCertificateOperationCompleted == null)) - { - this.ImportCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnImportCertificateOperationCompleted); - } - this.InvokeAsync("ImportCertificate", new object[] { + } + + /// + public ResultObject EndImportCertificate(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void ImportCertificateAsync(int siteId) { + this.ImportCertificateAsync(siteId, null); + } + + /// + public void ImportCertificateAsync(int siteId, object userState) { + if ((this.ImportCertificateOperationCompleted == null)) { + this.ImportCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnImportCertificateOperationCompleted); + } + this.InvokeAsync("ImportCertificate", new object[] { siteId}, this.ImportCertificateOperationCompleted, userState); - } - - private void OnImportCertificateOperationCompleted(object arg) - { - if ((this.ImportCertificateCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.ImportCertificateCompleted(this, new ImportCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckCertificate", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject CheckCertificate(int siteId) - { - object[] results = this.Invoke("CheckCertificate", new object[] { + } + + private void OnImportCertificateOperationCompleted(object arg) { + if ((this.ImportCertificateCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.ImportCertificateCompleted(this, new ImportCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/CheckCertificate", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject CheckCertificate(int siteId) { + object[] results = this.Invoke("CheckCertificate", new object[] { siteId}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginCheckCertificate(int siteId, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("CheckCertificate", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginCheckCertificate(int siteId, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("CheckCertificate", new object[] { siteId}, callback, asyncState); - } - - /// - public ResultObject EndCheckCertificate(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void CheckCertificateAsync(int siteId) - { - this.CheckCertificateAsync(siteId, null); - } - - /// - public void CheckCertificateAsync(int siteId, object userState) - { - if ((this.CheckCertificateOperationCompleted == null)) - { - this.CheckCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckCertificateOperationCompleted); - } - this.InvokeAsync("CheckCertificate", new object[] { + } + + /// + public ResultObject EndCheckCertificate(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void CheckCertificateAsync(int siteId) { + this.CheckCertificateAsync(siteId, null); + } + + /// + public void CheckCertificateAsync(int siteId, object userState) { + if ((this.CheckCertificateOperationCompleted == null)) { + this.CheckCertificateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckCertificateOperationCompleted); + } + this.InvokeAsync("CheckCertificate", new object[] { siteId}, this.CheckCertificateOperationCompleted, userState); - } - - private void OnCheckCertificateOperationCompleted(object arg) - { - if ((this.CheckCertificateCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.CheckCertificateCompleted(this, new CheckCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteCertificateRequest", RequestNamespace = "http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace = "http://smbsaas/websitepanel/enterpriseserver", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] - public ResultObject DeleteCertificateRequest(int siteId, int csrID) - { - object[] results = this.Invoke("DeleteCertificateRequest", new object[] { + } + + private void OnCheckCertificateOperationCompleted(object arg) { + if ((this.CheckCertificateCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.CheckCertificateCompleted(this, new CheckCertificateCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://smbsaas/websitepanel/enterpriseserver/DeleteCertificateRequest", RequestNamespace="http://smbsaas/websitepanel/enterpriseserver", ResponseNamespace="http://smbsaas/websitepanel/enterpriseserver", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] + public ResultObject DeleteCertificateRequest(int siteId, int csrID) { + object[] results = this.Invoke("DeleteCertificateRequest", new object[] { siteId, csrID}); - return ((ResultObject)(results[0])); - } - - /// - public System.IAsyncResult BeginDeleteCertificateRequest(int siteId, int csrID, System.AsyncCallback callback, object asyncState) - { - return this.BeginInvoke("DeleteCertificateRequest", new object[] { + return ((ResultObject)(results[0])); + } + + /// + public System.IAsyncResult BeginDeleteCertificateRequest(int siteId, int csrID, System.AsyncCallback callback, object asyncState) { + return this.BeginInvoke("DeleteCertificateRequest", new object[] { siteId, csrID}, callback, asyncState); - } - - /// - public ResultObject EndDeleteCertificateRequest(System.IAsyncResult asyncResult) - { - object[] results = this.EndInvoke(asyncResult); - return ((ResultObject)(results[0])); - } - - /// - public void DeleteCertificateRequestAsync(int siteId, int csrID) - { - this.DeleteCertificateRequestAsync(siteId, csrID, null); - } - - /// - public void DeleteCertificateRequestAsync(int siteId, int csrID, object userState) - { - if ((this.DeleteCertificateRequestOperationCompleted == null)) - { - this.DeleteCertificateRequestOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteCertificateRequestOperationCompleted); - } - this.InvokeAsync("DeleteCertificateRequest", new object[] { + } + + /// + public ResultObject EndDeleteCertificateRequest(System.IAsyncResult asyncResult) { + object[] results = this.EndInvoke(asyncResult); + return ((ResultObject)(results[0])); + } + + /// + public void DeleteCertificateRequestAsync(int siteId, int csrID) { + this.DeleteCertificateRequestAsync(siteId, csrID, null); + } + + /// + public void DeleteCertificateRequestAsync(int siteId, int csrID, object userState) { + if ((this.DeleteCertificateRequestOperationCompleted == null)) { + this.DeleteCertificateRequestOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteCertificateRequestOperationCompleted); + } + this.InvokeAsync("DeleteCertificateRequest", new object[] { siteId, csrID}, this.DeleteCertificateRequestOperationCompleted, userState); - } - - private void OnDeleteCertificateRequestOperationCompleted(object arg) - { - if ((this.DeleteCertificateRequestCompleted != null)) - { - System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); - this.DeleteCertificateRequestCompleted(this, new DeleteCertificateRequestCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); - } - } - - /// - public new void CancelAsync(object userState) - { - base.CancelAsync(userState); - } - } - - - - - - - - - - - - - - - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetRawWebSitesPagedCompletedEventHandler(object sender, GetRawWebSitesPagedCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawWebSitesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetRawWebSitesPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public System.Data.DataSet Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((System.Data.DataSet)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetWebSitesCompletedEventHandler(object sender, GetWebSitesCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetWebSitesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetWebSitesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebSite[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebSite[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetWebSiteCompletedEventHandler(object sender, GetWebSiteCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebSite Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebSite)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetVirtualDirectoriesCompletedEventHandler(object sender, GetVirtualDirectoriesCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetVirtualDirectoriesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetVirtualDirectoriesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebVirtualDirectory[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebVirtualDirectory[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetVirtualDirectoryCompletedEventHandler(object sender, GetVirtualDirectoryCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebVirtualDirectory Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebVirtualDirectory)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetWebSitePointersCompletedEventHandler(object sender, GetWebSitePointersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetWebSitePointersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetWebSitePointersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public DomainInfo[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((DomainInfo[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void AddWebSitePointerCompletedEventHandler(object sender, AddWebSitePointerCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddWebSitePointerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal AddWebSitePointerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteWebSitePointerCompletedEventHandler(object sender, DeleteWebSitePointerCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteWebSitePointerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteWebSitePointerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void AddWebSiteCompletedEventHandler(object sender, AddWebSiteCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal AddWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void AddVirtualDirectoryCompletedEventHandler(object sender, AddVirtualDirectoryCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal AddVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateWebSiteCompletedEventHandler(object sender, UpdateWebSiteCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void InstallFrontPageCompletedEventHandler(object sender, InstallFrontPageCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class InstallFrontPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal InstallFrontPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UninstallFrontPageCompletedEventHandler(object sender, UninstallFrontPageCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UninstallFrontPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UninstallFrontPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void ChangeFrontPagePasswordCompletedEventHandler(object sender, ChangeFrontPagePasswordCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ChangeFrontPagePasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal ChangeFrontPagePasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void RepairWebSiteCompletedEventHandler(object sender, RepairWebSiteCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class RepairWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal RepairWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateVirtualDirectoryCompletedEventHandler(object sender, UpdateVirtualDirectoryCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteWebSiteCompletedEventHandler(object sender, DeleteWebSiteCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteVirtualDirectoryCompletedEventHandler(object sender, DeleteVirtualDirectoryCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void ChangeSiteStateCompletedEventHandler(object sender, ChangeSiteStateCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ChangeSiteStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal ChangeSiteStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSharedSSLDomainsCompletedEventHandler(object sender, GetSharedSSLDomainsCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSharedSSLDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSharedSSLDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public string[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((string[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetRawSSLFoldersPagedCompletedEventHandler(object sender, GetRawSSLFoldersPagedCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetRawSSLFoldersPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetRawSSLFoldersPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public System.Data.DataSet Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((System.Data.DataSet)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSharedSSLFoldersCompletedEventHandler(object sender, GetSharedSSLFoldersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSharedSSLFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSharedSSLFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public SharedSSLFolder[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((SharedSSLFolder[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSharedSSLFolderCompletedEventHandler(object sender, GetSharedSSLFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public SharedSSLFolder Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((SharedSSLFolder)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void AddSharedSSLFolderCompletedEventHandler(object sender, AddSharedSSLFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class AddSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal AddSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateSharedSSLFolderCompletedEventHandler(object sender, UpdateSharedSSLFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteSharedSSLFolderCompletedEventHandler(object sender, DeleteSharedSSLFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void InstallSecuredFoldersCompletedEventHandler(object sender, InstallSecuredFoldersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class InstallSecuredFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal InstallSecuredFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UninstallSecuredFoldersCompletedEventHandler(object sender, UninstallSecuredFoldersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UninstallSecuredFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UninstallSecuredFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSecuredFoldersCompletedEventHandler(object sender, GetSecuredFoldersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSecuredFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSecuredFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebFolder[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebFolder[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSecuredFolderCompletedEventHandler(object sender, GetSecuredFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSecuredFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSecuredFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebFolder Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebFolder)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateSecuredFolderCompletedEventHandler(object sender, UpdateSecuredFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateSecuredFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateSecuredFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteSecuredFolderCompletedEventHandler(object sender, DeleteSecuredFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteSecuredFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteSecuredFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSecuredUsersCompletedEventHandler(object sender, GetSecuredUsersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSecuredUsersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSecuredUsersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebUser[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebUser[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSecuredUserCompletedEventHandler(object sender, GetSecuredUserCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSecuredUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSecuredUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebUser Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebUser)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateSecuredUserCompletedEventHandler(object sender, UpdateSecuredUserCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateSecuredUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateSecuredUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteSecuredUserCompletedEventHandler(object sender, DeleteSecuredUserCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteSecuredUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteSecuredUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSecuredGroupsCompletedEventHandler(object sender, GetSecuredGroupsCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSecuredGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSecuredGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebGroup[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebGroup[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSecuredGroupCompletedEventHandler(object sender, GetSecuredGroupCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSecuredGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSecuredGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebGroup Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebGroup)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateSecuredGroupCompletedEventHandler(object sender, UpdateSecuredGroupCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateSecuredGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateSecuredGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteSecuredGroupCompletedEventHandler(object sender, DeleteSecuredGroupCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteSecuredGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteSecuredGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GrantWebDeployPublishingAccessCompletedEventHandler(object sender, GrantWebDeployPublishingAccessCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GrantWebDeployPublishingAccessCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GrantWebDeployPublishingAccessCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - public delegate void SaveWebDeployPublishingProfileCompletedEventHandler(object sender, SaveWebDeployPublishingProfileCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class SaveWebDeployPublishingProfileCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal SaveWebDeployPublishingProfileCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - public delegate void RevokeWebDeployPublishingAccessCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - public delegate void GetWebDeployPublishingProfileCompletedEventHandler(object sender, GetWebDeployPublishingProfileCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetWebDeployPublishingProfileCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetWebDeployPublishingProfileCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public BytesResult Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((BytesResult)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - public delegate void ChangeWebDeployPublishingPasswordCompletedEventHandler(object sender, ChangeWebDeployPublishingPasswordCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ChangeWebDeployPublishingPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal ChangeWebDeployPublishingPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.42")] - public delegate void GetHeliconApeStatusCompletedEventHandler(object sender, GetHeliconApeStatusCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeStatusCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public HeliconApeStatus Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((HeliconApeStatus)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void InstallHeliconApeCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void EnableHeliconApeCompletedEventHandler(object sender, EnableHeliconApeCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class EnableHeliconApeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal EnableHeliconApeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DisableHeliconApeCompletedEventHandler(object sender, DisableHeliconApeCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DisableHeliconApeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DisableHeliconApeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetHeliconApeFoldersCompletedEventHandler(object sender, GetHeliconApeFoldersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public HtaccessFolder[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((HtaccessFolder[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetHeliconApeHttpdFolderCompletedEventHandler(object sender, GetHeliconApeHttpdFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeHttpdFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeHttpdFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public HtaccessFolder Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((HtaccessFolder)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetHeliconApeFolderCompletedEventHandler(object sender, GetHeliconApeFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public HtaccessFolder Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((HtaccessFolder)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateHeliconApeFolderCompletedEventHandler(object sender, UpdateHeliconApeFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateHeliconApeFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateHeliconApeFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateHeliconApeHttpdFolderCompletedEventHandler(object sender, UpdateHeliconApeHttpdFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateHeliconApeHttpdFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateHeliconApeHttpdFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteHeliconApeFolderCompletedEventHandler(object sender, DeleteHeliconApeFolderCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteHeliconApeFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteHeliconApeFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetHeliconApeUsersCompletedEventHandler(object sender, GetHeliconApeUsersCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeUsersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeUsersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public HtaccessUser[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((HtaccessUser[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetHeliconApeUserCompletedEventHandler(object sender, GetHeliconApeUserCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public HtaccessUser Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((HtaccessUser)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateHeliconApeUserCompletedEventHandler(object sender, UpdateHeliconApeUserCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateHeliconApeUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateHeliconApeUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteHeliconApeUserCompletedEventHandler(object sender, DeleteHeliconApeUserCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteHeliconApeUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteHeliconApeUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetHeliconApeGroupsCompletedEventHandler(object sender, GetHeliconApeGroupsCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebGroup[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebGroup[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetHeliconApeGroupCompletedEventHandler(object sender, GetHeliconApeGroupCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetHeliconApeGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetHeliconApeGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public WebGroup Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((WebGroup)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void UpdateHeliconApeGroupCompletedEventHandler(object sender, UpdateHeliconApeGroupCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class UpdateHeliconApeGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal UpdateHeliconApeGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteHeliconApeGroupCompletedEventHandler(object sender, DeleteHeliconApeGroupCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteHeliconApeGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteHeliconApeGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GrantWebManagementAccessCompletedEventHandler(object sender, GrantWebManagementAccessCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GrantWebManagementAccessCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GrantWebManagementAccessCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void RevokeWebManagementAccessCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void ChangeWebManagementAccessPasswordCompletedEventHandler(object sender, ChangeWebManagementAccessPasswordCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ChangeWebManagementAccessPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal ChangeWebManagementAccessPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void CertificateRequestCompletedEventHandler(object sender, CertificateRequestCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class CertificateRequestCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal CertificateRequestCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public SSLCertificate Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((SSLCertificate)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void InstallCertificateCompletedEventHandler(object sender, InstallCertificateCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class InstallCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal InstallCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void InstallPfxCompletedEventHandler(object sender, InstallPfxCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class InstallPfxCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal InstallPfxCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetPendingCertificatesCompletedEventHandler(object sender, GetPendingCertificatesCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetPendingCertificatesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetPendingCertificatesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public SSLCertificate[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((SSLCertificate[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSSLCertificateByIDCompletedEventHandler(object sender, GetSSLCertificateByIDCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSSLCertificateByIDCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSSLCertificateByIDCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public SSLCertificate Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((SSLCertificate)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetSiteCertCompletedEventHandler(object sender, GetSiteCertCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetSiteCertCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetSiteCertCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public SSLCertificate Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((SSLCertificate)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void CheckSSLForWebsiteCompletedEventHandler(object sender, CheckSSLForWebsiteCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class CheckSSLForWebsiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal CheckSSLForWebsiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public int Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((int)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void CheckSSLForDomainCompletedEventHandler(object sender, CheckSSLForDomainCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class CheckSSLForDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal CheckSSLForDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void ExportCertificateCompletedEventHandler(object sender, ExportCertificateCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ExportCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal ExportCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public byte[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((byte[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void GetCertificatesForSiteCompletedEventHandler(object sender, GetCertificatesForSiteCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class GetCertificatesForSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal GetCertificatesForSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public SSLCertificate[] Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((SSLCertificate[])(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteCertificateCompletedEventHandler(object sender, DeleteCertificateCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void ImportCertificateCompletedEventHandler(object sender, ImportCertificateCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class ImportCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal ImportCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void CheckCertificateCompletedEventHandler(object sender, CheckCertificateCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class CheckCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal CheckCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - public delegate void DeleteCertificateRequestCompletedEventHandler(object sender, DeleteCertificateRequestCompletedEventArgs e); - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - public partial class DeleteCertificateRequestCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs - { - - private object[] results; - - internal DeleteCertificateRequestCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : - base(exception, cancelled, userState) - { - this.results = results; - } - - /// - public ResultObject Result - { - get - { - this.RaiseExceptionIfNecessary(); - return ((ResultObject)(this.results[0])); - } - } - } + } + + private void OnDeleteCertificateRequestOperationCompleted(object arg) { + if ((this.DeleteCertificateRequestCompleted != null)) { + System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg)); + this.DeleteCertificateRequestCompleted(this, new DeleteCertificateRequestCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState)); + } + } + + /// + public new void CancelAsync(object userState) { + base.CancelAsync(userState); + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetRawWebSitesPagedCompletedEventHandler(object sender, GetRawWebSitesPagedCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetRawWebSitesPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetRawWebSitesPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public System.Data.DataSet Result { + get { + this.RaiseExceptionIfNecessary(); + return ((System.Data.DataSet)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetWebSitesCompletedEventHandler(object sender, GetWebSitesCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetWebSitesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetWebSitesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebSite[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebSite[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetWebSiteCompletedEventHandler(object sender, GetWebSiteCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebSite Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebSite)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetVirtualDirectoriesCompletedEventHandler(object sender, GetVirtualDirectoriesCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetVirtualDirectoriesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetVirtualDirectoriesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebVirtualDirectory[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebVirtualDirectory[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetVirtualDirectoryCompletedEventHandler(object sender, GetVirtualDirectoryCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebVirtualDirectory Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebVirtualDirectory)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetWebSitePointersCompletedEventHandler(object sender, GetWebSitePointersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetWebSitePointersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetWebSitePointersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public DomainInfo[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((DomainInfo[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void AddWebSitePointerCompletedEventHandler(object sender, AddWebSitePointerCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class AddWebSitePointerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal AddWebSitePointerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteWebSitePointerCompletedEventHandler(object sender, DeleteWebSitePointerCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteWebSitePointerCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteWebSitePointerCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void AddWebSiteCompletedEventHandler(object sender, AddWebSiteCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class AddWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal AddWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void AddVirtualDirectoryCompletedEventHandler(object sender, AddVirtualDirectoryCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class AddVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal AddVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateWebSiteCompletedEventHandler(object sender, UpdateWebSiteCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void InstallFrontPageCompletedEventHandler(object sender, InstallFrontPageCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class InstallFrontPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal InstallFrontPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UninstallFrontPageCompletedEventHandler(object sender, UninstallFrontPageCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UninstallFrontPageCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UninstallFrontPageCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void ChangeFrontPagePasswordCompletedEventHandler(object sender, ChangeFrontPagePasswordCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class ChangeFrontPagePasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal ChangeFrontPagePasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void RepairWebSiteCompletedEventHandler(object sender, RepairWebSiteCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class RepairWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal RepairWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateVirtualDirectoryCompletedEventHandler(object sender, UpdateVirtualDirectoryCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteWebSiteCompletedEventHandler(object sender, DeleteWebSiteCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteWebSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteWebSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteVirtualDirectoryCompletedEventHandler(object sender, DeleteVirtualDirectoryCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteVirtualDirectoryCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteVirtualDirectoryCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void ChangeSiteStateCompletedEventHandler(object sender, ChangeSiteStateCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class ChangeSiteStateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal ChangeSiteStateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSharedSSLDomainsCompletedEventHandler(object sender, GetSharedSSLDomainsCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSharedSSLDomainsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSharedSSLDomainsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public string[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((string[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetRawSSLFoldersPagedCompletedEventHandler(object sender, GetRawSSLFoldersPagedCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetRawSSLFoldersPagedCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetRawSSLFoldersPagedCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public System.Data.DataSet Result { + get { + this.RaiseExceptionIfNecessary(); + return ((System.Data.DataSet)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSharedSSLFoldersCompletedEventHandler(object sender, GetSharedSSLFoldersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSharedSSLFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSharedSSLFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public SharedSSLFolder[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((SharedSSLFolder[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSharedSSLFolderCompletedEventHandler(object sender, GetSharedSSLFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public SharedSSLFolder Result { + get { + this.RaiseExceptionIfNecessary(); + return ((SharedSSLFolder)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void AddSharedSSLFolderCompletedEventHandler(object sender, AddSharedSSLFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class AddSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal AddSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateSharedSSLFolderCompletedEventHandler(object sender, UpdateSharedSSLFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteSharedSSLFolderCompletedEventHandler(object sender, DeleteSharedSSLFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteSharedSSLFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteSharedSSLFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void InstallSecuredFoldersCompletedEventHandler(object sender, InstallSecuredFoldersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class InstallSecuredFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal InstallSecuredFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UninstallSecuredFoldersCompletedEventHandler(object sender, UninstallSecuredFoldersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UninstallSecuredFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UninstallSecuredFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSecuredFoldersCompletedEventHandler(object sender, GetSecuredFoldersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSecuredFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSecuredFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebFolder[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebFolder[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSecuredFolderCompletedEventHandler(object sender, GetSecuredFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSecuredFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSecuredFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebFolder Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebFolder)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateSecuredFolderCompletedEventHandler(object sender, UpdateSecuredFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateSecuredFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateSecuredFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteSecuredFolderCompletedEventHandler(object sender, DeleteSecuredFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteSecuredFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteSecuredFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSecuredUsersCompletedEventHandler(object sender, GetSecuredUsersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSecuredUsersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSecuredUsersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebUser[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebUser[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSecuredUserCompletedEventHandler(object sender, GetSecuredUserCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSecuredUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSecuredUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebUser Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebUser)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateSecuredUserCompletedEventHandler(object sender, UpdateSecuredUserCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateSecuredUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateSecuredUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteSecuredUserCompletedEventHandler(object sender, DeleteSecuredUserCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteSecuredUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteSecuredUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSecuredGroupsCompletedEventHandler(object sender, GetSecuredGroupsCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSecuredGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSecuredGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebGroup[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebGroup[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSecuredGroupCompletedEventHandler(object sender, GetSecuredGroupCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSecuredGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSecuredGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebGroup Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebGroup)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateSecuredGroupCompletedEventHandler(object sender, UpdateSecuredGroupCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateSecuredGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateSecuredGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteSecuredGroupCompletedEventHandler(object sender, DeleteSecuredGroupCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteSecuredGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteSecuredGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GrantWebDeployPublishingAccessCompletedEventHandler(object sender, GrantWebDeployPublishingAccessCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GrantWebDeployPublishingAccessCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GrantWebDeployPublishingAccessCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void SaveWebDeployPublishingProfileCompletedEventHandler(object sender, SaveWebDeployPublishingProfileCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class SaveWebDeployPublishingProfileCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal SaveWebDeployPublishingProfileCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void RevokeWebDeployPublishingAccessCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetWebDeployPublishingProfileCompletedEventHandler(object sender, GetWebDeployPublishingProfileCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetWebDeployPublishingProfileCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetWebDeployPublishingProfileCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public BytesResult Result { + get { + this.RaiseExceptionIfNecessary(); + return ((BytesResult)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void ChangeWebDeployPublishingPasswordCompletedEventHandler(object sender, ChangeWebDeployPublishingPasswordCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class ChangeWebDeployPublishingPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal ChangeWebDeployPublishingPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeStatusCompletedEventHandler(object sender, GetHeliconApeStatusCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeStatusCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeStatusCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public HeliconApeStatus Result { + get { + this.RaiseExceptionIfNecessary(); + return ((HeliconApeStatus)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void InstallHeliconApeCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void EnableHeliconApeCompletedEventHandler(object sender, EnableHeliconApeCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class EnableHeliconApeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal EnableHeliconApeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DisableHeliconApeCompletedEventHandler(object sender, DisableHeliconApeCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DisableHeliconApeCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DisableHeliconApeCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeFoldersCompletedEventHandler(object sender, GetHeliconApeFoldersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeFoldersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeFoldersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public HtaccessFolder[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((HtaccessFolder[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeHttpdFolderCompletedEventHandler(object sender, GetHeliconApeHttpdFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeHttpdFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeHttpdFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public HtaccessFolder Result { + get { + this.RaiseExceptionIfNecessary(); + return ((HtaccessFolder)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeFolderCompletedEventHandler(object sender, GetHeliconApeFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public HtaccessFolder Result { + get { + this.RaiseExceptionIfNecessary(); + return ((HtaccessFolder)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateHeliconApeFolderCompletedEventHandler(object sender, UpdateHeliconApeFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateHeliconApeFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateHeliconApeFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateHeliconApeHttpdFolderCompletedEventHandler(object sender, UpdateHeliconApeHttpdFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateHeliconApeHttpdFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateHeliconApeHttpdFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteHeliconApeFolderCompletedEventHandler(object sender, DeleteHeliconApeFolderCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteHeliconApeFolderCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteHeliconApeFolderCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeUsersCompletedEventHandler(object sender, GetHeliconApeUsersCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeUsersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeUsersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public HtaccessUser[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((HtaccessUser[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeUserCompletedEventHandler(object sender, GetHeliconApeUserCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public HtaccessUser Result { + get { + this.RaiseExceptionIfNecessary(); + return ((HtaccessUser)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateHeliconApeUserCompletedEventHandler(object sender, UpdateHeliconApeUserCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateHeliconApeUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateHeliconApeUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteHeliconApeUserCompletedEventHandler(object sender, DeleteHeliconApeUserCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteHeliconApeUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteHeliconApeUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeGroupsCompletedEventHandler(object sender, GetHeliconApeGroupsCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeGroupsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeGroupsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebGroup[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebGroup[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetHeliconApeGroupCompletedEventHandler(object sender, GetHeliconApeGroupCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetHeliconApeGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetHeliconApeGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public WebGroup Result { + get { + this.RaiseExceptionIfNecessary(); + return ((WebGroup)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void UpdateHeliconApeGroupCompletedEventHandler(object sender, UpdateHeliconApeGroupCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class UpdateHeliconApeGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal UpdateHeliconApeGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteHeliconApeGroupCompletedEventHandler(object sender, DeleteHeliconApeGroupCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteHeliconApeGroupCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteHeliconApeGroupCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GrantWebManagementAccessCompletedEventHandler(object sender, GrantWebManagementAccessCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GrantWebManagementAccessCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GrantWebManagementAccessCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void RevokeWebManagementAccessCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void ChangeWebManagementAccessPasswordCompletedEventHandler(object sender, ChangeWebManagementAccessPasswordCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class ChangeWebManagementAccessPasswordCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal ChangeWebManagementAccessPasswordCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void CertificateRequestCompletedEventHandler(object sender, CertificateRequestCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class CertificateRequestCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal CertificateRequestCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public SSLCertificate Result { + get { + this.RaiseExceptionIfNecessary(); + return ((SSLCertificate)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void InstallCertificateCompletedEventHandler(object sender, InstallCertificateCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class InstallCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal InstallCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void InstallPfxCompletedEventHandler(object sender, InstallPfxCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class InstallPfxCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal InstallPfxCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetPendingCertificatesCompletedEventHandler(object sender, GetPendingCertificatesCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetPendingCertificatesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetPendingCertificatesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public SSLCertificate[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((SSLCertificate[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSSLCertificateByIDCompletedEventHandler(object sender, GetSSLCertificateByIDCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSSLCertificateByIDCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSSLCertificateByIDCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public SSLCertificate Result { + get { + this.RaiseExceptionIfNecessary(); + return ((SSLCertificate)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetSiteCertCompletedEventHandler(object sender, GetSiteCertCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetSiteCertCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetSiteCertCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public SSLCertificate Result { + get { + this.RaiseExceptionIfNecessary(); + return ((SSLCertificate)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void CheckSSLForWebsiteCompletedEventHandler(object sender, CheckSSLForWebsiteCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class CheckSSLForWebsiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal CheckSSLForWebsiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public int Result { + get { + this.RaiseExceptionIfNecessary(); + return ((int)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void CheckSSLForDomainCompletedEventHandler(object sender, CheckSSLForDomainCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class CheckSSLForDomainCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal CheckSSLForDomainCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void ExportCertificateCompletedEventHandler(object sender, ExportCertificateCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class ExportCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal ExportCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public byte[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((byte[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void GetCertificatesForSiteCompletedEventHandler(object sender, GetCertificatesForSiteCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class GetCertificatesForSiteCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal GetCertificatesForSiteCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public SSLCertificate[] Result { + get { + this.RaiseExceptionIfNecessary(); + return ((SSLCertificate[])(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteCertificateCompletedEventHandler(object sender, DeleteCertificateCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void ImportCertificateCompletedEventHandler(object sender, ImportCertificateCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class ImportCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal ImportCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void CheckCertificateCompletedEventHandler(object sender, CheckCertificateCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class CheckCertificateCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal CheckCertificateCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + public delegate void DeleteCertificateRequestCompletedEventHandler(object sender, DeleteCertificateRequestCompletedEventArgs e); + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + public partial class DeleteCertificateRequestCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs { + + private object[] results; + + internal DeleteCertificateRequestCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) : + base(exception, cancelled, userState) { + this.results = results; + } + + /// + public ResultObject Result { + get { + this.RaiseExceptionIfNecessary(); + return ((ResultObject)(this.results[0])); + } + } + } } diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/DnsServers/DnsServerController.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/DnsServers/DnsServerController.cs index f643e724..056960bb 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/DnsServers/DnsServerController.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/DnsServers/DnsServerController.cs @@ -149,7 +149,7 @@ namespace WebsitePanel.EnterpriseServer } // add all other records - zoneRecords.AddRange(BuildDnsResourceRecords(records, zoneName, "")); + zoneRecords.AddRange(BuildDnsResourceRecords(records, "", zoneName, "")); // add zone records dns.AddZoneRecords(zoneName, zoneRecords.ToArray()); @@ -271,7 +271,7 @@ namespace WebsitePanel.EnterpriseServer return 0; } - public static List BuildDnsResourceRecords(List records, string domainName, string serviceIP) + public static List BuildDnsResourceRecords(List records, string hostName, string domainName, string serviceIP) { List zoneRecords = new List(); @@ -279,9 +279,9 @@ namespace WebsitePanel.EnterpriseServer { DnsRecord rr = new DnsRecord(); rr.RecordType = (DnsRecordType)Enum.Parse(typeof(DnsRecordType), record.RecordType, true); - rr.RecordName = record.RecordName; + rr.RecordName = Utils.ReplaceStringVariable(record.RecordName, "host_name", hostName); - if (record.RecordType == "A" || record.RecordType == "AAAA") + if (record.RecordType == "A" || record.RecordType == "AAAA") { rr.RecordData = String.IsNullOrEmpty(record.RecordData) ? record.ExternalIP : record.RecordData; rr.RecordData = Utils.ReplaceStringVariable(rr.RecordData, "ip", record.ExternalIP); diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Packages/PackageController.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Packages/PackageController.cs index 7e6a729a..910a49fa 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Packages/PackageController.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Packages/PackageController.cs @@ -389,7 +389,7 @@ namespace WebsitePanel.EnterpriseServer public static PackageResult AddPackageWithResources(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool createInstantAlias, bool createWebSite, - bool createFtpAccount, string ftpAccountName, bool createMailAccount) + bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName) { try { @@ -481,8 +481,7 @@ namespace WebsitePanel.EnterpriseServer // create web site try { - int webSiteId = WebServerController.AddWebSite( - packageId, domainId, 0, true); + int webSiteId = WebServerController.AddWebSite(packageId, hostName, domainId, 0, true); if (webSiteId < 0) { result.Result = webSiteId; diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Servers/ServerController.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Servers/ServerController.cs index 5045c7b8..bf469d50 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Servers/ServerController.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Servers/ServerController.cs @@ -1686,7 +1686,7 @@ namespace WebsitePanel.EnterpriseServer } public static int AddDomainWithProvisioning(int packageId, string domainName, DomainType domainType, - bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains) + bool createWebSite, int pointWebSiteId, int pointMailDomainId, bool createDnsZone, bool createInstantAlias, bool allowSubDomains, string hostName) { // check account int accountCheck = SecurityContext.CheckAccount(DemandAccount.NotDemo | DemandAccount.IsActive); @@ -1729,8 +1729,7 @@ namespace WebsitePanel.EnterpriseServer int webSiteId = 0; if (webEnabled && createWebSite) { - webSiteId = WebServerController.AddWebSite( - packageId, domainId, 0, createInstantAlias); + webSiteId = WebServerController.AddWebSite(packageId, hostName, domainId, 0, createInstantAlias); if (webSiteId < 0) { @@ -1742,7 +1741,7 @@ namespace WebsitePanel.EnterpriseServer // add web site pointer if (webEnabled && pointWebSiteId > 0) { - WebServerController.AddWebSitePointer(pointWebSiteId, domainId); + WebServerController.AddWebSitePointer(pointWebSiteId, hostName, domainId); } // add mail domain pointer @@ -1801,8 +1800,10 @@ namespace WebsitePanel.EnterpriseServer else if (isDomainPointer) { // domain pointer + /* if (PackageController.GetPackageQuota(packageId, Quotas.OS_DOMAINPOINTERS).QuotaExhausted) return BusinessErrorCodes.ERROR_DOMAIN_QUOTA_LIMIT; + */ } else { @@ -2132,7 +2133,7 @@ namespace WebsitePanel.EnterpriseServer int res = 0; if (domain.WebSiteId > 0) - res = WebServerController.AddWebSitePointer(domain.WebSiteId, domainId, false); + res = WebServerController.AddWebSitePointer(domain.WebSiteId, hostName, domainId, false); return res; } @@ -2173,7 +2174,7 @@ namespace WebsitePanel.EnterpriseServer // add web site pointer if required if (domain.WebSiteId > 0 && instantAlias.WebSiteId == 0) { - int webRes = WebServerController.AddWebSitePointer(domain.WebSiteId, instantAliasId); + int webRes = WebServerController.AddWebSitePointer(domain.WebSiteId, hostName, domainId); if (webRes < 0) return webRes; } diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/WebServers/WebServerController.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/WebServers/WebServerController.cs index f8047638..07769d20 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/WebServers/WebServerController.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/WebServers/WebServerController.cs @@ -155,12 +155,12 @@ namespace WebsitePanel.EnterpriseServer return site; } - public static int AddWebSite(int packageId, int domainId, int ipAddressId) + public static int AddWebSite(int packageId, string hostName, int domainId, int ipAddressId) { - return AddWebSite(packageId, domainId, ipAddressId, false); + return AddWebSite(packageId, hostName, domainId, ipAddressId, false); } - public static int AddWebSite(int packageId, int domainId, int packageAddressId, + public static int AddWebSite(int packageId, string hostName, int domainId, int packageAddressId, bool addInstantAlias) { // check account @@ -184,8 +184,11 @@ namespace WebsitePanel.EnterpriseServer if (PackageController.GetPackageItemByName(packageId, domainName, typeof(WebSite)) != null) return BusinessErrorCodes.ERROR_WEB_SITE_ALREADY_EXISTS; + + string siteName = string.IsNullOrEmpty(hostName) ? domainName : hostName + "." + domainName; ; + // place log record - TaskManager.StartTask("WEB_SITE", "ADD", domainName); + TaskManager.StartTask("WEB_SITE", "ADD", siteName); try { @@ -201,7 +204,7 @@ namespace WebsitePanel.EnterpriseServer ServiceProviderProxy.Init(web, serviceId); // Ensure the web site is being created doesn't exist on the server - if (web.SiteExists(domainName)) + if (web.SiteExists(siteName)) { // PackageInfo packageInfo = PackageController.GetPackage(packageId); @@ -209,7 +212,7 @@ namespace WebsitePanel.EnterpriseServer ServerInfo serverInfo = ServerController.GetServerById(packageInfo.ServerId); // Give as much clues for the issue to an administrator as possible TaskManager.WriteError("Web site '{0}' could not be created because site with the name requested already " + - "exists on '{1}' server.", domainName, serverInfo.ServerName); + "exists on '{1}' server.", siteName, serverInfo.ServerName); // Return generic operation failed error return BusinessErrorCodes.FAILED_EXECUTE_SERVICE_OPERATION; } @@ -238,10 +241,12 @@ namespace WebsitePanel.EnterpriseServer ipAddr = !String.IsNullOrEmpty(ip.InternalIP) ? ip.InternalIP : ip.ExternalIP; // load domain instant alias + /* string instantAlias = ServerController.GetDomainAlias(packageId, domainName); DomainInfo instantDomain = ServerController.GetDomain(instantAlias); if (instantDomain == null || instantDomain.WebSiteId > 0) instantAlias = ""; + */ // load web DNS records List dnsRecords = ServerController.GetDnsRecordsByService(serviceId); @@ -253,6 +258,7 @@ namespace WebsitePanel.EnterpriseServer { // SHARED IP // fill main domain bindings + /* FillWebServerBindings(bindings, dnsRecords, ipAddr, domain.DomainName); // fill alias bindings if required @@ -261,6 +267,8 @@ namespace WebsitePanel.EnterpriseServer // fill bindings from DNS "A" records FillWebServerBindings(bindings, dnsRecords, ipAddr, instantAlias); } + */ + bindings.Add(new ServerBinding(ipAddr, "80", siteName)); } else { @@ -276,17 +284,17 @@ namespace WebsitePanel.EnterpriseServer WebSite site = new WebSite(); // web site name and bindings - site.Name = domainName; + site.Name = siteName; site.Bindings = bindings.ToArray(); - site.AnonymousUsername = GetWebSiteUsername(webPolicy, domainName); + site.AnonymousUsername = GetWebSiteUsername(webPolicy, siteName); site.AnonymousUserPassword = Guid.NewGuid().ToString("P"); // folders string packageHome = FilesController.GetHomeFolder(packageId); // add random string to the domain if specified - string randDomainName = domainName; + string randDomainName = siteName; if (!String.IsNullOrEmpty(webPolicy["AddRandomDomainString"]) && Utils.ParseBool(webPolicy["AddRandomDomainString"], false)) randDomainName += "_" + Utils.GetRandomString(DOMAIN_RANDOM_LENGTH); @@ -372,7 +380,7 @@ namespace WebsitePanel.EnterpriseServer // register item site.ServiceId = serviceId; site.PackageId = packageId; - site.Name = domainName; + site.Name = siteName; site.SiteIPAddressId = addressId; site.SiteId = siteId; @@ -384,11 +392,13 @@ namespace WebsitePanel.EnterpriseServer // update domain // add main pointer - AddWebSitePointer(siteItemId, domain.DomainId, false); + AddWebSitePointer(siteItemId, hostName, domain.DomainId, false); // add instant pointer + /* if (addInstantAlias && !String.IsNullOrEmpty(instantAlias)) AddWebSitePointer(siteItemId, instantDomain.DomainId, false); + */ // add parking page // load package @@ -602,27 +612,43 @@ namespace WebsitePanel.EnterpriseServer } private static void FillWebServerBindings(List bindings, List dnsRecords, - string ipAddr, string domainName) - // TODO test if IPv6 works + string ipAddr, string hostName, string domainName) + // TODO test if IPv6 works { int bindingsCount = bindings.Count; foreach (GlobalDnsRecord dnsRecord in dnsRecords) { - if ((dnsRecord.RecordType == "A" || dnsRecord.RecordType == "AAAA") && + if ((dnsRecord.RecordType == "A" || dnsRecord.RecordType == "AAAA" || dnsRecord.RecordType == "CNAME") && dnsRecord.RecordName != "*") { + /* string recordData = dnsRecord.RecordName + ((dnsRecord.RecordName != "") ? "." : "") + domainName; bindings.Add(new ServerBinding(ipAddr, "80", recordData)); + */ + + string tmpName = string.Empty; + if (!String.IsNullOrEmpty(hostName)) + tmpName = Utils.ReplaceStringVariable(dnsRecord.RecordName, "host_name", hostName); + + string recordData = string.Empty; + if (tmpName.Contains(".")) + recordData = hostName; + else + recordData = tmpName + ((tmpName != "") ? "." : "") + domainName; + + bindings.Add(new ServerBinding(ipAddr, "80", recordData)); } } + /* if(bindings.Count == bindingsCount) { bindings.Add(new ServerBinding(ipAddr, "80", domainName)); bindings.Add(new ServerBinding(ipAddr, "80", "www." + domainName)); } + */ } private static string GetWebSiteUsername(UserSettings webPolicy, string domainName) @@ -708,12 +734,12 @@ namespace WebsitePanel.EnterpriseServer return pointers; } - public static int AddWebSitePointer(int siteItemId, int domainId) + public static int AddWebSitePointer(int siteItemId, string hostName, int domainId) { - return AddWebSitePointer(siteItemId, domainId, true); + return AddWebSitePointer(siteItemId, hostName, domainId, true); } - internal static int AddWebSitePointer(int siteItemId, int domainId, bool updateWebSite) + internal static int AddWebSitePointer(int siteItemId, string hostName, int domainId, bool updateWebSite) { // check account int accountCheck = SecurityContext.CheckAccount(DemandAccount.NotDemo | DemandAccount.IsActive); @@ -751,7 +777,7 @@ namespace WebsitePanel.EnterpriseServer string serviceIp = (ip != null) ? ip.ExternalIP : null; List resourceRecords = DnsServerController.BuildDnsResourceRecords( - dnsRecords, domain.DomainName, serviceIp); + dnsRecords, hostName, domain.DomainName, serviceIp); try { @@ -789,7 +815,7 @@ namespace WebsitePanel.EnterpriseServer ipAddr = !String.IsNullOrEmpty(ip.InternalIP) ? ip.InternalIP : ip.ExternalIP; // fill bindings - FillWebServerBindings(bindings, dnsRecords, ipAddr, domain.DomainName); + FillWebServerBindings(bindings, dnsRecords, ipAddr, hostName, domain.DomainName); // update bindings web.UpdateSiteBindings(siteItem.SiteId, bindings.ToArray()); @@ -798,7 +824,22 @@ namespace WebsitePanel.EnterpriseServer // update domain domain.WebSiteId = siteItemId; - ServerController.UpdateDomain(domain); + //ServerController.UpdateDomain(domain); + if (!String.IsNullOrEmpty(hostName)) + domain.DomainName = hostName + "." + domain.DomainName; + else + domain.DomainName = domain.DomainName; + domain.IsDomainPointer = true; + int domainID = ServerController.AddDomain(domain); + + DomainInfo domainTmp = ServerController.GetDomain(domainID); + if (domainTmp != null) + { + domainTmp.WebSiteId = siteItemId; + domainTmp.ZoneItemId = domain.ZoneItemId; + ServerController.UpdateDomain(domainTmp); + } + return 0; } @@ -855,7 +896,7 @@ namespace WebsitePanel.EnterpriseServer string serviceIp = (ip != null) ? ip.ExternalIP : null; List resourceRecords = DnsServerController.BuildDnsResourceRecords( - dnsRecords, domain.DomainName, serviceIp); + dnsRecords, domain.DomainName, "", serviceIp); try { @@ -886,7 +927,7 @@ namespace WebsitePanel.EnterpriseServer { // remove host headers List domainBindings = new List(); - FillWebServerBindings(domainBindings, dnsRecords, "", domain.DomainName); + FillWebServerBindings(domainBindings, dnsRecords, "", domain.DomainName, ""); // fill to remove list List headersToRemove = new List(); diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Wizards/UserCreationWizard.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Wizards/UserCreationWizard.cs index 1ba6e220..9f5d7ed8 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Wizards/UserCreationWizard.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Wizards/UserCreationWizard.cs @@ -50,7 +50,7 @@ namespace WebsitePanel.EnterpriseServer bool sendAccountLetter, bool createPackage, int planId, bool sendPackageLetter, string domainName, bool tempDomain, bool createWebSite, - bool createFtpAccount, string ftpAccountName, bool createMailAccount) + bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName) { UserCreationWizard wizard = new UserCreationWizard(); @@ -59,7 +59,7 @@ namespace WebsitePanel.EnterpriseServer sendAccountLetter, createPackage, planId, sendPackageLetter, domainName, tempDomain, createWebSite, - createFtpAccount, ftpAccountName, createMailAccount); + createFtpAccount, ftpAccountName, createMailAccount, hostName); } // private fields @@ -72,7 +72,7 @@ namespace WebsitePanel.EnterpriseServer bool sendAccountLetter, bool createPackage, int planId, bool sendPackageLetter, string domainName, bool tempDomain, bool createWebSite, - bool createFtpAccount, string ftpAccountName, bool createMailAccount) + bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName) { // check account @@ -193,13 +193,13 @@ namespace WebsitePanel.EnterpriseServer } } - if (createWebSite && !String.IsNullOrEmpty(domainName)) + if (createWebSite && !String.IsNullOrEmpty(domainName) && !String.IsNullOrEmpty(hostName)) { // create web site try { int webSiteId = WebServerController.AddWebSite( - createdPackageId, domainId, 0, true); + createdPackageId, hostName, domainId, 0, true); if (webSiteId < 0) { // rollback wizard diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esPackages.asmx.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esPackages.asmx.cs index 52db718e..225297d8 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esPackages.asmx.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esPackages.asmx.cs @@ -423,11 +423,11 @@ namespace WebsitePanel.EnterpriseServer public PackageResult AddPackageWithResources(int userId, int planId, string spaceName, int statusId, bool sendLetter, bool createResources, string domainName, bool tempDomain, bool createWebSite, - bool createFtpAccount, string ftpAccountName, bool createMailAccount) + bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName) { return PackageController.AddPackageWithResources(userId, planId, spaceName, statusId, sendLetter, createResources, domainName, tempDomain, createWebSite, - createFtpAccount, ftpAccountName, createMailAccount); + createFtpAccount, ftpAccountName, createMailAccount, hostName); } [WebMethod] @@ -436,13 +436,13 @@ namespace WebsitePanel.EnterpriseServer bool sendAccountLetter, bool createPackage, int planId, bool sendPackageLetter, string domainName, bool tempDomain, bool createWebSite, - bool createFtpAccount, string ftpAccountName, bool createMailAccount) + bool createFtpAccount, string ftpAccountName, bool createMailAccount, string hostName) { return UserCreationWizard.CreateUserAccount(parentPackageId, username, password, roleId, firstName, lastName, email, secondaryEmail, htmlMail, sendAccountLetter, createPackage, planId, sendPackageLetter, domainName, tempDomain, createWebSite, createFtpAccount, ftpAccountName, - createMailAccount); + createMailAccount, hostName); } #endregion diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esServers.asmx.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esServers.asmx.cs index 51e76e44..34ccb051 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esServers.asmx.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esServers.asmx.cs @@ -553,11 +553,11 @@ namespace WebsitePanel.EnterpriseServer [WebMethod] public int AddDomainWithProvisioning(int packageId, string domainName, DomainType domainType, bool createWebSite, int pointWebSiteId, int pointMailDomainId, - bool createDnsZone, bool createInstantAlias, bool allowSubDomains) + bool createDnsZone, bool createInstantAlias, bool allowSubDomains, string hostName) { return ServerController.AddDomainWithProvisioning(packageId, domainName, domainType, createWebSite, pointWebSiteId, pointMailDomainId, - createDnsZone, createInstantAlias, allowSubDomains); + createDnsZone, createInstantAlias, allowSubDomains, hostName); } [WebMethod] diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esWebServers.asmx.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esWebServers.asmx.cs index 1a3ab82b..a5f3882f 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esWebServers.asmx.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/esWebServers.asmx.cs @@ -92,9 +92,9 @@ namespace WebsitePanel.EnterpriseServer } [WebMethod] - public int AddWebSitePointer(int siteItemId, int domainId) + public int AddWebSitePointer(int siteItemId, string hostName, int domainId) { - return WebServerController.AddWebSitePointer(siteItemId, domainId); + return WebServerController.AddWebSitePointer(siteItemId, hostName, domainId); } [WebMethod] @@ -104,9 +104,9 @@ namespace WebsitePanel.EnterpriseServer } [WebMethod] - public int AddWebSite(int packageId, int domainId, int ipAddressId) + public int AddWebSite(int packageId, string hostName, int domainId, int ipAddressId) { - return WebServerController.AddWebSite(packageId, domainId, ipAddressId, true); + return WebServerController.AddWebSite(packageId, hostName, domainId, ipAddressId, true); } [WebMethod] @@ -305,39 +305,39 @@ namespace WebsitePanel.EnterpriseServer } #endregion - #region Web Deploy Publishing Access + #region Web Deploy Publishing Access - [WebMethod] - public ResultObject GrantWebDeployPublishingAccess(int siteItemId, string accountName, string accountPassword) - { - return WebServerController.GrantWebDeployPublishingAccess(siteItemId, accountName, accountPassword); - } + [WebMethod] + public ResultObject GrantWebDeployPublishingAccess(int siteItemId, string accountName, string accountPassword) + { + return WebServerController.GrantWebDeployPublishingAccess(siteItemId, accountName, accountPassword); + } - [WebMethod] - public ResultObject SaveWebDeployPublishingProfile(int siteItemId, int[] serviceItemIds) - { - return WebServerController.SaveWebDeployPublishingProfile(siteItemId, serviceItemIds); - } + [WebMethod] + public ResultObject SaveWebDeployPublishingProfile(int siteItemId, int[] serviceItemIds) + { + return WebServerController.SaveWebDeployPublishingProfile(siteItemId, serviceItemIds); + } - [WebMethod] - public void RevokeWebDeployPublishingAccess(int siteItemId) - { - WebServerController.RevokeWebDeployPublishingAccess(siteItemId); - } + [WebMethod] + public void RevokeWebDeployPublishingAccess(int siteItemId) + { + WebServerController.RevokeWebDeployPublishingAccess(siteItemId); + } - [WebMethod] - public BytesResult GetWebDeployPublishingProfile(int siteItemId) - { - return WebServerController.GetWebDeployPublishingProfile(siteItemId); - } + [WebMethod] + public BytesResult GetWebDeployPublishingProfile(int siteItemId) + { + return WebServerController.GetWebDeployPublishingProfile(siteItemId); + } - [WebMethod] - public ResultObject ChangeWebDeployPublishingPassword(int siteItemId, string newAccountPassword) - { - return WebServerController.ChangeWebDeployPublishingPassword(siteItemId, newAccountPassword); - } + [WebMethod] + public ResultObject ChangeWebDeployPublishingPassword(int siteItemId, string newAccountPassword) + { + return WebServerController.ChangeWebDeployPublishingPassword(siteItemId, newAccountPassword); + } - #endregion + #endregion #region Helicon Ape @@ -461,28 +461,28 @@ namespace WebsitePanel.EnterpriseServer #region WebManagement Access [WebMethod] - public ResultObject GrantWebManagementAccess(int siteItemId, string accountName, string accountPassword) - { - return WebServerController.GrantWebManagementAccess(siteItemId, accountName, accountPassword); - } + public ResultObject GrantWebManagementAccess(int siteItemId, string accountName, string accountPassword) + { + return WebServerController.GrantWebManagementAccess(siteItemId, accountName, accountPassword); + } - [WebMethod] - public void RevokeWebManagementAccess(int siteItemId) - { - WebServerController.RevokeWebManagementAccess(siteItemId); - } + [WebMethod] + public void RevokeWebManagementAccess(int siteItemId) + { + WebServerController.RevokeWebManagementAccess(siteItemId); + } - [WebMethod] - public ResultObject ChangeWebManagementAccessPassword(int siteItemId, string accountPassword) - { - return WebServerController.ChangeWebManagementAccessPassword(siteItemId, accountPassword); - } - - #endregion + [WebMethod] + public ResultObject ChangeWebManagementAccessPassword(int siteItemId, string accountPassword) + { + return WebServerController.ChangeWebManagementAccessPassword(siteItemId, accountPassword); + } + + #endregion #region SSL [WebMethod] - public SSLCertificate CertificateRequest(SSLCertificate certificate,int siteItemId) + public SSLCertificate CertificateRequest(SSLCertificate certificate, int siteItemId) { return WebServerController.CertificateRequest(certificate, siteItemId); } @@ -492,9 +492,9 @@ namespace WebsitePanel.EnterpriseServer return WebServerController.InstallCertificate(certificate, siteItemId); } [WebMethod] - public ResultObject InstallPfx(byte[] certificate, int siteItemId,string password) + public ResultObject InstallPfx(byte[] certificate, int siteItemId, string password) { - return WebServerController.InstallPfx(certificate, siteItemId,password); + return WebServerController.InstallPfx(certificate, siteItemId, password); } [WebMethod] public List GetPendingCertificates(int siteItemId) @@ -512,19 +512,19 @@ namespace WebsitePanel.EnterpriseServer return WebServerController.GetSiteCert(siteID); } [WebMethod] - public int CheckSSLForWebsite(int siteID,bool renewal) + public int CheckSSLForWebsite(int siteID, bool renewal) { return WebServerController.CheckSSL(siteID, renewal); } [WebMethod] - public ResultObject CheckSSLForDomain(string domain,int siteID) + public ResultObject CheckSSLForDomain(string domain, int siteID) { return WebServerController.CheckSSLForDomain(domain, siteID); } [WebMethod] public byte[] ExportCertificate(int siteId, string serialNumber, string password) { - return WebServerController.ExportCertificate(siteId,serialNumber, password); + return WebServerController.ExportCertificate(siteId, serialNumber, password); } [WebMethod] public List GetCertificatesForSite(int siteId) @@ -532,7 +532,7 @@ namespace WebsitePanel.EnterpriseServer return WebServerController.GetCertificatesForSite(siteId); } [WebMethod] - public ResultObject DeleteCertificate(int siteId,SSLCertificate certificate) + public ResultObject DeleteCertificate(int siteId, SSLCertificate certificate) { return WebServerController.DeleteCertificate(siteId, certificate); } @@ -547,11 +547,11 @@ namespace WebsitePanel.EnterpriseServer return WebServerController.CheckCertificate(siteId); } [WebMethod] - public ResultObject DeleteCertificateRequest(int siteId,int csrID) + public ResultObject DeleteCertificateRequest(int siteId, int csrID) { - return WebServerController.DeleteCertificateRequest(siteId,csrID); + return WebServerController.DeleteCertificateRequest(siteId, csrID); } - - #endregion + + #endregion } } diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/SiteSettings.config b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/SiteSettings.config index 36e107ed..4fc71ff6 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/SiteSettings.config +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/SiteSettings.config @@ -37,5 +37,7 @@ Edit.ascx false - true + false + false + diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/UserCreateSpace.ascx.resx b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/UserCreateSpace.ascx.resx index f89f6cc5..075b94c1 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/UserCreateSpace.ascx.resx +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/UserCreateSpace.ascx.resx @@ -222,4 +222,7 @@ Automated Hosted Organization Provisioning + + Hostname: + \ No newline at end of file diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx index 5176ed12..30250fd8 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx @@ -31,10 +31,6 @@ NavigateUrl='<%# GetItemEditUrl(Eval("PackageID"), Eval("DomainID")) %>'> <%# Eval("DomainName")%> -
- - <%# Eval("WebSiteName")%> -
<%# Eval("MailDomainName")%> @@ -107,10 +103,12 @@ +
diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx.designer.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx.designer.cs index ee34d059..4bfa5231 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx.designer.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Domains.ascx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx index 83b1576f..9fc7ade2 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx @@ -9,7 +9,6 @@

- @@ -42,14 +41,6 @@

- -
-
- -
-
-
@@ -65,7 +56,7 @@ Description...
- +
diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.cs index f4673da9..43544f38 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.cs @@ -46,6 +46,12 @@ namespace WebsitePanel.Portal { ShowErrorMessage("DOMAIN_GET_DOMAIN", ex); } + + if (PanelSecurity.LoggedUser.Role == UserRole.User) + { + if (!PackagesHelper.CheckGroupQuotaEnabled(PanelSecurity.PackageId, ResourceGroups.Dns, Quotas.DNS_EDITOR)) + this.DisableControls = true; + } } private void BindControls() @@ -78,10 +84,6 @@ namespace WebsitePanel.Portal if ((type == DomainType.DomainPointer || (type == DomainType.Domain && cntx.Quotas[Quotas.OS_DOMAINPOINTERS].QuotaAllocatedValue == 0)) && !IsPostBack) { - // bind web sites - WebSitesList.DataSource = ES.Services.WebServers.GetWebSites(PanelSecurity.PackageId, false); - WebSitesList.DataBind(); - // bind mail domains MailDomainsList.DataSource = ES.Services.MailServers.GetMailDomains(PanelSecurity.PackageId, false); MailDomainsList.DataBind(); @@ -90,21 +92,9 @@ namespace WebsitePanel.Portal // create web site option CreateWebSitePanel.Visible = (type == DomainType.Domain || type == DomainType.SubDomain) && cntx.Groups.ContainsKey(ResourceGroups.Web); - if (PointWebSite.Checked) - { - CreateWebSite.Checked = false; - CreateWebSite.Enabled = false; - } - else - { - CreateWebSite.Enabled = true; - CreateWebSite.Checked &= CreateWebSitePanel.Visible; - } - // point Web site - PointWebSitePanel.Visible = (type == DomainType.DomainPointer || (type == DomainType.Domain && cntx.Quotas[Quotas.OS_DOMAINPOINTERS].QuotaAllocatedValue == 0)) - && cntx.Groups.ContainsKey(ResourceGroups.Web) && WebSitesList.Items.Count > 0; - WebSitesList.Enabled = PointWebSite.Checked; + CreateWebSite.Enabled = true; + CreateWebSite.Checked &= CreateWebSitePanel.Visible; // point mail domain PointMailDomainPanel.Visible = (type == DomainType.DomainPointer || (type == DomainType.Domain && cntx.Quotas[Quotas.OS_DOMAINPOINTERS].QuotaAllocatedValue == 0)) @@ -179,9 +169,6 @@ namespace WebsitePanel.Portal if (type == DomainType.DomainPointer || (type == DomainType.Domain && cntx.Quotas[Quotas.OS_DOMAINPOINTERS].QuotaAllocatedValue == 0)) { - if (PointWebSite.Checked && WebSitesList.Items.Count > 0) - pointWebSiteId = Utils.ParseInt(WebSitesList.SelectedValue, 0); - if (PointMailDomain.Checked && MailDomainsList.Items.Count > 0) pointMailDomainId = Utils.ParseInt(MailDomainsList.SelectedValue, 0); } @@ -192,7 +179,7 @@ namespace WebsitePanel.Portal { domainId = ES.Services.Servers.AddDomainWithProvisioning(PanelSecurity.PackageId, domainName, type, CreateWebSite.Checked, pointWebSiteId, pointMailDomainId, - EnableDns.Checked, CreateInstantAlias.Checked, AllowSubDomains.Checked); + EnableDns.Checked, CreateInstantAlias.Checked, AllowSubDomains.Checked, ""); if (domainId < 0) { diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.designer.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.designer.cs index 2749ddfb..f7ecee13 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.designer.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomain.ascx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -40,15 +39,6 @@ namespace WebsitePanel.Portal { /// protected global::System.Web.UI.HtmlControls.HtmlGenericControl DomainPanel; - /// - /// DomainPrefix control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.WebControls.Label DomainPrefix; - /// /// DomainName control. /// @@ -166,33 +156,6 @@ namespace WebsitePanel.Portal { /// protected global::System.Web.UI.WebControls.Localize DescribeCreateWebSite; - /// - /// PointWebSitePanel control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.WebControls.Panel PointWebSitePanel; - - /// - /// PointWebSite control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.WebControls.CheckBox PointWebSite; - - /// - /// WebSitesList control. - /// - /// - /// Auto-generated field. - /// To modify move field declaration from designer file to code-behind file. - /// - protected global::System.Web.UI.WebControls.DropDownList WebSitesList; - /// /// PointMailDomainPanel control. /// diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx index f37df467..15eb89eb 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx @@ -20,12 +20,12 @@ Provider Sub-domain


- +
diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx.designer.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx.designer.cs index 0ee70351..62330f91 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx.designer.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/DomainsAddDomainSelectType.ascx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.3074 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx index b436336c..ea9f99f0 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx @@ -97,6 +97,19 @@ Text="Create Web Site" Checked="True" /> + + + + + + + + + + diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.cs index cda7fe79..683cf57a 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.cs @@ -124,6 +124,8 @@ namespace WebsitePanel.Portal string ftpAccount = (rbFtpAccountName.SelectedIndex == 0) ? null : ftpAccountName.Text; string domainName = txtDomainName.Text.Trim(); + + string hostName = txtHostName.Text.Trim(); PackageResult result = null; try @@ -134,7 +136,7 @@ namespace WebsitePanel.Portal Utils.ParseInt(ddlStatus.SelectedValue, 0), chkPackageLetter.Checked, chkCreateResources.Checked, domainName, true, chkCreateWebSite.Checked, - chkCreateFtpAccount.Checked, ftpAccount, chkCreateMailAccount.Checked); + chkCreateFtpAccount.Checked, ftpAccount, chkCreateMailAccount.Checked, hostName); if (result.Result < 0) { diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.designer.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.designer.cs index e41d8992..33f60022 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.designer.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/UserCreateSpace.ascx.designer.cs @@ -210,6 +210,42 @@ namespace WebsitePanel.Portal { /// protected global::System.Web.UI.WebControls.CheckBox chkCreateWebSite; + /// + /// lblHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label lblHostName; + + /// + /// txtHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtHostName; + + /// + /// valRequireHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator valRequireHostName; + + /// + /// valRequireCorrectHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.RegularExpressionValidator valRequireCorrectHostName; + /// /// fsFtp control. /// diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx index ff94dcda..acd114ce 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx @@ -7,8 +7,12 @@ - + . + + diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.cs index 22df860a..3cfa6c10 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.cs @@ -50,7 +50,7 @@ namespace WebsitePanel.Portal { try { - int result = ES.Services.WebServers.AddWebSitePointer(PanelRequest.ItemID, domainsSelectDomainControl.DomainId); + int result = ES.Services.WebServers.AddWebSitePointer(PanelRequest.ItemID, txtHostName.Text, domainsSelectDomainControl.DomainId); if (result < 0) { ShowResultMessage(result); diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.designer.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.designer.cs index f606ad03..5ea5bdeb 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.designer.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddPointer.ascx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.3074 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -22,6 +21,15 @@ namespace WebsitePanel.Portal { /// protected global::System.Web.UI.WebControls.Label lblDomainName; + /// + /// txtHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtHostName; + /// /// domainsSelectDomainControl control. /// @@ -31,6 +39,24 @@ namespace WebsitePanel.Portal { /// protected global::WebsitePanel.Portal.DomainsSelectDomainControl domainsSelectDomainControl; + /// + /// valRequireHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator valRequireHostName; + + /// + /// valRequireCorrectHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.RegularExpressionValidator valRequireCorrectHostName; + /// /// btnAdd control. /// diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx index c497c704..8d67d616 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx @@ -11,8 +11,12 @@ - + . + + diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.cs index 07ae9663..689fa1a3 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.cs @@ -91,7 +91,7 @@ namespace WebsitePanel.Portal { int packageAddressId = rbDedicatedIP.Checked ? Utils.ParseInt(ddlIpAddresses.SelectedValue, 0) : 0; - siteItemId = ES.Services.WebServers.AddWebSite(PanelSecurity.PackageId, domainsSelectDomainControl.DomainId, + siteItemId = ES.Services.WebServers.AddWebSite(PanelSecurity.PackageId, txtHostName.Text.ToLower(), domainsSelectDomainControl.DomainId, packageAddressId); if (siteItemId < 0) diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.designer.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.designer.cs index 247cdb2c..85beeded 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.designer.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebSitesAddSite.ascx.designer.cs @@ -1,10 +1,9 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:2.0.50727.3074 // // Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -31,6 +30,15 @@ namespace WebsitePanel.Portal { /// protected global::System.Web.UI.WebControls.Label lblDomainName; + /// + /// txtHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtHostName; + /// /// domainsSelectDomainControl control. /// @@ -40,6 +48,24 @@ namespace WebsitePanel.Portal { /// protected global::WebsitePanel.Portal.DomainsSelectDomainControl domainsSelectDomainControl; + /// + /// valRequireHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.RequiredFieldValidator valRequireHostName; + + /// + /// valRequireCorrectHostName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.RegularExpressionValidator valRequireCorrectHostName; + /// /// rowSiteIP control. /// diff --git a/WebsitePanel/Sources/generate_es_proxies.bat b/WebsitePanel/Sources/generate_es_proxies.bat index 5a4fbd8d..d6b8b5e1 100644 --- a/WebsitePanel/Sources/generate_es_proxies.bat +++ b/WebsitePanel/Sources/generate_es_proxies.bat @@ -56,8 +56,8 @@ REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\OCSProxy.cs REM %WSDL% %SERVER_URL%/esOperatingSystems.asmx /out:.\WebsitePanel.EnterpriseServer.Client\OperatingSystemsProxy.cs /namespace:WebsitePanel.EnterpriseServer /type:webClient REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\OperatingSystemsProxy.cs -%WSDL% %SERVER_URL%/esOrganizations.asmx /out:.\WebsitePanel.EnterpriseServer.Client\OrganizationProxy.cs /namespace:WebsitePanel.EnterpriseServer.HostedSolution /type:webClient -%WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\OrganizationProxy.cs +REM %WSDL% %SERVER_URL%/esOrganizations.asmx /out:.\WebsitePanel.EnterpriseServer.Client\OrganizationProxy.cs /namespace:WebsitePanel.EnterpriseServer.HostedSolution /type:webClient +REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\OrganizationProxy.cs REM %WSDL% %SERVER_URL%/esPackages.asmx /out:.\WebsitePanel.EnterpriseServer.Client\PackagesProxy.cs /namespace:WebsitePanel.EnterpriseServer /type:webClient REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\PackagesProxy.cs @@ -86,8 +86,8 @@ REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\VirtualizationServerProxy REM %WSDL% %SERVER_URL%/esWebApplicationGallery.asmx /out:.\WebsitePanel.EnterpriseServer.Client\WebApplicationGalleryProxy.cs /namespace:WebsitePanel.EnterpriseServer /type:webClient REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\WebApplicationGalleryProxy.cs -REM %WSDL% %SERVER_URL%/esWebServers.asmx /out:.\WebsitePanel.EnterpriseServer.Client\WebServersProxy.cs /namespace:WebsitePanel.EnterpriseServer /type:webClient -REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\WebServersProxy.cs +%WSDL% %SERVER_URL%/esWebServers.asmx /out:.\WebsitePanel.EnterpriseServer.Client\WebServersProxy.cs /namespace:WebsitePanel.EnterpriseServer /type:webClient +%WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\WebServersProxy.cs REM %WSDL% %SERVER_URL%/esVirtualizationServerForPrivateCloud.asmx /out:.\WebsitePanel.EnterpriseServer.Client\VirtualizationServerProxyForPrivateCloud.cs /namespace:WebsitePanel.EnterpriseServer /type:webClient REM %WSE_CLEAN% .\WebsitePanel.EnterpriseServer.Client\VirtualizationServerProxyForPrivateCloud.cs