Type.registerNamespace('Roblox.Install');
Roblox.Install.Service=function() {
Roblox.Install.Service.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Roblox.Install.Service.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Roblox.Install.Service._staticInstance.get_path();},
InstallSucceeded:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'InstallSucceeded',false,{},succeededCallback,failedCallback,userContext); }}
Roblox.Install.Service.registerClass('Roblox.Install.Service',Sys.Net.WebServiceProxy);
Roblox.Install.Service._staticInstance = new Roblox.Install.Service();
Roblox.Install.Service.set_path = function(value) { Roblox.Install.Service._staticInstance.set_path(value); }
Roblox.Install.Service.get_path = function() { return Roblox.Install.Service._staticInstance.get_path(); }
Roblox.Install.Service.set_timeout = function(value) { Roblox.Install.Service._staticInstance.set_timeout(value); }
Roblox.Install.Service.get_timeout = function() { return Roblox.Install.Service._staticInstance.get_timeout(); }
Roblox.Install.Service.set_defaultUserContext = function(value) { Roblox.Install.Service._staticInstance.set_defaultUserContext(value); }
Roblox.Install.Service.get_defaultUserContext = function() { return Roblox.Install.Service._staticInstance.get_defaultUserContext(); }
Roblox.Install.Service.set_defaultSucceededCallback = function(value) { Roblox.Install.Service._staticInstance.set_defaultSucceededCallback(value); }
Roblox.Install.Service.get_defaultSucceededCallback = function() { return Roblox.Install.Service._staticInstance.get_defaultSucceededCallback(); }
Roblox.Install.Service.set_defaultFailedCallback = function(value) { Roblox.Install.Service._staticInstance.set_defaultFailedCallback(value); }
Roblox.Install.Service.get_defaultFailedCallback = function() { return Roblox.Install.Service._staticInstance.get_defaultFailedCallback(); }
Roblox.Install.Service.set_path("/Install/Service.asmx");
Roblox.Install.Service.InstallSucceeded= function(onSuccess,onFailed,userContext) {Roblox.Install.Service._staticInstance.InstallSucceeded(onSuccess,onFailed,userContext); }
