Shovel.Vm.Vm.IncrementCellsHerald C# (CSharp) Méthode

IncrementCellsHerald() static private méthode

static private IncrementCellsHerald ( int cells ) : void
cells int
Résultat void
        void IncrementCellsHerald(int cells)
        {
            if (this.cellsQuota != null && cells > this.cellsQuota.Value) {
                throw new ShovelCellQuotaExceededException ();
            }
        }
Vm