Table of Contents

Class MongoUtils

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Various static utility methods.

public static class MongoUtils
Inheritance
MongoUtils
Inherited Members

Methods

Hash(string)

Gets the MD5 hash of a string.

public static string Hash(string text)

Parameters

text string

The string to get the MD5 hash of.

Returns

string

The MD5 hash.

TimeSpanFromMicroseconds(long)

Creates a TimeSpan from microseconds.

public static TimeSpan TimeSpanFromMicroseconds(long microseconds)

Parameters

microseconds long

The microseconds.

Returns

TimeSpan

The TimeSpan.

ToCamelCase(string)

Converts a string to camel case by lower casing the first letter (only the first letter is modified).

public static string ToCamelCase(string value)

Parameters

value string

The string to camel case.

Returns

string

The camel cased string.