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