BasicModuleGetMethodsByAttributeT Method

Returns a collection of the methods decorated with the given attribute that the module contains.

Definition

Namespace: MFiles.VAF.Module
Assembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
C#
public virtual IEnumerable<MethodInfo> GetMethodsByAttribute<T>(
	bool unused = false
)
where T : Attribute

Parameters

unused  Boolean  (Optional)
True to return unused handlers, false to return current used handlers.

Type Parameters

T

Return Value

IEnumerableMethodInfo
A collection of methods or an empty collection if the module is not enabled.

Implements

IMethodSourceGetMethodsByAttributeT(Boolean)

See Also