var RegisterCheck=function() {
RegisterCheck.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
RegisterCheck.prototype={
CheckName:function(user_name,succeededCallback, failedCallback, userContext) {
return this._invoke(RegisterCheck.get_path(), 'CheckName',false,{user_name:user_name},succeededCallback,failedCallback,userContext); }}
RegisterCheck.registerClass('RegisterCheck',Sys.Net.WebServiceProxy);
RegisterCheck._staticInstance = new RegisterCheck();
RegisterCheck.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; RegisterCheck._staticInstance._path = value; }
RegisterCheck.get_path = function() { return RegisterCheck._staticInstance._path; }
RegisterCheck.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
RegisterCheck._staticInstance._timeout = value; }
RegisterCheck.get_timeout = function() { 
return RegisterCheck._staticInstance._timeout; }
RegisterCheck.set_defaultUserContext = function(value) { 
RegisterCheck._staticInstance._userContext = value; }
RegisterCheck.get_defaultUserContext = function() { 
return RegisterCheck._staticInstance._userContext; }
RegisterCheck.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; RegisterCheck._staticInstance._succeeded = value; }
RegisterCheck.get_defaultSucceededCallback = function() { 
return RegisterCheck._staticInstance._succeeded; }
RegisterCheck.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; RegisterCheck._staticInstance._failed = value; }
RegisterCheck.get_defaultFailedCallback = function() { 
return RegisterCheck._staticInstance._failed; }
RegisterCheck.set_path("/member/RegisterCheck.asmx");
RegisterCheck.CheckName= function(user_name,onSuccess,onFailed,userContext) {RegisterCheck._staticInstance.CheckName(user_name,onSuccess,onFailed,userContext); }

