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