Skip to content

Commit 4d3650e

Browse files
Update how-to-dev-guide-csharp-sdk.md
1 parent be80cfb commit 4d3650e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/azure-maps/how-to-dev-guide-csharp-sdk.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,11 @@ GetPolygonOptions options = new GetPolygonOptions()
279279
Coordinates = new GeoPosition(121.5, 25.0)
280280
};
281281
Response<Boundary> result = client.GetPolygon(options);
282-
Console.WriteLine(result.Value.Geometry);
282+
283+
Console.WriteLine(result.Value.Name);
284+
Console.WriteLine(result.Value.Copyright);
285+
Console.WriteLine(result.Value.CopyrightUrl);
286+
Console.WriteLine(result.Value.BoundingBox);
283287
```
284288

285289
## Using V1 SDKs for Search and Render

0 commit comments

Comments
 (0)