Interface ISearchCriteria<T>
Inherited Members
Namespace: Unity.Cloud.Assets
Syntax
public interface ISearchCriteria<in T> : ISearchCriteria
Type Parameters
Name | Description |
---|---|
T |
Methods
Exclude(T)
Implement this method to explicitly exclude results presenting the value
in a search.
Declaration
void Exclude(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | A value to exclude from a search. |
ForAny(T)
Implement this method to include results presenting the value
in a search.
Declaration
void ForAny(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | An optional value for a search. |
Include(T)
Implement this method to explicitly include results presenting the value
in a search.
Declaration
void Include(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | A required value for a search. |