var suggestionsWS=function() {
suggestionsWS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
suggestionsWS.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return suggestionsWS._staticInstance.get_path();},
GetCompletionList:function(prefixText,count,contextKey,succeededCallback, failedCallback, userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="Number">System.Int32</param>
/// <param name="contextKey" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count,contextKey:contextKey},succeededCallback,failedCallback,userContext); }}
suggestionsWS.registerClass('suggestionsWS',Sys.Net.WebServiceProxy);
suggestionsWS._staticInstance = new suggestionsWS();
suggestionsWS.set_path = function(value) {
suggestionsWS._staticInstance.set_path(value); }
suggestionsWS.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return suggestionsWS._staticInstance.get_path();}
suggestionsWS.set_timeout = function(value) {
suggestionsWS._staticInstance.set_timeout(value); }
suggestionsWS.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return suggestionsWS._staticInstance.get_timeout(); }
suggestionsWS.set_defaultUserContext = function(value) { 
suggestionsWS._staticInstance.set_defaultUserContext(value); }
suggestionsWS.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return suggestionsWS._staticInstance.get_defaultUserContext(); }
suggestionsWS.set_defaultSucceededCallback = function(value) { 
 suggestionsWS._staticInstance.set_defaultSucceededCallback(value); }
suggestionsWS.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return suggestionsWS._staticInstance.get_defaultSucceededCallback(); }
suggestionsWS.set_defaultFailedCallback = function(value) { 
suggestionsWS._staticInstance.set_defaultFailedCallback(value); }
suggestionsWS.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return suggestionsWS._staticInstance.get_defaultFailedCallback(); }
suggestionsWS.set_path("/search/suggestions.asmx");
suggestionsWS.GetCompletionList= function(prefixText,count,contextKey,onSuccess,onFailed,userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="Number">System.Int32</param>
/// <param name="contextKey" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
suggestionsWS._staticInstance.GetCompletionList(prefixText,count,contextKey,onSuccess,onFailed,userContext); }
