Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Newtonsoft.Json/Serialization/JsonArrayContract.cs')
-rw-r--r--Src/Newtonsoft.Json/Serialization/JsonArrayContract.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Src/Newtonsoft.Json/Serialization/JsonArrayContract.cs b/Src/Newtonsoft.Json/Serialization/JsonArrayContract.cs
index 7fd8b74..3204484 100644
--- a/Src/Newtonsoft.Json/Serialization/JsonArrayContract.cs
+++ b/Src/Newtonsoft.Json/Serialization/JsonArrayContract.cs
@@ -37,7 +37,12 @@ namespace Newtonsoft.Json.Serialization
/// </summary>
public class JsonArrayContract : JsonContract
{
- internal Type CollectionItemType { get; private set; }
+ /// <summary>
+ /// Gets the <see cref="Type"/> of the collection items.
+ /// </summary>
+ /// <value>The <see cref="Type"/> of the collection items.</value>
+ public Type CollectionItemType { get; private set; }
+
internal JsonContract CollectionItemContract { get; set; }
private readonly bool _isCollectionItemTypeNullableType;