5 references to AvailableMemory
Microsoft.AspNetCore.Components.Server (5)
BlazorPack\SequenceOfT.cs (5)
320internal Memory<T> RemainingMemory => this.AvailableMemory.Slice(this.End); 325internal Span<T> RemainingSpan => this.AvailableMemory.Span.Slice(this.End); 347internal int WritableBytes => this.AvailableMemory.Length - this.End; 414this.Memory = this.AvailableMemory.Slice(0, this.Start + this.Length); 443this.AvailableMemory.Span.Slice(startIndex, length).Clear();