AlphaNumeric Method (String, Boolean)

HttpServer.dll

Check whether the specified value is an integer.

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

Syntax

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

Parameters

name
Type: System..::.String
Name of the parameter
required
Type: System..::.Boolean
Paramater is required (adds an error if it's not specified)

Return Value

value if parameter contains valid characters; string.Empty if not.

See Also