GetCustomAttributesData() public method

public GetCustomAttributesData ( ) : IList
return IList
コード例 #1
0
		public static IList<CustomAttributeData> __GetCustomAttributes(Assembly assembly, Type attributeType, bool inherit)
		{
			return assembly.GetCustomAttributesData(attributeType);
		}
コード例 #2
0
ファイル: CustomAttributeData.cs プロジェクト: yonder/mono
 public static IList <CustomAttributeData> __GetCustomAttributes(Assembly assembly, Type attributeType, bool inherit)
 {
     return(assembly.GetCustomAttributesData(attributeType));
 }
コード例 #3
0
		public static IList<CustomAttributeData> GetCustomAttributes(Assembly assembly)
		{
			return assembly.GetCustomAttributesData(null);
		}
コード例 #4
0
ファイル: CustomAttributeData.cs プロジェクト: yonder/mono
 public static IList <CustomAttributeData> GetCustomAttributes(Assembly assembly)
 {
     return(assembly.GetCustomAttributesData(null));
 }