C# Class Dynamitey.DynamicObjects.RegexMatch

A Dynamic Regex Match
Inheritance: BaseObject, IRegexMatch
Show file Open project: ekonbenefits/dynamitey

Private Properties

Property Type Description

Public Methods

Method Description
GetDynamicMemberNames ( ) : IEnumerable

Gets the dynamic member names.

RegexMatch ( Match match, Regex regex = null ) : System

Initializes a new instance of the RegexMatch class.

ToString ( ) : string

Returns a System.String that represents this instance.

TryGetMember ( GetMemberBinder binder, object &result ) : bool

Tries the get member.

this ( int value ) : string

Gets the System.String with the specified value.

this ( string value ) : string

Gets the System.String with the specified value.

Method Details

GetDynamicMemberNames() public method

Gets the dynamic member names.
public GetDynamicMemberNames ( ) : IEnumerable
return IEnumerable

RegexMatch() public method

Initializes a new instance of the RegexMatch class.
public RegexMatch ( Match match, Regex regex = null ) : System
match Match The match.
regex Regex The regex.
return System

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

TryGetMember() public method

Tries the get member.
public TryGetMember ( GetMemberBinder binder, object &result ) : bool
binder GetMemberBinder The binder.
result object The result.
return bool

this() public method

Gets the System.String with the specified value.
public this ( int value ) : string
value int The value.
return string

this() public method

Gets the System.String with the specified value.
public this ( string value ) : string
value string The value.
return string