LettersExtra Method

HttpServer.dll

Validate that a string consists of only letters (a-z and A-Z)

Namespace:  HttpServer.Helpers
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public string LettersExtra(
	string name,
	string extraCharacters,
	bool required
)
Visual Basic (Declaration)
Public Function LettersExtra ( _
	name As String, _
	extraCharacters As String, _
	required As Boolean _
) As String
Visual C++
public:
String^ LettersExtra(
	String^ name, 
	String^ extraCharacters, 
	bool required
)

Parameters

name
Type: System..::.String

[Missing <param name="name"/> documentation for "M:HttpServer.Helpers.FormValidator.LettersExtra(System.String,System.String,System.Boolean)"]

extraCharacters
Type: System..::.String
A string of extra character to test against, dont forget language specific characters and spaces if wished for
required
Type: System..::.Boolean
If a value must be passed

Return Value

[Missing <returns> documentation for M:HttpServer.Helpers.FormValidator.LettersExtra(System.String,System.String,System.Boolean)]

See Also