Table of Contents

Class StringOrRegularExpression

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Represents a value that is either a string or a BsonRegularExpression.

public class StringOrRegularExpression
Inheritance
StringOrRegularExpression
Inherited Members

Constructors

StringOrRegularExpression(BsonRegularExpression)

Initializes an instance of a StringOrRegularExpression.

public StringOrRegularExpression(BsonRegularExpression value)

Parameters

value BsonRegularExpression

A BsonRegularExpression value.

StringOrRegularExpression(string)

Initializes an instance of a StringOrRegularExpression.

public StringOrRegularExpression(string value)

Parameters

value string

A string value.

Properties

RegularExpression

Gets the BsonRegularExpression value (returns null if value is not a BsonRegularExpression).

public BsonRegularExpression RegularExpression { get; }

Property Value

BsonRegularExpression

String

Gets the string value (returns null if value is not a string).

public string String { get; }

Property Value

string

Type

Gets the type of the value.

public Type Type { get; }

Property Value

Type

Operators

implicit operator StringOrRegularExpression(BsonRegularExpression)

Implicit conversion from BsonRegularExpression to StringOrRegularExpression.

public static implicit operator StringOrRegularExpression(BsonRegularExpression value)

Parameters

value BsonRegularExpression

A StringOrRegularExpression.

Returns

StringOrRegularExpression

A StringOrRegularExpression.

implicit operator StringOrRegularExpression(string)

Implicit conversion from string to StringOrRegularExpression.

public static implicit operator StringOrRegularExpression(string value)

Parameters

value string

A StringOrRegularExpression.

Returns

StringOrRegularExpression

A StringOrRegularExpression.

implicit operator StringOrRegularExpression(Regex)

Implicit conversion from Regex to StringOrRegularExpression.

public static implicit operator StringOrRegularExpression(Regex value)

Parameters

value Regex

A StringOrRegularExpression.

Returns

StringOrRegularExpression

A StringOrRegularExpression.