C# Class MongoDB.Driver.Document

Description of Document.
Inheritance: System.Collections.DictionaryBase
Mostra file Open project: sdether/mongodb-csharp Class Usage Examples

Public Methods

Method Description
Add ( String key, Object value ) : void
Append ( String key, Object value ) : Document
Clear ( ) : void
Contains ( String key ) : bool
CopyTo ( Document dest ) : void

TODO Fix any accidental reordering issues.

Document ( ) : System
Equals ( Document obj ) : bool
Equals ( object obj ) : bool
GetHashCode ( ) : int
Insert ( String key, Object value, int Position ) : void

Adds an item to the Document at the specified position

Prepend ( String key, Object value ) : Document
Remove ( String key ) : void
ToString ( ) : string
Update ( Document from ) : Document
this ( String key ) : Object

Private Methods

Method Description
GetArrayHashcode ( Array array ) : int
GetValueHashCode ( object value ) : int

Method Details

Add() public method

public Add ( String key, Object value ) : void
key String
value Object
return void

Append() public method

public Append ( String key, Object value ) : Document
key String
value Object
return Document

Clear() public method

public Clear ( ) : void
return void

Contains() public method

public Contains ( String key ) : bool
key String
return bool

CopyTo() public method

TODO Fix any accidental reordering issues.
public CopyTo ( Document dest ) : void
dest Document
return void

Document() public method

public Document ( ) : System
return System

Equals() public method

public Equals ( Document obj ) : bool
obj Document
return bool

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

Insert() public method

Adds an item to the Document at the specified position
public Insert ( String key, Object value, int Position ) : void
key String
value Object
Position int
return void

Prepend() public method

public Prepend ( String key, Object value ) : Document
key String
value Object
return Document

Remove() public method

public Remove ( String key ) : void
key String
return void

ToString() public method

public ToString ( ) : string
return string

Update() public method

public Update ( Document from ) : Document
from Document
return Document

this() public method

public this ( String key ) : Object
key String
return Object