C# Class Telerik.Web.Mvc.Infrastructure.AggregateResult

Inheritance: INotifyPropertyChanged
Show file Open project: juanplopes/simple-telerik Class Usage Examples

Public Methods

Method Description
AggregateResult ( AggregateFunction function ) : System

Initializes a new instance of the AggregateResult class.

AggregateResult ( object value, AggregateFunction function ) : System

Initializes a new instance of the AggregateResult class.

AggregateResult ( object value, int count, AggregateFunction function ) : System

Initializes a new instance of the AggregateResult class.

ToString ( ) : string

Returns a T:System.String that represents the current T:System.Object.

Protected Methods

Method Description
OnPropertyChanged ( string propertyName ) : void

Called when a property has changed.

Method Details

AggregateResult() public method

Initializes a new instance of the AggregateResult class.
function is null.
public AggregateResult ( AggregateFunction function ) : System
function AggregateFunction that generated the result.
return System

AggregateResult() public method

Initializes a new instance of the AggregateResult class.
public AggregateResult ( object value, AggregateFunction function ) : System
value object The value of the result.
function AggregateFunction that generated the result.
return System

AggregateResult() public method

Initializes a new instance of the AggregateResult class.
function is null.
public AggregateResult ( object value, int count, AggregateFunction function ) : System
value object The value of the result.
count int The number of arguments used for the calculation of the result.
function AggregateFunction Function that generated the result.
return System

OnPropertyChanged() protected method

Called when a property has changed.
protected OnPropertyChanged ( string propertyName ) : void
propertyName string Name of the property.
return void

ToString() public method

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
return string