Namespace: | Sirenix.Serialization |
Assembly: | Sirenix.Serialization |
public class JsonTextReader : IDisposable
public JsonTextReader(Stream stream, DeserializationContext context)
System.IO.Stream | stream | The stream to parse from. |
DeserializationContext | context | The deserialization context to use. |
System.ArgumentNullException | The stream is null. |
System.ArgumentException | Cannot read from the stream. |
public DeserializationContext Context { get; }
public void Dispose()
public void ReadToNextEntry(out string name, out string valueContent, out EntryType entry)
System.String | name | The name of the entry that was parsed. |
System.String | valueContent | The content of the entry that was parsed. |
EntryType | entry | The type of the entry that was parsed. |
public void Reset()