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


C# TypeInfo.IsDefined方法代码示例

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


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

示例1: IsDispatcherHandler

 private bool IsDispatcherHandler(TypeInfo typeInfo)
 {
     return typeInfo.IsDefined(typeof(DispatcherHandlerAttribute))
            && typeInfo.IsClass
            && typeInfo.IsPublic
            && !typeInfo.IsAbstract
            && !typeInfo.IsGenericTypeDefinition
            && !typeInfo.ContainsGenericParameters;
 }
开发者ID:Ontropix,项目名称:CQRSalad,代码行数:9,代码来源:DefaultDispatcherHandlersProvider.cs

示例2: IsController

        /// <summary>
        /// Returns <c>true</c> if the <paramref name="typeInfo"/> is a controller. Otherwise <c>false</c>.
        /// </summary>
        /// <param name="typeInfo">The <see cref="TypeInfo"/>.</param>
        /// <param name="candidateAssemblies">The set of candidate assemblies.</param>
        /// <returns><c>true</c> if the <paramref name="typeInfo"/> is a controller. Otherwise <c>false</c>.</returns>
        protected internal virtual bool IsController(
            TypeInfo typeInfo,
            ISet<Assembly> candidateAssemblies)
        {
            if (typeInfo == null)
            {
                throw new ArgumentNullException(nameof(typeInfo));
            }

            if (candidateAssemblies == null)
            {
                throw new ArgumentNullException(nameof(candidateAssemblies));
            }

            if (!typeInfo.IsClass)
            {
                return false;
            }
            if (typeInfo.IsAbstract)
            {
                return false;
            }
            // We only consider public top-level classes as controllers. IsPublic returns false for nested
            // classes, regardless of visibility modifiers
            if (!typeInfo.IsPublic)
            {
                return false;
            }
            if (typeInfo.ContainsGenericParameters)
            {
                return false;
            }
            if (!typeInfo.Name.EndsWith(ControllerTypeName, StringComparison.OrdinalIgnoreCase) &&
                !DerivesFromController(typeInfo, candidateAssemblies))
            {
                return false;
            }
            if (typeInfo.IsDefined(typeof(NonControllerAttribute)))
            {
                return false;
            }

            return true;
        }
开发者ID:huoxudong125,项目名称:Mvc,代码行数:50,代码来源:DefaultControllerTypeProvider.cs

示例3: IsComponent

        public static bool IsComponent(TypeInfo typeInfo)
        {
            if (typeInfo == null)
            {
                throw new ArgumentNullException(nameof(typeInfo));
            }

            if (!typeInfo.IsClass ||
                !typeInfo.IsPublic ||
                typeInfo.IsAbstract ||
                typeInfo.ContainsGenericParameters)
            {
                return false;
            }

            return
                typeInfo.Name.EndsWith(ViewComponentSuffix, StringComparison.OrdinalIgnoreCase) ||
                typeInfo.IsDefined(typeof(ViewComponentAttribute));
        }
开发者ID:phinq19,项目名称:git_example,代码行数:19,代码来源:ViewComponentConventions.cs

示例4: AllPublicTypesShouldBeAnnotatedWithPublicAPIAttribute

 public void AllPublicTypesShouldBeAnnotatedWithPublicAPIAttribute(TypeInfo type)
 {
     Assert.True(type.IsDefined(typeof(PublicAPIAttribute), true));
 }
开发者ID:MinistroFx,项目名称:Ministro,代码行数:4,代码来源:ConventionTests.cs

示例5: Create

        internal static HarshEntityMetadata Create(HarshEntityMetadataRepository repository, TypeInfo typeInfo)
        {
            if (repository == null)
            {
                throw Logger.Fatal.ArgumentNull(nameof(repository));
            }

            if (typeInfo == null)
            {
                throw Logger.Fatal.ArgumentNull(nameof(typeInfo));
            }

            if (typeInfo.IsDefined(typeof(ContentTypeAttribute), inherit: false))
            {
                return new HarshEntityMetadataContentType(repository, typeInfo);
            }

            throw new NotImplementedException("TODO: more entity types to come :)");
        }
开发者ID:NaseUkolyCZ,项目名称:HarshPoint,代码行数:19,代码来源:HarshEntityMetadata.cs


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