当前位置: 首页>>代码示例>>C#>>正文


C# SPSite.GetCustomWebTemplates方法代码示例

本文整理汇总了C#中SPSite.GetCustomWebTemplates方法的典型用法代码示例。如果您正苦于以下问题:C# SPSite.GetCustomWebTemplates方法的具体用法?C# SPSite.GetCustomWebTemplates怎么用?C# SPSite.GetCustomWebTemplates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SPSite的用法示例。


在下文中一共展示了SPSite.GetCustomWebTemplates方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Execute

        /// <summary>
        /// Runs the specified command.
        /// </summary>
        /// <param name="command">The command.</param>
        /// <param name="keyValues">The key values.</param>
        /// <param name="output">The output.</param>
        /// <returns></returns>
        public override int Execute(string command, StringDictionary keyValues, out string output)
        {
            output = string.Empty;

            string url = Params["url"].Value.TrimEnd('/');

            using (SPSite site = new SPSite(url))
            {
                using (SPWeb web = site.AllWebs[Utilities.GetServerRelUrlFromFullUrl(url)])
                {

                    foreach (SPLanguage lang in web.RegionalSettings.InstalledLanguages)
                    {
                        foreach (SPWebTemplate template in site.GetWebTemplates((uint)lang.LCID))
                        {
                            output += template.Name + " = " + template.Title + " (" + lang.LCID + ")\r\n";
                        }
                        foreach (SPWebTemplate template in site.GetCustomWebTemplates((uint)lang.LCID))
                        {
                            output += template.Name + " = " + template.Title + " (Custom)(" + lang.LCID + ")\r\n";
                        }
                    }
                }
            }

            return (int)ErrorCodes.NoError;
        }
开发者ID:GSoft-SharePoint,项目名称:PowerShell-SPCmdlets,代码行数:34,代码来源:EnumInstalledSiteTemplates.cs

示例2: GetWebTemplate

 /// <summary>
 /// Gets the web template.
 /// </summary>
 /// <param name="site">The site.</param>
 /// <param name="lcid">The lcid.</param>
 /// <param name="webTemplateName">Name of the web template.</param>
 /// <returns></returns>
 internal static SPWebTemplate GetWebTemplate(SPSite site, uint lcid, string webTemplateName)
 {
     SPWebTemplateCollection webTemplates = site.GetWebTemplates(lcid);
     SPWebTemplateCollection customWebTemplates = site.GetCustomWebTemplates(lcid);
     SPWebTemplate template = null;
     try
     {
         template = webTemplates[webTemplateName];
     }
     catch (ArgumentException)
     {
         try
         {
             return customWebTemplates[webTemplateName];
         }
         catch (ArgumentException)
         {
             return template;
         }
     }
     return template;
 }
开发者ID:GSoft-SharePoint,项目名称:PowerShell-SPCmdlets,代码行数:29,代码来源:AddAvailableSiteTemplate.cs


注:本文中的SPSite.GetCustomWebTemplates方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。