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