var myRecipeWebService=function() {
myRecipeWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
myRecipeWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return myRecipeWebService._staticInstance.get_path();},
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
myRecipeWebService.registerClass('myRecipeWebService',Sys.Net.WebServiceProxy);
myRecipeWebService._staticInstance = new myRecipeWebService();
myRecipeWebService.set_path = function(value) { myRecipeWebService._staticInstance.set_path(value); }
myRecipeWebService.get_path = function() { return myRecipeWebService._staticInstance.get_path(); }
myRecipeWebService.set_timeout = function(value) { myRecipeWebService._staticInstance.set_timeout(value); }
myRecipeWebService.get_timeout = function() { return myRecipeWebService._staticInstance.get_timeout(); }
myRecipeWebService.set_defaultUserContext = function(value) { myRecipeWebService._staticInstance.set_defaultUserContext(value); }
myRecipeWebService.get_defaultUserContext = function() { return myRecipeWebService._staticInstance.get_defaultUserContext(); }
myRecipeWebService.set_defaultSucceededCallback = function(value) { myRecipeWebService._staticInstance.set_defaultSucceededCallback(value); }
myRecipeWebService.get_defaultSucceededCallback = function() { return myRecipeWebService._staticInstance.get_defaultSucceededCallback(); }
myRecipeWebService.set_defaultFailedCallback = function(value) { myRecipeWebService._staticInstance.set_defaultFailedCallback(value); }
myRecipeWebService.get_defaultFailedCallback = function() { return myRecipeWebService._staticInstance.get_defaultFailedCallback(); }
myRecipeWebService.set_path("/DesktopModules/HiHuRecipeWebService/MyRecipeWebService.asmx");
myRecipeWebService.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {myRecipeWebService._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
