22// <copyright file="PolygonConverter.cs" company="Joerg Battermann">
33// Copyright © Joerg Battermann 2014
44// </copyright>
5- // <summary>
6- // Defines the PolygonConverter type.
7- // </summary>
85// --------------------------------------------------------------------------------------------------------------------
96
107using System ;
1512namespace GeoJSON . Net . Converters
1613{
1714 /// <summary>
18- /// Converter to read and write the <see cref="Polygon" /> type.
15+ /// Converter to read and write the <see cref="Polygon" /> type.
1916 /// </summary>
2017 public class PolygonConverter : JsonConverter
2118 {
2219 private static readonly LineStringConverter LineStringConverter = new LineStringConverter ( ) ;
2320
2421 /// <summary>
25- /// Determines whether this instance can convert the specified object type.
22+ /// Determines whether this instance can convert the specified object type.
2623 /// </summary>
2724 /// <param name="objectType">Type of the object.</param>
2825 /// <returns>
29- /// <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
26+ /// <c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
3027 /// </returns>
3128 public override bool CanConvert ( Type objectType )
3229 {
3330 return objectType == typeof ( Polygon ) ;
3431 }
3532
3633 /// <summary>
37- /// Reads the JSON representation of the object.
34+ /// Reads the JSON representation of the object.
3835 /// </summary>
3936 /// <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader" /> to read from.</param>
4037 /// <param name="objectType">Type of the object.</param>
4138 /// <param name="existingValue">The existing value of object being read.</param>
4239 /// <param name="serializer">The calling serializer.</param>
4340 /// <returns>
44- /// The object value.
41+ /// The object value.
4542 /// </returns>
4643 public override object ReadJson ( JsonReader reader , Type objectType , object existingValue , JsonSerializer serializer )
4744 {
@@ -58,7 +55,7 @@ public override object ReadJson(JsonReader reader, Type objectType, object exist
5855 }
5956
6057 /// <summary>
61- /// Writes the JSON representation of the object.
58+ /// Writes the JSON representation of the object.
6259 /// </summary>
6360 /// <param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter" /> to write to.</param>
6461 /// <param name="value">The value.</param>
0 commit comments