Class StringOrRegularExpression
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
BsonRegularExpressionA BsonRegularExpression value.
StringOrRegularExpression(string)
Initializes an instance of a StringOrRegularExpression.
public StringOrRegularExpression(string value)
Parameters
value
stringA string value.
Properties
RegularExpression
Gets the BsonRegularExpression value (returns null if value is not a BsonRegularExpression).
public BsonRegularExpression RegularExpression { get; }
Property Value
String
Gets the string value (returns null if value is not a string).
public string String { get; }
Property Value
Type
Gets the type of the value.
public Type Type { get; }
Property Value
Operators
implicit operator StringOrRegularExpression(BsonRegularExpression)
Implicit conversion from BsonRegularExpression to StringOrRegularExpression.
public static implicit operator StringOrRegularExpression(BsonRegularExpression value)
Parameters
value
BsonRegularExpressionA StringOrRegularExpression.
Returns
- StringOrRegularExpression
A StringOrRegularExpression.
implicit operator StringOrRegularExpression(string)
Implicit conversion from string to StringOrRegularExpression.
public static implicit operator StringOrRegularExpression(string value)
Parameters
value
stringA StringOrRegularExpression.
Returns
- StringOrRegularExpression
A StringOrRegularExpression.
implicit operator StringOrRegularExpression(Regex)
Implicit conversion from Regex to StringOrRegularExpression.
public static implicit operator StringOrRegularExpression(Regex value)
Parameters
value
RegexA StringOrRegularExpression.
Returns
- StringOrRegularExpression
A StringOrRegularExpression.