var AgentDirUpdates=function() {
AgentDirUpdates.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
AgentDirUpdates.prototype={
GetAgentPropTypes:function(saleRent,controlId,succeededCallback, failedCallback, userContext) {
return this._invoke(AgentDirUpdates.get_path(), 'GetAgentPropTypes',false,{saleRent:saleRent,controlId:controlId},succeededCallback,failedCallback,userContext); },
GetAgentNames:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(AgentDirUpdates.get_path(), 'GetAgentNames',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
AgentDirUpdates.registerClass('AgentDirUpdates',Sys.Net.WebServiceProxy);
AgentDirUpdates._staticInstance = new AgentDirUpdates();
AgentDirUpdates.set_path = function(value) { AgentDirUpdates._staticInstance._path = value; }
AgentDirUpdates.get_path = function() { return AgentDirUpdates._staticInstance._path; }
AgentDirUpdates.set_timeout = function(value) { AgentDirUpdates._staticInstance._timeout = value; }
AgentDirUpdates.get_timeout = function() { return AgentDirUpdates._staticInstance._timeout; }
AgentDirUpdates.set_defaultUserContext = function(value) { AgentDirUpdates._staticInstance._userContext = value; }
AgentDirUpdates.get_defaultUserContext = function() { return AgentDirUpdates._staticInstance._userContext; }
AgentDirUpdates.set_defaultSucceededCallback = function(value) { AgentDirUpdates._staticInstance._succeeded = value; }
AgentDirUpdates.get_defaultSucceededCallback = function() { return AgentDirUpdates._staticInstance._succeeded; }
AgentDirUpdates.set_defaultFailedCallback = function(value) { AgentDirUpdates._staticInstance._failed = value; }
AgentDirUpdates.get_defaultFailedCallback = function() { return AgentDirUpdates._staticInstance._failed; }
AgentDirUpdates.set_path("/services/AgentDirUpdates.asmx");
AgentDirUpdates.GetAgentPropTypes= function(saleRent,controlId,onSuccess,onFailed,userContext) {AgentDirUpdates._staticInstance.GetAgentPropTypes(saleRent,controlId,onSuccess,onFailed,userContext); }
AgentDirUpdates.GetAgentNames= function(prefixText,count,onSuccess,onFailed,userContext) {AgentDirUpdates._staticInstance.GetAgentNames(prefixText,count,onSuccess,onFailed,userContext); }
