Skip to content

Commit

Permalink
Update RateLimiting ref assembly (#75976)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrennanConroy authored Sep 21, 2022
1 parent f8a1b9f commit 34c522b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ protected virtual void Dispose(bool disposing) { }
public partial class RateLimiterStatistics
{
public RateLimiterStatistics() { }
public long CurrentAvailablePermits { get { throw null; } set { } }
public long CurrentQueuedCount { get { throw null; } set { } }
public long TotalFailedLeases { get { throw null; } set { } }
public long TotalSuccessfulLeases { get { throw null; } set { } }
public long CurrentAvailablePermits { get { throw null; } init { } }
public long CurrentQueuedCount { get { throw null; } init { } }
public long TotalFailedLeases { get { throw null; } init { } }
public long TotalSuccessfulLeases { get { throw null; } init { } }
}
public abstract partial class RateLimitLease : System.IDisposable
{
Expand Down

0 comments on commit 34c522b

Please sign in to comment.