Protocol ResponseFlags EnumerationNFX Class Library

[This is preliminary documentation and is subject to change.]

Namespace: NFX.DataAccess.MongoDB.Connector
Assembly: NFX.MongoDB (in NFX.MongoDB.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

[FlagsAttribute]
public enum ResponseFlags
Members

  Member nameValueDescription
None0
CursorNotFound1 Set when getMore is called but the cursor id is not valid at the server. Returned with zero results.
QueryFailure2 Set when query failed. Results consist of one document containing an “$err” field describing the failure.
ShardConfigStale4 Drivers should ignore this. Only mongos will ever see this set, in which case, it needs to update config from the server.
AwaitCapable8 Set when the server supports the AwaitData Query option. If it doesn’t, a client should sleep a little between getMore’s of a Tailable cursor. Mongod version 1.6 supports AwaitData and thus always sets AwaitCapable.
See Also