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

