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
Afficher le fichier Open project: formicary/fpml-toolkit-csharp Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

ClosedScheme() public méthode

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.
Résultat System

Like() public méthode

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.
Résultat HandCoded.FpML.Schemes.Value[]