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.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
public ProjectionDefinition<TSource> Slice(
	FieldDefinition<TSource> field,
	int skip,
	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