yangyin
2025-02-28 baa80d650adebcce70f1113cc1020c6039c159a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace DPumpHydr.WinFrmUI.WenSkin.Json
{
    /// <summary>
    /// Specifies the state of the <see cref="T:Newtonsoft.Json.JsonWriter" />.
    /// </summary>
    public enum WriteState
    {
        /// <summary>
        /// An exception has been thrown, which has left the <see cref="T:Newtonsoft.Json.JsonWriter" /> in an invalid state.
        /// You may call the <see cref="M:Newtonsoft.Json.JsonWriter.Close" /> method to put the <see cref="T:Newtonsoft.Json.JsonWriter" /> in the <c>Closed</c> state.
        /// Any other <see cref="T:Newtonsoft.Json.JsonWriter" /> method calls results in an <see cref="T:System.InvalidOperationException" /> being thrown. 
        /// </summary>
        Error,
        /// <summary>
        /// The <see cref="M:Newtonsoft.Json.JsonWriter.Close" /> method has been called. 
        /// </summary>
        Closed,
        /// <summary>
        /// An object is being written. 
        /// </summary>
        Object,
        /// <summary>
        /// A array is being written.
        /// </summary>
        Array,
        /// <summary>
        /// A constructor is being written.
        /// </summary>
        Constructor,
        /// <summary>
        /// A property is being written.
        /// </summary>
        Property,
        /// <summary>
        /// A write method has not been called.
        /// </summary>
        Start
    }
}