Acceleratio.SPDG.Generator.Server.SPModel.SPDGServerWeb.AddWeb C# (CSharp) Method

AddWeb() public method

public AddWeb ( string url, string siteName, string description, uint lcid, string templateName, bool useUniquePermissions, bool convertIfThere ) : SPDGWeb
url string
siteName string
description string
lcid uint
templateName string
useUniquePermissions bool
convertIfThere bool
return Acceleratio.SPDG.Generator.SPModel.SPDGWeb
        public override SPDGWeb AddWeb(string url, string siteName, string description, uint lcid, string templateName, bool useUniquePermissions, bool convertIfThere)
        {
            var spWeb=_spWeb.Webs.Add(url, siteName, description, lcid, templateName, useUniquePermissions, convertIfThere);
            return new SPDGServerWeb(spWeb);
        }