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