System.Attribute.GetCustomAttribute 方法 (ParameterInfo, Type)
上一篇:System.Attribute.GetCustomAttribute(Module,Type) 方法
下一篇:System.Attribute.GetCustomAttribute(Assembly,Type,Boolean) 方法
方法描述
检索应用于方法参数的自定义特性。 参数指定方法参数和要搜索的自定义特性的类型。
语法定义(C# System.Attribute.GetCustomAttribute 方法 (ParameterInfo, Type) 的用法)
public static Attribute GetCustomAttribute( ParameterInfo element, Type attributeType )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
element | System-Reflection-ParameterInfo | 一个从 ParameterInfo 类派生的对象,该类描述类成员的参数。 |
attributeType | System-Type | 要搜索的自定义特性的类型,即基类型。 |
返回值 | System.Attribute | 一个引用,指向应用于 element 的 attributeType 类型的单个自定义特性;如果没有此类特性,则为 null。 |
提示和注释
如果 element 表示派生类型的方法中的参数,则返回值将包含应用于重写基方法中的同一参数的可继承自定义特性。
System.Attribute.GetCustomAttribute 方法 (ParameterInfo, Type)例子
该示例说明如何使用 GetCustomAttribute 方法返回特性。
// Example for the Attribute.GetCustomAttribute( ParameterInfo, Type ) method. using System; using System.Reflection; namespace NDP_UE_CS { // Define a custom parameter attribute that takes a single message argument. [AttributeUsage( AttributeTargets.Parameter )] public class ArgumentUsageAttribute : Attribute { // This is the attribute constructor. public ArgumentUsageAttribute( string UsageMsg ) { this.usageMsg = UsageMsg; } // usageMsg is storage for the attribute message. protected string usageMsg; // This is the Message property for the attribute. public string Message { get { return usageMsg; } set { usageMsg = value; } } } public class BaseClass { // Assign an ArgumentUsage attribute to the strArray parameter. // Assign a ParamArray attribute to strList using the params keyword. public virtual void TestMethod( [ArgumentUsage("Must pass an array here.")] String[] strArray, params String[] strList) { } } public class DerivedClass : BaseClass { // Assign an ArgumentUsage attribute to the strList parameter. // Assign a ParamArray attribute to strList using the params keyword. public override void TestMethod( String[] strArray, [ArgumentUsage("Can pass a parameter list or array here.")] params String[] strList) { } } class CustomParamDemo { static void Main( ) { Console.WriteLine( "This example of Attribute.GetCustomAttribute( Param" + "eterInfo, Type )\ngenerates the following output." ); // Get the class type, and then get the MethodInfo object // for TestMethod to access its metadata. Type clsType = typeof( DerivedClass ); MethodInfo mInfo = clsType.GetMethod("TestMethod"); // Iterate through the ParameterInfo array for the method parameters. ParameterInfo[] pInfoArray = mInfo.GetParameters(); if (pInfoArray != null) { foreach( ParameterInfo paramInfo in pInfoArray ) { // See if the ParamArray attribute is defined. bool isDef = Attribute.IsDefined( paramInfo, typeof(ParamArrayAttribute)); if( isDef ) Console.WriteLine( "\nThe ParamArray attribute is defined " + "for \nparameter {0} of method {1}.", paramInfo.Name, mInfo.Name); // See if ParamUsageAttribute is defined. // If so, display a message. ArgumentUsageAttribute usageAttr = (ArgumentUsageAttribute) Attribute.GetCustomAttribute( paramInfo, typeof(ArgumentUsageAttribute) ); if( usageAttr != null ) { Console.WriteLine( "\nThe ArgumentUsage attribute is defined " + "for \nparameter {0} of method {1}.", paramInfo.Name, mInfo.Name ); Console.WriteLine( "\n The usage " + "message for {0} is:\n \"{1}\".", paramInfo.Name, usageAttr.Message); } } } else Console.WriteLine( "The parameters information could not " + "be retrieved for method {0}.", mInfo.Name); } } } /* This example of Attribute.GetCustomAttribute( ParameterInfo, Type ) generates the following output. The ArgumentUsage attribute is defined for parameter strArray of method TestMethod. The usage message for strArray is: "Must pass an array here.". The ParamArray attribute is defined for parameter strList of method TestMethod. The ArgumentUsage attribute is defined for parameter strList of method TestMethod. The usage message for strList is: "Can pass a parameter list or array here.". */
异常
异常 | 异常描述 |
---|---|
ArgumentNullException | element 或 attributeType 为 null。 |
ArgumentException | attributeType 不从 Attribute 派生。 |
AmbiguousMatchException | 找到了多个请求的特性。 |
TypeLoadException | 无法加载自定义特性类型。 |
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
上一篇:System.Attribute.GetCustomAttribute(Module,Type) 方法
下一篇:System.Attribute.GetCustomAttribute(Assembly,Type,Boolean) 方法