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