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