C# Class MongoDB.Driver.Document

Description of Document.
Inheritance: System.Collections.DictionaryBase
Afficher le fichier Open project: sdether/mongodb-csharp Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
GetArrayHashcode ( Array array ) : int
GetValueHashCode ( object value ) : int

Method Details

Add() public méthode

public Add ( String key, Object value ) : void
key String
value Object
Résultat void

Append() public méthode

public Append ( String key, Object value ) : Document
key String
value Object
Résultat Document

Clear() public méthode

public Clear ( ) : void
Résultat void

Contains() public méthode

public Contains ( String key ) : bool
key String
Résultat bool

CopyTo() public méthode

TODO Fix any accidental reordering issues.
public CopyTo ( Document dest ) : void
dest Document
Résultat void

Document() public méthode

public Document ( ) : System
Résultat System

Equals() public méthode

public Equals ( Document obj ) : bool
obj Document
Résultat bool

Equals() public méthode

public Equals ( object obj ) : bool
obj object
Résultat bool

GetHashCode() public méthode

public GetHashCode ( ) : int
Résultat int

Insert() public méthode

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
Résultat void

Prepend() public méthode

public Prepend ( String key, Object value ) : Document
key String
value Object
Résultat Document

Remove() public méthode

public Remove ( String key ) : void
key String
Résultat void

ToString() public méthode

public ToString ( ) : string
Résultat string

Update() public méthode

public Update ( Document from ) : Document
from Document
Résultat Document

this() public méthode

public this ( String key ) : Object
key String
Résultat Object