Click or drag to resize

UpdateBuilderPushWrappedT Method

Adds a wrapped value to the end of the named array element (see $push).

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntax
public UpdateBuilder PushWrapped<T>(
	string name,
	T value
)

Parameters

name
Type: SystemString
The name of the array element.
value
Type: T
The wrapped value to add to the end of the array.

Type Parameters

T
The type of wrapped value.

Return Value

Type: UpdateBuilder
The builder (so method calls can be chained).
See Also