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