本文整理汇总了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;
}
示例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;
}