Telerik.Web.Mvc.Infrastructure.AggregateFunction.GenerateFunctionName C# (CSharp) Method

GenerateFunctionName() protected method

Generates default name for this function using this type's name.
protected GenerateFunctionName ( ) : string
return string
        protected virtual string GenerateFunctionName()
        {
            return string.Format(CultureInfo.InvariantCulture, "{0}_{1}", this.GetType().Name, this.GetHashCode());
        }