Interface IMethodQuery
Defines a strategy for selecting methods (such as constructors or factory methods) from a type.
Namespace: AutoFixture.Kernel
Assembly: AutoFixture.dll
Syntax
public interface IMethodQuery
Methods
| Improve this Doc View SourceSelectMethods(Type)
Selects the methods for the supplied type.
Declaration
IEnumerable<IMethod> SelectMethods(Type type)
Parameters
Type | Name | Description |
---|---|---|
System.Type | type | The type. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IMethod> | Methods for |