Hello...Advance thanks...Please help me to solve the issue specified belowI drw a polygon on my map using the function below.Now i want to save these polygon points to DB for future reference.How can i retrive polygon points?I try to access the ring values and failed with that .Help me for this PleasePrivate Sub MyDrawObject_DrawComplete(ByVal sender As Object, ByVal args As ESRI.ArcGIS.Client.DrawEventArgs) 'args.Geometry.rings Dim graphicsLayer As GraphicsLayer = TryCast(MyMap.Layers("MyGraphicsLayer"), GraphicsLayer) Dim graphic As New ESRI.ArcGIS.Client.Graphic() With { .Geometry = args.Geometry, .Symbol = _activeSymbol } graphicsLayer.Graphics.Add(graphic) End Sub