It's a spatial refrence matter.
If your map is using web Mercator coordinates (depending on your base map), you can transform these coordinates to geographical coordinates y using the WebMercator.ToGeographic method.
Thank u so much. Ineed your help based on the code I pasted here with.I need to convert (mapPoint.Y) and (mapPoint.X)How can i do this?PLease give me a help....Private Sub MyDrawObject_DrawComplete(ByVal sender As Object, ByVal args As ESRI.ArcGIS.Client.DrawEventArgs)
If TypeOf args.Geometry Is Polygon Then
Dim cntpoints As Integer = DirectCast((args.Geometry), Polygon).Rings(0).Count
If (cntpoints <= 2) Then Exit Sub
Dim points As PointCollection = DirectCast((args.Geometry), Polygon).Rings(0)
'Save the points
For Each mapPoint As MapPoint In points
''''''''''''''''''Save data to DB
VID = VID + 1
'-------------------
Dim ProxySavePoly As ComboLoadClient = New ComboLoadClient()
AddHandler ProxySavePoly.SavePolyGonIDCompleted, AddressOf client_SavePolyGonIDCompleted
ProxySavePoly.SavePolyGonIDAsync(" VALUES(" & PID & " ," & VID & "," & (mapPoint.Y) & "," & (mapPoint.X) & ", " & _
" " & fahrid1 & ",'" & Geofencename & "','" & Geofencedesc & "','" & DateAndTime.Now & "')")
Next
End If