當前位置: 首頁>>代碼示例>>C#>>正文


C# ContentItem.SharesIdentifierWith方法代碼示例

本文整理匯總了C#中Orchard.ContentManagement.ContentItem.SharesIdentifierWith方法的典型用法代碼示例。如果您正苦於以下問題:C# ContentItem.SharesIdentifierWith方法的具體用法?C# ContentItem.SharesIdentifierWith怎麽用?C# ContentItem.SharesIdentifierWith使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Orchard.ContentManagement.ContentItem的用法示例。


在下文中一共展示了ContentItem.SharesIdentifierWith方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: AreEqual

        private static bool AreEqual(ContentItem item1, ContentItem item2, XElement item1Export, XElement item2Export)
        {
            //todo: this is a little too generous
            if (!item1.SharesIdentifierWith(item2))
                return false;

            if (item1.Has<TitlePart>() && item2.Has<TitlePart>())
            {
                if (!item1.As<TitlePart>().Title.Equals(item2.As<TitlePart>().Title, StringComparison.CurrentCulture))
                {
                    return false;
                }
            }

            if (item1.Has<BodyPart>() && item2.Has<BodyPart>())
            {
                var text1 = item1.As<BodyPart>().Text;
                var text2 = item2.As<BodyPart>().Text;

                if (text1 == null || text2 == null)
                    return false;

                if (!item1.As<BodyPart>().Text.Equals(item2.As<BodyPart>().Text, StringComparison.CurrentCulture))
                {
                    return false;
                }
            }

            // compare xml elements
            return Differences(item1Export, item2Export) == 0;
        }
開發者ID:JustGiving,項目名稱:Tad.ContentSync,代碼行數:31,代碼來源:ContentItemExtensions.cs


注:本文中的Orchard.ContentManagement.ContentItem.SharesIdentifierWith方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。