2 writes to Start
Microsoft.AspNetCore.Components.Server (2)
BlazorPack\SequenceOfT.cs (2)
387this.Start = 0; 435this.Start = offset;
9 references to Start
Microsoft.AspNetCore.Components.Server (9)
BlazorPack\SequenceOfT.cs (9)
109? new ReadOnlySequence<T>(sequence.first, sequence.first.Start, sequence.last, sequence.last.End) 136Requires.Argument(firstIndex >= current.Start, nameof(position), "Position must not be earlier than current position."); 341internal int Length => this.End - this.Start; 383this.ClearReferences(this.Start, this.End); 409segment.RunningIndex = this.RunningIndex + this.Start + this.Length; 414this.Memory = this.AvailableMemory.Slice(0, this.Start + this.Length); 433Debug.Assert(offset >= this.Start, "Trying to rewind."); 434this.ClearReferences(this.Start, offset - this.Start);