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