Interface IPropertyQuery
Defines a strategy for selecting properties from a type.
Namespace: AutoFixture.Kernel
Assembly: AutoFixture.dll
Syntax
public interface IPropertyQuery
Methods
| Improve this Doc View SourceSelectProperties(Type)
Selects the properties for the specified type
.
Declaration
IEnumerable<PropertyInfo> SelectProperties(Type type)
Parameters
Type | Name | Description |
---|---|---|
System.Type | type | The type. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Reflection.PropertyInfo> | Property information for properties belonging to |