Type.registerNamespace('Kidy.WebServices');
Kidy.WebServices.Logout=function() {
Kidy.WebServices.Logout.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Kidy.WebServices.Logout.prototype={
Logout:function(succeededCallback, failedCallback, userContext) {
return this._invoke(Kidy.WebServices.Logout.get_path(), 'Logout',false,{},succeededCallback,failedCallback,userContext); }}
Kidy.WebServices.Logout.registerClass('Kidy.WebServices.Logout',Sys.Net.WebServiceProxy);
Kidy.WebServices.Logout._staticInstance = new Kidy.WebServices.Logout();
Kidy.WebServices.Logout.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; Kidy.WebServices.Logout._staticInstance._path = value; }
Kidy.WebServices.Logout.get_path = function() { return Kidy.WebServices.Logout._staticInstance._path; }
Kidy.WebServices.Logout.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); }
Kidy.WebServices.Logout._staticInstance._timeout = value; }
Kidy.WebServices.Logout.get_timeout = function() { 
return Kidy.WebServices.Logout._staticInstance._timeout; }
Kidy.WebServices.Logout.set_defaultUserContext = function(value) { 
Kidy.WebServices.Logout._staticInstance._userContext = value; }
Kidy.WebServices.Logout.get_defaultUserContext = function() { 
return Kidy.WebServices.Logout._staticInstance._userContext; }
Kidy.WebServices.Logout.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; Kidy.WebServices.Logout._staticInstance._succeeded = value; }
Kidy.WebServices.Logout.get_defaultSucceededCallback = function() { 
return Kidy.WebServices.Logout._staticInstance._succeeded; }
Kidy.WebServices.Logout.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; Kidy.WebServices.Logout._staticInstance._failed = value; }
Kidy.WebServices.Logout.get_defaultFailedCallback = function() { 
return Kidy.WebServices.Logout._staticInstance._failed; }
Kidy.WebServices.Logout.set_path("/WebServices/Logout.asmx");
Kidy.WebServices.Logout.Logout= function(onSuccess,onFailed,userContext) {Kidy.WebServices.Logout._staticInstance.Logout(onSuccess,onFailed,userContext); }
