Click or drag to resize

MongoDatabaseEval Method (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.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
[ObsoleteAttribute("Use the overload of Eval that has an EvalArgs parameter instead.")]
public virtual BsonValue Eval(
	BsonJavaScript code,
	params Object[] args
)

Parameters

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