C# Class HandCoded.FpML.Schemes.ClosedScheme

The ClosedScheme class provides an extened implementation of CachedScheme that implements the IEnumerable and IMatchable interfaces.
Inheritance: CachedScheme, IEnumerable, IMatchable
Exibir arquivo Open project: formicary/fpml-toolkit-csharp Class Usage Examples

Public Methods

Method Description
ClosedScheme ( string uri ) : System

Constructs a ClosedScheme instance for the indicated scheme URI.

ClosedScheme ( string uri, string canonicalUri ) : System

Constructs a ClosedScheme instance for the indicated scheme URI and canonical URI.

Like ( string pattern ) : HandCoded.FpML.Schemes.Value[]

Finds the subset of scheme values that match the provided regular expression. No particular ordering of the values is enforced.

Method Details

ClosedScheme() public method

Constructs a ClosedScheme instance for the indicated scheme URI.
public ClosedScheme ( string uri ) : System
uri string The URI used to reference the scheme.
return System

ClosedScheme() public method

Constructs a ClosedScheme instance for the indicated scheme URI and canonical URI.
public ClosedScheme ( string uri, string canonicalUri ) : System
uri string The URI used to reference the scheme.
canonicalUri string The canonical URI or null.
return System

Like() public method

Finds the subset of scheme values that match the provided regular expression. No particular ordering of the values is enforced.
public Like ( string pattern ) : HandCoded.FpML.Schemes.Value[]
pattern string A regular expression.
return HandCoded.FpML.Schemes.Value[]