public override bool Equals(object obj)
        {
            UnthrottledBudgetKey unthrottledBudgetKey = obj as UnthrottledBudgetKey;

            return(!(unthrottledBudgetKey == null) && unthrottledBudgetKey.BudgetType == base.BudgetType && unthrottledBudgetKey.Id == this.Id);
        }
Exemple #2
0
        // Token: 0x0600746D RID: 29805 RVA: 0x0017FEC4 File Offset: 0x0017E0C4
        public static IStandardBudget AcquireUnthrottledBudget(string identifier, BudgetType budgetType)
        {
            UnthrottledBudgetKey budgetKey = new UnthrottledBudgetKey(identifier, budgetType);

            return(StandardBudget.Acquire(budgetKey));
        }