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

