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

