@@ -1057,7 +1057,7 @@ public static CBORObject DecodeFromBytes(
10571057 /// <c>ToJSONString</c>, then the JSON is converted back to CBOR with
10581058 /// this method, the new CBOR object will not necessarily be the same
10591059 /// as the old CBOR object, especially if the old CBOR object uses data
1060- /// types not supported in JSON, such as integers in map
1060+ /// types not available in JSON, such as integers in map
10611061 /// keys.</para></summary>
10621062 /// <param name='str'>A text string in JSON format. The entire string
10631063 /// must contain a single JSON object and not multiple objects. The
@@ -1089,7 +1089,7 @@ public static CBORObject FromJSONString(string str, int offset, int count) {
10891089 /// <c>ToJSONString</c>, then the JSON is converted back to CBOR with
10901090 /// this method, the new CBOR object will not necessarily be the same
10911091 /// as the old CBOR object, especially if the old CBOR object uses data
1092- /// types not supported in JSON, such as integers in map
1092+ /// types not available in JSON, such as integers in map
10931093 /// keys.</para></summary>
10941094 /// <param name='str'>A text string in JSON format. The entire string
10951095 /// must contain a single JSON object and not multiple objects. The
@@ -1120,7 +1120,7 @@ public static CBORObject FromJSONString(
11201120 /// <c>ToJSONString</c>, then the JSON is converted back to CBOR with
11211121 /// this method, the new CBOR object will not necessarily be the same
11221122 /// as the old CBOR object, especially if the old CBOR object uses data
1123- /// types not supported in JSON, such as integers in map
1123+ /// types not available in JSON, such as integers in map
11241124 /// keys.</para></summary>
11251125 /// <param name='str'>A text string in JSON format. The entire string
11261126 /// must contain a single JSON object and not multiple objects. The
@@ -1141,7 +1141,7 @@ public static CBORObject FromJSONString(string str) {
11411141 /// <c>ToJSONString</c>, then the JSON is converted back to CBOR with
11421142 /// this method, the new CBOR object will not necessarily be the same
11431143 /// as the old CBOR object, especially if the old CBOR object uses data
1144- /// types not supported in JSON, such as integers in map
1144+ /// types not available in JSON, such as integers in map
11451145 /// keys.</para></summary>
11461146 /// <param name='str'>The parameter <paramref name='str'/> is a text
11471147 /// string.</param>
@@ -2707,7 +2707,7 @@ public static CBORObject FromObject(
27072707 /// if the nullable's value is <c>null</c>
27082708 /// , or
27092709 /// converted according to the nullable's underlying type, if that type
2710- /// is supported by this method.</item>
2710+ /// is allowed for this method.</item>
27112711 /// <item>In the Java version, a
27122712 /// number of type <c>BigInteger</c>
27132713 /// or <c>BigDecimal</c>
@@ -3591,7 +3591,7 @@ public static CBORObject ReadJSON(
35913591 /// <c>ToJSONBytes</c>, then the JSON is converted back to CBOR with
35923592 /// this method, the new CBOR object will not necessarily be the same
35933593 /// as the old CBOR object, especially if the old CBOR object uses data
3594- /// types not supported in JSON, such as integers in map
3594+ /// types not available in JSON, such as integers in map
35953595 /// keys.</para></summary>
35963596 /// <param name='bytes'>A byte array in JSON format. The entire byte
35973597 /// array must contain a single JSON object and not multiple objects.
@@ -3620,7 +3620,7 @@ public static CBORObject FromJSONBytes(byte[] bytes) {
36203620 /// <c>ToJSONBytes</c>, then the JSON is converted back to CBOR with
36213621 /// this method, the new CBOR object will not necessarily be the same
36223622 /// as the old CBOR object, especially if the old CBOR object uses data
3623- /// types not supported in JSON, such as integers in map
3623+ /// types not available in JSON, such as integers in map
36243624 /// keys.</para></summary>
36253625 /// <param name='bytes'>A byte array in JSON format. The entire byte
36263626 /// array must contain a single JSON object and not multiple objects.
@@ -3660,7 +3660,7 @@ public static CBORObject FromJSONBytes(
36603660 /// <c>ToJSONBytes</c>, then the JSON is converted back to CBOR with
36613661 /// this method, the new CBOR object will not necessarily be the same
36623662 /// as the old CBOR object, especially if the old CBOR object uses data
3663- /// types not supported in JSON, such as integers in map
3663+ /// types not available in JSON, such as integers in map
36643664 /// keys.</para></summary>
36653665 /// <param name='bytes'>A byte array, the specified portion of which is
36663666 /// in JSON format. The specified portion of the byte array must
@@ -3699,7 +3699,7 @@ public static CBORObject FromJSONBytes(byte[] bytes, int offset, int
36993699 /// <c>ToJSONBytes</c>, then the JSON is converted back to CBOR with
37003700 /// this method, the new CBOR object will not necessarily be the same
37013701 /// as the old CBOR object, especially if the old CBOR object uses data
3702- /// types not supported in JSON, such as integers in map
3702+ /// types not available in JSON, such as integers in map
37033703 /// keys.</para></summary>
37043704 /// <param name='bytes'>A byte array, the specified portion of which is
37053705 /// in JSON format. The specified portion of the byte array must
@@ -5908,7 +5908,7 @@ public CBORObject Set(int key, CBORObject mapValue) {
59085908 /// order to a JSON string, or to write out a CBOR object as part of a
59095909 /// JSON text sequence.</para>
59105910 /// <para><b>Warning:</b> In general, if this CBOR object contains
5911- /// integer map keys or uses other features not supported in JSON, and
5911+ /// integer map keys or uses other features not available in JSON, and
59125912 /// the application converts this CBOR object to JSON and back to CBOR,
59135913 /// the application
59145914 /// <i>should not</i> expect the new CBOR object to be exactly the same
@@ -5982,7 +5982,7 @@ public string ToJSONString() {
59825982 /// </list>
59835983 /// <para><b>Warning:</b>
59845984 /// In general, if this CBOR object contains
5985- /// integer map keys or uses other features not supported in JSON, and
5985+ /// integer map keys or uses other features not available in JSON, and
59865986 /// the application converts this CBOR object to JSON and back to CBOR,
59875987 /// the application <i>should not</i>
59885988 /// expect the new CBOR object to be
@@ -7212,7 +7212,7 @@ private static bool CBORMapEquals(
72127212 return false ;
72137213 }
72147214 if ( kvp . Value == null ) {
7215- // Null (as opposed to CBORObject.Null) values not supported in CBOR maps.
7215+ // Null (as opposed to CBORObject.Null) values not available in CBOR maps.
72167216 throw new InvalidOperationException ( ) ;
72177217 }
72187218 if ( ! kvp . Value . Equals ( valueB ) ) {
0 commit comments