示例#1
0
 ///////////////////////////////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////////////////////////////
 /// <summary>
 /// Initializes a new instance of the <c>AsyncReverseGeocodedEventArgs</c> class.
 /// </summary>
 /// <param name="address">Found address.</param>
 /// <param name="location">Address location.</param>
 public AsyncReverseGeocodedEventArgs(Address address, 
     ESRI.ArcGIS.Client.Geometry.MapPoint location, object userState)
     : base(null, false, userState)
 {
     _address = (Address)address.Clone();
     _location = new ESRI.ArcGIS.Client.Geometry.MapPoint(location.X, location.Y);
 }