Ext.Net.DataViewBase.CheckStore C# (CSharp) Méthode

CheckStore() protected méthode

protected CheckStore ( ) : void
Résultat void
        protected virtual void CheckStore()
        {
            if (this.IsDynamic && !string.IsNullOrEmpty(this.StoreID))
            {
                return;
            }

            if (this.GetStore() == null)
            {
                throw new StoreNotFoundException("Please define a store for the DataView with ID='" + this.ID + "'");
            }
        }