Type.registerNamespace('aci.matweb.WebServices');
aci.matweb.WebServices.Properties=function() {
aci.matweb.WebServices.Properties.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
aci.matweb.WebServices.Properties.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(aci.matweb.WebServices.Properties.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
FindProperties:function(SearchText,succeededCallback, failedCallback, userContext) {
return this._invoke(aci.matweb.WebServices.Properties.get_path(), 'FindProperties',false,{SearchText:SearchText},succeededCallback,failedCallback,userContext); }}
aci.matweb.WebServices.Properties.registerClass('aci.matweb.WebServices.Properties',Sys.Net.WebServiceProxy);
aci.matweb.WebServices.Properties._staticInstance = new aci.matweb.WebServices.Properties();
aci.matweb.WebServices.Properties.set_path = function(value) { aci.matweb.WebServices.Properties._staticInstance._path = value; }
aci.matweb.WebServices.Properties.get_path = function() { return aci.matweb.WebServices.Properties._staticInstance._path; }
aci.matweb.WebServices.Properties.set_timeout = function(value) { aci.matweb.WebServices.Properties._staticInstance._timeout = value; }
aci.matweb.WebServices.Properties.get_timeout = function() { return aci.matweb.WebServices.Properties._staticInstance._timeout; }
aci.matweb.WebServices.Properties.set_defaultUserContext = function(value) { aci.matweb.WebServices.Properties._staticInstance._userContext = value; }
aci.matweb.WebServices.Properties.get_defaultUserContext = function() { return aci.matweb.WebServices.Properties._staticInstance._userContext; }
aci.matweb.WebServices.Properties.set_defaultSucceededCallback = function(value) { aci.matweb.WebServices.Properties._staticInstance._succeeded = value; }
aci.matweb.WebServices.Properties.get_defaultSucceededCallback = function() { return aci.matweb.WebServices.Properties._staticInstance._succeeded; }
aci.matweb.WebServices.Properties.set_defaultFailedCallback = function(value) { aci.matweb.WebServices.Properties._staticInstance._failed = value; }
aci.matweb.WebServices.Properties.get_defaultFailedCallback = function() { return aci.matweb.WebServices.Properties._staticInstance._failed; }
aci.matweb.WebServices.Properties.set_path("/WebServices/Properties.asmx");
aci.matweb.WebServices.Properties.HelloWorld= function(onSuccess,onFailed,userContext) {aci.matweb.WebServices.Properties._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
aci.matweb.WebServices.Properties.FindProperties= function(SearchText,onSuccess,onFailed,userContext) {aci.matweb.WebServices.Properties._staticInstance.FindProperties(SearchText,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(aci.matweb.WebServices.ReturnPropertyData) === 'undefined') {
aci.matweb.WebServices.ReturnPropertyData=gtc("aci.matweb.WebServices.ReturnPropertyData");
aci.matweb.WebServices.ReturnPropertyData.registerClass('aci.matweb.WebServices.ReturnPropertyData');
}
