InterfaceIConvertibleAggregateValue<T>
Interface
Supports conversion of AggregateValue to given T.
Definition
Namespace:Telerik.Pivot.Core.Aggregates
Assembly:Telerik.Pivot.Core.dll
Type Parameters:
T
The type to convert to.
Syntax:
cs-api-definition
public interface IConvertibleAggregateValue<T>
Methods
TryConvertValue(out T)
Attempts to convert AggregateValue to given T.
Declaration
cs-api-definition
bool TryConvertValue(out T value)
Parameters
value
T
When this method returns, contains the value associated, if conversion is possible; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Returns
True if conversion succeeded, otherwise false.