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