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/JTokenType.cs')
-rw-r--r--Src/Newtonsoft.Json/Linq/JTokenType.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/Src/Newtonsoft.Json/Linq/JTokenType.cs b/Src/Newtonsoft.Json/Linq/JTokenType.cs
index dafb7e1..18e0500 100644
--- a/Src/Newtonsoft.Json/Linq/JTokenType.cs
+++ b/Src/Newtonsoft.Json/Linq/JTokenType.cs
@@ -89,6 +89,18 @@ namespace Newtonsoft.Json.Linq
/// <summary>
/// A collection of bytes value.
/// </summary>
- Bytes
+ Bytes,
+ /// <summary>
+ /// A Guid value.
+ /// </summary>
+ Guid,
+ /// <summary>
+ /// A Uri value.
+ /// </summary>
+ Uri,
+ /// <summary>
+ /// A TimeSpan value.
+ /// </summary>
+ TimeSpan
}
} \ No newline at end of file