|   | StatisticCalculationFunction Delegate | 
        
        
            Method signature for function used to calculate a statistic for a given object.
            
        
        Namespace: GSF.TimeSeries.StatisticsAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic delegate double StatisticCalculationFunction(
	Object source,
	string arguments
)
Public Delegate Function StatisticCalculationFunction ( 
	source As Object,
	arguments As String
) As Double
public delegate double StatisticCalculationFunction(
	Object^ source, 
	String^ arguments
)
type StatisticCalculationFunction = 
    delegate of 
        source : Object * 
        arguments : string -> floatfunction(source, arguments);
Parameters
- source  Object
- Source object.
- arguments  String
- Any needed arguments for statistic calculation.
Return Value
DoubleActual calculated statistic.
 See Also
See Also