ITestMethod.GetAttributes<TAttributeType>(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get attribute of specific type.
public AttributeType[] GetAttributes<AttributeType> (bool inherit) where AttributeType : Attribute;
public TAttributeType[] GetAttributes<TAttributeType> (bool inherit) where TAttributeType : Attribute;
abstract member GetAttributes : bool -> 'AttributeType[] (requires 'AttributeType :> Attribute)
Public Function GetAttributes(Of AttributeType As Attribute) (inherit As Boolean) As AttributeType()
Public Function GetAttributes(Of TAttributeType As Attribute) (inherit As Boolean) As TAttributeType()
Type Parameters
- AttributeType TAttributeType
System.Attribute type.
System.Attribute type.
Parameters
- inherit
- Boolean
Whether attribute defined in parent class is valid.
Returns
AttributeType[]
TAttributeType[]
The attributes of the specified type.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.