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/Linq/JArray.cs')
-rw-r--r--Src/Newtonsoft.Json/Linq/JArray.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/Newtonsoft.Json/Linq/JArray.cs b/Src/Newtonsoft.Json/Linq/JArray.cs
index 39cfd33..1c5ff74 100644
--- a/Src/Newtonsoft.Json/Linq/JArray.cs
+++ b/Src/Newtonsoft.Json/Linq/JArray.cs
@@ -41,6 +41,10 @@ namespace Newtonsoft.Json.Linq
{
private IList<JToken> _values = new List<JToken>();
+ /// <summary>
+ /// Gets the container's children tokens.
+ /// </summary>
+ /// <value>The container's children tokens.</value>
protected override IList<JToken> ChildrenTokens
{
get { return _values; }