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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax [ObsoleteAttribute("Use the overload of Eval that has an EvalArgs parameter instead.")]
public virtual BsonValue Eval(
BsonJavaScript code,
params Object[] args
)
<ObsoleteAttribute("Use the overload of Eval that has an EvalArgs parameter instead.")>
Public Overridable Function Eval (
code As BsonJavaScript,
ParamArray args As Object()
) As BsonValue
[<ObsoleteAttribute("Use the overload of Eval that has an EvalArgs parameter instead.")>]
abstract Eval :
code : BsonJavaScript *
args : Object[] -> BsonValue
[<ObsoleteAttribute("Use the overload of Eval that has an EvalArgs parameter instead.")>]
override Eval :
code : BsonJavaScript *
args : Object[] -> BsonValue
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:
BsonValueThe result of evaluating the code.
See Also