Share via


ValueBuffer Constructors

Definition

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

values
IList<Object>

The list of values for this buffer.

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

values
IList<Object>

The list of values for this buffer.

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