var checkUserServices=function() {
checkUserServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
checkUserServices.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return checkUserServices._staticInstance.get_path();},
checkUserName:function(username,succeededCallback, failedCallback, userContext) {
/// <param name="username" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'checkUserName',false,{username:username},succeededCallback,failedCallback,userContext); },
checkEmail:function(email,succeededCallback, failedCallback, userContext) {
/// <param name="email" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'checkEmail',false,{email:email},succeededCallback,failedCallback,userContext); }}
checkUserServices.registerClass('checkUserServices',Sys.Net.WebServiceProxy);
checkUserServices._staticInstance = new checkUserServices();
checkUserServices.set_path = function(value) {
checkUserServices._staticInstance.set_path(value); }
checkUserServices.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return checkUserServices._staticInstance.get_path();}
checkUserServices.set_timeout = function(value) {
checkUserServices._staticInstance.set_timeout(value); }
checkUserServices.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return checkUserServices._staticInstance.get_timeout(); }
checkUserServices.set_defaultUserContext = function(value) { 
checkUserServices._staticInstance.set_defaultUserContext(value); }
checkUserServices.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return checkUserServices._staticInstance.get_defaultUserContext(); }
checkUserServices.set_defaultSucceededCallback = function(value) { 
 checkUserServices._staticInstance.set_defaultSucceededCallback(value); }
checkUserServices.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return checkUserServices._staticInstance.get_defaultSucceededCallback(); }
checkUserServices.set_defaultFailedCallback = function(value) { 
checkUserServices._staticInstance.set_defaultFailedCallback(value); }
checkUserServices.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return checkUserServices._staticInstance.get_defaultFailedCallback(); }
checkUserServices.set_path("/WebServices/checkUserServices.asmx");
checkUserServices.checkUserName= function(username,onSuccess,onFailed,userContext) {
/// <param name="username" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
checkUserServices._staticInstance.checkUserName(username,onSuccess,onFailed,userContext); }
checkUserServices.checkEmail= function(email,onSuccess,onFailed,userContext) {
/// <param name="email" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
checkUserServices._staticInstance.checkEmail(email,onSuccess,onFailed,userContext); }
