Microsoft.Protocols.TestSuites.MS_ADMINS.AdminSoap.BeginCreateSite C# (CSharp) Method

BeginCreateSite() public method

public BeginCreateSite ( string Url, string Title, string Description, int Lcid, bool LcidSpecified, string WebTemplate, string OwnerLogin, string OwnerName, string OwnerEmail, string PortalUrl, string PortalName, System callback, object asyncState ) : System.IAsyncResult
Url string
Title string
Description string
Lcid int
LcidSpecified bool
WebTemplate string
OwnerLogin string
OwnerName string
OwnerEmail string
PortalUrl string
PortalName string
callback System
asyncState object
return System.IAsyncResult
        public System.IAsyncResult BeginCreateSite(string Url, string Title, string Description, int Lcid, bool LcidSpecified, string WebTemplate, string OwnerLogin, string OwnerName, string OwnerEmail, string PortalUrl, string PortalName, System.AsyncCallback callback, object asyncState)
        {
            return this.BeginInvoke("CreateSite", new object[] {
                    Url,
                    Title,
                    Description,
                    Lcid,
                    LcidSpecified,
                    WebTemplate,
                    OwnerLogin,
                    OwnerName,
                    OwnerEmail,
                    PortalUrl,
                    PortalName}, callback, asyncState);
        }