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