Ssd13xx.SliceGenericBuffer Method
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.
SliceGenericBuffer(Int32) |
Acquires span of specific length pointing to the command buffer. If length of the command buffer is too small it will be reallocated. |
SliceGenericBuffer(Int32, Int32) |
Acquires span of specific length at specific position in command buffer. If length of the command buffer is too small it will be reallocated. |
Acquires span of specific length pointing to the command buffer. If length of the command buffer is too small it will be reallocated.
protected Span<byte> SliceGenericBuffer (int length);
member this.SliceGenericBuffer : int -> Span<byte>
Protected Function SliceGenericBuffer (length As Integer) As Span(Of Byte)
Parameters
- length
- Int32
Requested length
Returns
Span of bytes pointing to the command buffer
Applies to
.NET IoT Libraries 2.2.0 and other versions
Product | Versions |
---|---|
.NET IoT Libraries | 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 2.0.0, 2.1.0, 2.2.0 |
Acquires span of specific length at specific position in command buffer. If length of the command buffer is too small it will be reallocated.
protected Span<byte> SliceGenericBuffer (int start, int length);
member this.SliceGenericBuffer : int * int -> Span<byte>
Protected Function SliceGenericBuffer (start As Integer, length As Integer) As Span(Of Byte)
Parameters
- start
- Int32
Start index of the requested span
- length
- Int32
Requested length
Returns
Span of bytes pointing to the command buffer
Applies to
.NET IoT Libraries 2.2.0 and other versions
Product | Versions |
---|---|
.NET IoT Libraries | 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.5.0, 2.0.0, 2.1.0, 2.2.0 |