C# Класс HandCoded.FpML.Schemes.Scheme

A Scheme instance holds a collection of values used to validate data fields that may only store a code value taken from the schemes domain.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
IsValid ( string code ) : bool

Determines if the given code value is valid within the scheme.

Защищенные методы

Метод Описание
Scheme ( string uri ) : System

Constructs a Scheme for the given URI.

Scheme ( string uri, string canonicalUri ) : System

Constructs a Scheme for the given URI and canonical uri.

Описание методов

IsValid() публичный абстрактный Метод

Determines if the given code value is valid within the scheme.
public abstract IsValid ( string code ) : bool
code string The code value to be validated.
Результат bool

Scheme() защищенный Метод

Constructs a Scheme for the given URI.
protected Scheme ( string uri ) : System
uri string The associated URI.
Результат System

Scheme() защищенный Метод

Constructs a Scheme for the given URI and canonical uri.
protected Scheme ( string uri, string canonicalUri ) : System
uri string The associated URI.
canonicalUri string The associated canonical URI or null.
Результат System