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.
파일 보기 프로젝트 열기: formicary/fpml-toolkit-csharp 1 사용 예제들

공개 메소드들

메소드 설명
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