// Token: 0x060073E1 RID: 29665 RVA: 0x0017DCC8 File Offset: 0x0017BEC8
 public CostHandle StartActiveRunspace(Action <CostHandle> onRelease)
 {
     ExTraceGlobals.ClientThrottlingTracer.TraceDebug <BudgetKey>((long)this.GetHashCode(), "[PowerShellBudget.StartActiveRunspace] Start called for user {0}", base.Owner);
     this.Update();
     if (this.IsMaxRunspacesPerTimePeriodEnabled())
     {
         Interlocked.Decrement(ref this.runspacesRemaining);
     }
     Interlocked.Increment(ref this.activeRunspaces);
     if (this.TrackActiveRunspacePerfCounter)
     {
         ThrottlingPerfCounterWrapper.IncrementActivePowerShellRunspaces();
     }
     return(new CostHandle(this, CostType.ActiveRunspace, onRelease, "PowerShellBudget.StartActiveRunspace", default(TimeSpan)));
 }