Table of Contents

Class StringPaddingData

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Data about string padding characters at specific positions.

public class StringPaddingData
Inheritance
StringPaddingData
Inherited Members
Extension Methods

Properties

First

Gets or sets whether to check the first character [0].

public bool First { get; set; }

Property Value

bool

First2

Gets or sets whether to check the second character [1].

public bool First2 { get; set; }

Property Value

bool

FirstChar

Gets or sets the expected first character [0].

public char FirstChar { get; set; }

Property Value

char

FirstChar2

Gets or sets the expected second character [1].

public char FirstChar2 { get; set; }

Property Value

char

Last

Gets or sets whether to check the last character [Length-1].

public bool Last { get; set; }

Property Value

bool

Last2

Gets or sets whether to check the penultimate character [Length-2].

public bool Last2 { get; set; }

Property Value

bool

LastChar

Gets or sets the expected last character [Length-1].

public char LastChar { get; set; }

Property Value

char

LastChar2

Gets or sets the expected penultimate character [Length-2].

public char LastChar2 { get; set; }

Property Value

char

Text

Gets or sets the text to be validated.

public string Text { get; set; }

Property Value

string