本文整理匯總了C#中umbraco.cms.businesslogic.web.DocumentType.AddVirtualTab方法的典型用法代碼示例。如果您正苦於以下問題:C# DocumentType.AddVirtualTab方法的具體用法?C# DocumentType.AddVirtualTab怎麽用?C# DocumentType.AddVirtualTab使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類umbraco.cms.businesslogic.web.DocumentType
的用法示例。
在下文中一共展示了DocumentType.AddVirtualTab方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: UpdateTabs
void UpdateTabs(XDocument xmlDoc, DocumentType docType)
{
var tabs = docType.getVirtualTabs;
var updatedTabs = xmlDoc.Descendants("Tabs").Descendants("Tab").Select(x => x.Element("Caption").Value);
var currentNames = tabs.Select(x => x.Caption);
var toDelete = tabs.Where(x => !updatedTabs.Contains(x.Caption));
var toAdd = updatedTabs.Where(x => !currentNames.Contains(x));
foreach (var t in toDelete)
docType.DeleteVirtualTab(t.Id);
foreach (var t in toAdd)
docType.AddVirtualTab(t);
}