ValueBuffer Constructors
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
ValueBuffer(IList<Object>) |
Initializes a new instance of the ValueBuffer class. |
ValueBuffer(Object[]) |
Initializes a new instance of the ValueBuffer class. |
ValueBuffer(IList<Object>, Int32) |
Initializes a new instance of the ValueBuffer class. |
ValueBuffer(Object[], Int32) |
Initializes a new instance of the ValueBuffer class. |
ValueBuffer(IList<Object>)
Initializes a new instance of the ValueBuffer class.
public ValueBuffer (System.Collections.Generic.IList<object> values);
new Microsoft.EntityFrameworkCore.Storage.ValueBuffer : System.Collections.Generic.IList<obj> -> Microsoft.EntityFrameworkCore.Storage.ValueBuffer
Public Sub New (values As IList(Of Object))
Parameters
Applies to
ValueBuffer(Object[])
Initializes a new instance of the ValueBuffer class.
public ValueBuffer (object[] values);
public ValueBuffer (object?[] values);
new Microsoft.EntityFrameworkCore.Storage.ValueBuffer : obj[] -> Microsoft.EntityFrameworkCore.Storage.ValueBuffer
Public Sub New (values As Object())
Parameters
- values
- Object[]
The list of values for this buffer.
Applies to
ValueBuffer(IList<Object>, Int32)
Initializes a new instance of the ValueBuffer class.
public ValueBuffer (System.Collections.Generic.IList<object> values, int offset);
new Microsoft.EntityFrameworkCore.Storage.ValueBuffer : System.Collections.Generic.IList<obj> * int -> Microsoft.EntityFrameworkCore.Storage.ValueBuffer
Public Sub New (values As IList(Of Object), offset As Integer)
Parameters
- offset
- Int32
The starting slot in values
for this buffer.
Applies to
ValueBuffer(Object[], Int32)
Initializes a new instance of the ValueBuffer class.
public ValueBuffer (object[] values, int offset);
new Microsoft.EntityFrameworkCore.Storage.ValueBuffer : obj[] * int -> Microsoft.EntityFrameworkCore.Storage.ValueBuffer
Public Sub New (values As Object(), offset As Integer)
Parameters
- values
- Object[]
The list of values for this buffer.
- offset
- Int32
The starting slot in values
for this buffer.
Applies to
Entity Framework