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