Click or drag to resize

MongoDatabaseEval Method (EvalFlags, BsonJavaScript, Object)

Note: This API is now obsolete.

Evaluates JavaScript code at the server.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
[ObsoleteAttribute("Use the overload of Eval that has an EvalArgs parameter instead.")]
public virtual BsonValue Eval(
	EvalFlags flags,
	BsonJavaScript code,
	params Object[] args
)

Parameters

flags
Type: MongoDB.DriverEvalFlags
Flags that control Eval options.
code
Type: MongoDB.BsonBsonJavaScript
The code to evaluate.
args
Type: SystemObject
Optional arguments (only used when the code is a function with parameters).

Return Value

Type: BsonValue
The result of evaluating the code.
See Also