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


C# ContentItem.Get方法代码示例

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


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

示例1: GetUniqueIdentifier

        private static string GetUniqueIdentifier(ContentItem item)
        {
            string slug = null;
            if (item.Has<AutoroutePart>())
            {
                var route = item.Get<AutoroutePart>();
                slug = route.Path;
            }

            return string.Format("{0} {1}", item.Id, slug);
        }
开发者ID:raelyard,项目名称:Orchard.Disqus,代码行数:11,代码来源:Shapes.cs

示例2: GetUniqueIdentifier

        public string GetUniqueIdentifier(ContentItem item)
        {
            string slug = null;
            if (item.Has<RoutePart>())
            { 
                var route = item.Get<RoutePart>();
                slug = route.Slug;
            }

            return string.Format("{0} {1}", item.Id, slug);
        }
开发者ID:ShuanWang,项目名称:devoffice.com-shuanTestRepo,代码行数:11,代码来源:Shapes.cs

示例3: GetRouteValues

        private static RouteValueDictionary GetRouteValues(IContentItemDriver driver, ContentItem contentItem) {
            //TODO: (erikpo) Need to rearrange ContentItemDriver so reflection isn't needed here
            var driverType = driver.GetType();
            var method = driverType.GetMethod("GetDisplayRouteValues");

            if (method != null) {
                return (RouteValueDictionary)method.Invoke(driver, new object[] {contentItem.Get(driverType.BaseType.GetGenericArguments()[0])});
            }

            return null;
        }
开发者ID:mofashi2011,项目名称:orchardcms,代码行数:11,代码来源:RoutableAspectHandler.cs

示例4: SetupTagCloudLoader

 private void SetupTagCloudLoader(ContentItem item) {
     var cloudPart = (TagCloudPart) item.Get(typeof (TagCloudPart));
     cloudPart._tagCounts.Loader(tags =>
     _tagCloudService.GetPopularTags(cloudPart.Buckets, cloudPart.Slug).ToList());
 }
开发者ID:kyletowb,项目名称:InfusionDocs,代码行数:5,代码来源:TagCloudHandler.cs

示例5: SetupTagCloudLoader

 private void SetupTagCloudLoader(ContentItem item)
 {
     var cloudPart = (LocalizedTagCloudPart)item.Get(typeof(LocalizedTagCloudPart));
     cloudPart._tags.Loader(() => _tagsService.GetLocalizedTags().ToList());
 }
开发者ID:qt1,项目名称:orchard_contrib-RM.Localization,代码行数:5,代码来源:LocalizedTagCloudHandler.cs


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