Letters Method (String, String, Boolean)

HttpServer.dll

Validates a string to consist of letters. Will test for A-Z, a-z, spaces and letters specified in SpecialLetters

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

Syntax

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

Parameters

name
Type: System..::.String
field name
value
Type: System..::.String
value to validate
required
Type: System..::.Boolean
field is required

Return Value

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

See Also