var AutoCompleteNatCat=function() {
AutoCompleteNatCat.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
AutoCompleteNatCat.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return AutoCompleteNatCat._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); }}
AutoCompleteNatCat.registerClass('AutoCompleteNatCat',Sys.Net.WebServiceProxy);
AutoCompleteNatCat._staticInstance = new AutoCompleteNatCat();
AutoCompleteNatCat.set_path = function(value) { AutoCompleteNatCat._staticInstance.set_path(value); }
AutoCompleteNatCat.get_path = function() { return AutoCompleteNatCat._staticInstance.get_path(); }
AutoCompleteNatCat.set_timeout = function(value) { AutoCompleteNatCat._staticInstance.set_timeout(value); }
AutoCompleteNatCat.get_timeout = function() { return AutoCompleteNatCat._staticInstance.get_timeout(); }
AutoCompleteNatCat.set_defaultUserContext = function(value) { AutoCompleteNatCat._staticInstance.set_defaultUserContext(value); }
AutoCompleteNatCat.get_defaultUserContext = function() { return AutoCompleteNatCat._staticInstance.get_defaultUserContext(); }
AutoCompleteNatCat.set_defaultSucceededCallback = function(value) { AutoCompleteNatCat._staticInstance.set_defaultSucceededCallback(value); }
AutoCompleteNatCat.get_defaultSucceededCallback = function() { return AutoCompleteNatCat._staticInstance.get_defaultSucceededCallback(); }
AutoCompleteNatCat.set_defaultFailedCallback = function(value) { AutoCompleteNatCat._staticInstance.set_defaultFailedCallback(value); }
AutoCompleteNatCat.get_defaultFailedCallback = function() { return AutoCompleteNatCat._staticInstance.get_defaultFailedCallback(); }
AutoCompleteNatCat.set_path("/Service_GetNatCatMatch.asmx");
AutoCompleteNatCat.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {AutoCompleteNatCat._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
