var DownLoad=function() {
DownLoad.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
DownLoad.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(DownLoad.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
HasRight:function(succeededCallback, failedCallback, userContext) {
return this._invoke(DownLoad.get_path(), 'HasRight',false,{},succeededCallback,failedCallback,userContext); }}
DownLoad.registerClass('DownLoad',Sys.Net.WebServiceProxy);
DownLoad._staticInstance = new DownLoad();
DownLoad.set_path = function(value) { DownLoad._staticInstance._path = value; }
DownLoad.get_path = function() { return DownLoad._staticInstance._path; }
DownLoad.set_timeout = function(value) { DownLoad._staticInstance._timeout = value; }
DownLoad.get_timeout = function() { return DownLoad._staticInstance._timeout; }
DownLoad.set_defaultUserContext = function(value) { DownLoad._staticInstance._userContext = value; }
DownLoad.get_defaultUserContext = function() { return DownLoad._staticInstance._userContext; }
DownLoad.set_defaultSucceededCallback = function(value) { DownLoad._staticInstance._succeeded = value; }
DownLoad.get_defaultSucceededCallback = function() { return DownLoad._staticInstance._succeeded; }
DownLoad.set_defaultFailedCallback = function(value) { DownLoad._staticInstance._failed = value; }
DownLoad.get_defaultFailedCallback = function() { return DownLoad._staticInstance._failed; }
DownLoad.set_path("/WebService/DownLoad.asmx");
DownLoad.HelloWorld= function(onSuccess,onFailed,userContext) {DownLoad._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
DownLoad.HasRight= function(onSuccess,onFailed,userContext) {DownLoad._staticInstance.HasRight(onSuccess,onFailed,userContext); }
