Ext.Net.EventStore.GetAjaxDataJson C# (CSharp) Method

GetAjaxDataJson() protected method

protected GetAjaxDataJson ( ) : string
return string
        protected override string GetAjaxDataJson()
        {
            if (this.Proxy.Count == 0 && this.Events.Count > 0)
            {
                return JSON.Serialize(this.Events);
            }

            return base.GetAjaxDataJson();
        }