ReadOnlySequence<T>.GetPosition Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetPosition(Int64) |
Returns a new SequencePosition at an |
GetPosition(Int64, SequencePosition) |
Returns a new SequencePosition starting at the specified offset from the |
GetPosition(Int64)
- Source:
- ReadOnlySequence.cs
- Source:
- ReadOnlySequence.cs
- Source:
- ReadOnlySequence.cs
Returns a new SequencePosition at an offset
from the start of the sequence.
public:
SequencePosition GetPosition(long offset);
public SequencePosition GetPosition (long offset);
member this.GetPosition : int64 -> SequencePosition
Public Function GetPosition (offset As Long) As SequencePosition
Parameters
- offset
- Int64
The offset from the start of the sequence.
Returns
An object representing the sequence position that starts at the specified offset
from the start of the sequence.
Applies to
GetPosition(Int64, SequencePosition)
- Source:
- ReadOnlySequence.cs
- Source:
- ReadOnlySequence.cs
- Source:
- ReadOnlySequence.cs
Returns a new SequencePosition starting at the specified offset from the origin
position.
public:
SequencePosition GetPosition(long offset, SequencePosition origin);
public SequencePosition GetPosition (long offset, SequencePosition origin);
member this.GetPosition : int64 * SequencePosition -> SequencePosition
Public Function GetPosition (offset As Long, origin As SequencePosition) As SequencePosition
Parameters
- offset
- Int64
The offset from the specified origin
sequence position.
- origin
- SequencePosition
A sequence position representing the point from which to initiate the offset.
Returns
An object representing the sequence position that starts at the offset
position of the specified origin
position object.