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


C# Module.GetCustomAttributes方法代码示例

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


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

示例1: GetCustomAttributes

		public static Attribute[] GetCustomAttributes (Module element, Type attributeType, bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, attributeType);

			return (Attribute []) element.GetCustomAttributes (attributeType, inherit);
		}
开发者ID:valsavva,项目名称:mono,代码行数:7,代码来源:Attribute.cs

示例2: WriteCustomAttributes

		private void WriteCustomAttributes(XmlWriter writer, Module module) 
		{
			WriteCustomAttributes(writer, module.GetCustomAttributes(this.rep.DocumentInheritedAttributes), "module");
		}
开发者ID:ceefour,项目名称:aphrodox,代码行数:4,代码来源:ReflectionEngine.cs

示例3: GetCustomAttributes

        public static Attribute[] GetCustomAttributes(Module element, Type attributeType, bool inherit)
        {
            if (element == null)
                throw new ArgumentNullException(nameof(element));

            if (attributeType == null)
                throw new ArgumentNullException(nameof(attributeType));

            if (!attributeType.IsSubclassOf(typeof(Attribute)) && attributeType != typeof(Attribute))
                throw new ArgumentException(Environment.GetResourceString("Argument_MustHaveAttributeBaseClass"));
            Contract.EndContractBlock();

            return (Attribute[])element.GetCustomAttributes(attributeType, inherit);
        }
开发者ID:Clockwork-Muse,项目名称:coreclr,代码行数:14,代码来源:Attribute.cs

示例4: GetCustomAttribute

		public static Attribute GetCustomAttribute (Module element, Type attributeType, bool inherit)
		{
			// neither parameter is allowed to be null
			CheckParameters (element, attributeType);

			// Module inheritance hierarchies CAN NOT be searched for attributes, so the second
			// parameter of GetCustomAttributes () is IGNORED.
			object[] attributes = element.GetCustomAttributes (attributeType, inherit);

			return FindAttribute (attributes);
		}
开发者ID:valsavva,项目名称:mono,代码行数:11,代码来源:Attribute.cs

示例5: GetElements

 public static ILookup<string, string> GetElements(Module module)
 {
     return module.GetCustomAttributes(typeof(ElementalAttribute))
         .Cast<ElementalAttribute>()
         .MakeLookup();
 }
开发者ID:thirdplay,项目名称:MailNotifierPlugin,代码行数:6,代码来源:ElementalAttribute.cs

示例6: GetCustomAttributes

 public static Attribute[] GetCustomAttributes(Module element, Type attributeType, bool inherit)
 {
     if (element == null)
     {
         throw new ArgumentNullException("element");
     }
     if (attributeType == null)
     {
         throw new ArgumentNullException("attributeType");
     }
     if (!attributeType.IsSubclassOf(typeof(Attribute)) && (attributeType != typeof(Attribute)))
     {
         throw new ArgumentException(Environment.GetResourceString("Argument_MustHaveAttributeBaseClass"));
     }
     return (Attribute[]) element.GetCustomAttributes(attributeType, inherit);
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:16,代码来源:Attribute.cs

示例7: GetCustomAttributes

 internal static Object[] GetCustomAttributes(Module target, Type caType, bool inherit) {
   if (!target.Assembly.ReflectionOnly)
     return target.GetCustomAttributes(caType, inherit);
   return CustomAttribute.ExtractCustomAttribute(CustomAttributeData.GetCustomAttributes(target), caType);
 }
开发者ID:gbarnett,项目名称:shared-source-cli-2.0,代码行数:5,代码来源:customattribute.cs

示例8: GetCustomAttributesImpl

 public override object[] GetCustomAttributesImpl(Module mod, Type attributeType, bool inherit)
 {
     System.Diagnostics.Debug.WriteLine("In GetCustomAttributesImpl 1");
     #if !DEBUG || true
     var name = mod.Name;
     if (mod.Name.Contains("IKVM.OpenJDK") || name.Contains("CodenameOne") || name.Contains("HelloWindows"))
     {
         return new JavaModuleAttribute[] { new JavaModuleAttribute() };
     }
     #endif
     var s = mod.GetCustomAttributes(attributeType).ToArray();
     return s;
 }
开发者ID:sannysanoff,项目名称:CodenameOne,代码行数:13,代码来源:App.xaml.cs

示例9: GetCustomAttributes

		public static Attribute[] GetCustomAttributes (Module element, bool inherit)
		{
			// element parameter is not allowed to be null
			CheckParameters (element, typeof (Attribute));

			return (Attribute []) element.GetCustomAttributes (inherit);
		}
开发者ID:runefs,项目名称:Marvin,代码行数:7,代码来源:Attribute.cs


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