Method Keep
Keep(params MemberConstruction[])
Creates a new filter that will keep the given values (and filter out the rest)
Declaration
public static ILineElementConstructionFilter Keep(params MemberConstruction[] values)
Parameters
| Type | Name | Description |
|---|---|---|
| MemberConstruction[] | values | The values to keep |
Returns
| Type | Description |
|---|---|
| ILineElementConstructionFilter | A new entity construction filter |
Keep(Func<MemberConstruction, bool>)
Creates a new filter that will keep the given values (and filter out the rest)
Declaration
public static ILineElementConstructionFilter Keep(Func<MemberConstruction, bool> predicate)
Parameters
| Type | Name | Description |
|---|---|---|
| Func<MemberConstruction, bool> | predicate | The function to obtain the included (resp. excluded) values |
Returns
| Type | Description |
|---|---|
| ILineElementConstructionFilter | A new entity construction filter |