Ext.Net.DataViewBase.GetStore C# (CSharp) Method

GetStore() public method

public GetStore ( ) : Store
return Store
        public Store GetStore()
        {
            if (this.Store.Primary != null)
            {
                return this.Store.Primary;
            }

            if (this.StoreID.IsNotEmpty())
            {
                return ControlUtils.FindControl<Store>(this, this.StoreID, true);
            }

            return null;
        }
    }