Click or drag to resize
IUserAccessiableIsEMail Method
Returns true if the string is a legal E-mail address and false otherwise

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
bool IsEMail(
	string inEmail
)

Parameters

inEmail
Type: SystemString
The string that is being checked

Return Value

Type: Boolean
true or false
Examples
For the string "abcasd.com" the following code will return false and for the string "abcd@dooblo.com" the following code will return true
See Also