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

