Click or drag to resize

ProjectionDefinitionBuilder<TSource>.Slice Method (FieldDefinition<TSource>, Int32, Nullable<Int32>)

Creates an array slice projection.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax
public ProjectionDefinition<TSource> Slice(
	FieldDefinition<TSource> field,
	int skip,
	Nullable<int> limit = null
)

Parameters

field
Type: MongoDB.Driver.FieldDefinition<TSource>
The field.
skip
Type: System.Int32
The skip.
limit (Optional)
Type: System.Nullable<Int32>
The limit.

Return Value

Type: ProjectionDefinition<TSource>
An array slice projection.
See Also