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