Class ConditionalSearchCriteria<T>
Inherited Members
Namespace: Unity.Cloud.Assets
Assembly: Unity.Cloud.Assets.dll
Syntax
public sealed class ConditionalSearchCriteria<T> : BaseSearchCriteria
Type Parameters
Name | Description |
---|---|
T |
Methods
Clear()
Clears the criteria fields.
Declaration
public override void Clear()
Overrides
WithValue(SearchConditionRange, T)
Sets the value of the conditional criteria.
Declaration
public void WithValue(SearchConditionRange range, T value)
Parameters
Type | Name | Description |
---|---|---|
SearchConditionRange | range | The range to consider. |
T | value | The threshold value. |
WithValueGreaterThan(T)
Sets the value of the conditional criteria.
Declaration
public void WithValueGreaterThan(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The threshold value. |
WithValueGreaterThanOrEqualTo(T)
Sets the value of the conditional criteria.
Declaration
public void WithValueGreaterThanOrEqualTo(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The threshold value. |
WithValueLessThan(T)
Sets the value of the conditional criteria.
Declaration
public void WithValueLessThan(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The threshold value. |
WithValueLessThanOrEqualTo(T)
Sets the value of the conditional criteria.
Declaration
public void WithValueLessThanOrEqualTo(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The threshold value. |