Newtonsoft.Json IArrayPool`1 () |
n/a
|
public interface Newtonsoft.Json.IArrayPool`1
|
--> NONE <--
|
- Method: T[] Rent (int minimumLength)
- Method: void Return (T[] array)
|
public sealed attribute Newtonsoft.Json.JsonArrayAttribute () |
--> NONE <--
|
- Property: Object[] ItemConverterParameters { public get; public set; }
- Property: Object[] NamingStrategyParameters { public get; public set; }
- Property: Type NamingStrategyType { public get; public set; }
|
public abstract attribute Newtonsoft.Json.JsonContainerAttribute () |
--> NONE <--
|
- Property: Object[] ItemConverterParameters { public get; public set; }
- Property: Object[] NamingStrategyParameters { public get; public set; }
- Property: Type NamingStrategyType { public get; public set; }
|
public abstract sealed class Newtonsoft.Json.JsonConvert () |
- Method: public static T DeserializeObject (string value)
- Method: public static object DeserializeObject (string value, JsonSerializerSettings settings)
- [Obsolete: DeserializeObjectAsync is obsolete. Use the Task.Factory.StartNew method to deserialize JSON asynchronously: Task.Factory.StartNew(() => JsonConvert.DeserializeObject(value))]Method: public static Task`1 DeserializeObjectAsync (string value)
- [Obsolete: DeserializeObjectAsync is obsolete. Use the Task.Factory.StartNew method to deserialize JSON asynchronously: Task.Factory.StartNew(() => JsonConvert.DeserializeObject(value, type, settings))]Method: public static Task`1 DeserializeObjectAsync (string value, Type type, JsonSerializerSettings settings)
- [Obsolete: DeserializeObjectAsync is obsolete. Use the Task.Factory.StartNew method to deserialize JSON asynchronously: Task.Factory.StartNew(() => JsonConvert.DeserializeObject(value, settings))]Method: public static Task`1 DeserializeObjectAsync (string value, JsonSerializerSettings settings)
- [Obsolete: PopulateObjectAsync is obsolete. Use the Task.Factory.StartNew method to populate an object with JSON values asynchronously: Task.Factory.StartNew(() => JsonConvert.PopulateObject(value, target, settings))]Method: public static Task PopulateObjectAsync (string value, object target, JsonSerializerSettings settings)
- [Obsolete: SerializeObjectAsync is obsolete. Use the Task.Factory.StartNew method to serialize JSON asynchronously: Task.Factory.StartNew(() => JsonConvert.SerializeObject(value))]Method: public static Task`1 SerializeObjectAsync (object value)
- [Obsolete: SerializeObjectAsync is obsolete. Use the Task.Factory.StartNew method to serialize JSON asynchronously: Task.Factory.StartNew(() => JsonConvert.SerializeObject(value, formatting))]Method: public static Task`1 SerializeObjectAsync (object value, Formatting formatting)
- [Obsolete: SerializeObjectAsync is obsolete. Use the Task.Factory.StartNew method to serialize JSON asynchronously: Task.Factory.StartNew(() => JsonConvert.SerializeObject(value, formatting, settings))]Method: public static Task`1 SerializeObjectAsync (object value, Formatting formatting, JsonSerializerSettings settings)
|
- Method: public static object DeserializeObject (string value)
- Method: public static T DeserializeObject (string value, JsonSerializerSettings settings)
- Method: public static string ToString (string value, char delimiter, StringEscapeHandling stringEscapeHandling)
|
public abstract class Newtonsoft.Json.JsonConverter () |
- Method: public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public sealed attribute Newtonsoft.Json.JsonConverterAttribute () |
--> NONE <--
|
- Constructor: public JsonConverterAttribute (Type converterType, object[] converterParameters)
- Property: Object[] ConverterParameters { public get; }
|
public sealed attribute Newtonsoft.Json.JsonDictionaryAttribute () |
--> NONE <--
|
- Property: Object[] ItemConverterParameters { public get; public set; }
- Property: Object[] NamingStrategyParameters { public get; public set; }
- Property: Type NamingStrategyType { public get; public set; }
|
public sealed attribute Newtonsoft.Json.JsonObjectAttribute () |
--> NONE <--
|
- Property: Object[] ItemConverterParameters { public get; public set; }
- Property: Object[] NamingStrategyParameters { public get; public set; }
- Property: Type NamingStrategyType { public get; public set; }
|
public sealed attribute Newtonsoft.Json.JsonPropertyAttribute () |
--> NONE <--
|
- Property: Object[] ItemConverterParameters { public get; public set; }
- Property: Object[] NamingStrategyParameters { public get; public set; }
- Property: Type NamingStrategyType { public get; public set; }
|
public abstract class Newtonsoft.Json.JsonReader () |
- Method: public abstract byte[] ReadAsBytes ()
- Method: public abstract Nullable`1 ReadAsDateTime ()
- Method: public abstract Nullable`1 ReadAsDateTimeOffset ()
- Method: public abstract Nullable`1 ReadAsDecimal ()
- Method: public abstract Nullable`1 ReadAsInt32 ()
- Method: public abstract string ReadAsString ()
|
- Method: public virtual Nullable`1 ReadAsBoolean ()
- Method: public virtual Task`1 ReadAsBooleanAsync (CancellationToken cancellationToken)
- Method: public virtual byte[] ReadAsBytes ()
- Method: public virtual Task`1 ReadAsBytesAsync (CancellationToken cancellationToken)
- Method: public virtual Nullable`1 ReadAsDateTime ()
- Method: public virtual Task`1 ReadAsDateTimeAsync (CancellationToken cancellationToken)
- Method: public virtual Nullable`1 ReadAsDateTimeOffset ()
- Method: public virtual Task`1 ReadAsDateTimeOffsetAsync (CancellationToken cancellationToken)
- Method: public virtual Nullable`1 ReadAsDecimal ()
- Method: public virtual Task`1 ReadAsDecimalAsync (CancellationToken cancellationToken)
- Method: public virtual Nullable`1 ReadAsDouble ()
- Method: public virtual Task`1 ReadAsDoubleAsync (CancellationToken cancellationToken)
- Method: public virtual Nullable`1 ReadAsInt32 ()
- Method: public virtual Task`1 ReadAsInt32Async (CancellationToken cancellationToken)
- Method: public virtual string ReadAsString ()
- Method: public virtual Task`1 ReadAsStringAsync (CancellationToken cancellationToken)
- Method: public virtual Task`1 ReadAsync (CancellationToken cancellationToken)
- Method: protected void SetToken (JsonToken newToken, object value, bool updateIndex)
- Method: public Task SkipAsync (CancellationToken cancellationToken)
|
public class Newtonsoft.Json.JsonReaderException () |
--> NONE <--
|
- Constructor: public JsonReaderException (string message, string path, int lineNumber, int linePosition, Exception innerException)
|
Newtonsoft.Json JsonRequiredAttribute () |
n/a
|
public sealed attribute Newtonsoft.Json.JsonRequiredAttribute
|
--> NONE <--
|
- Constructor: public JsonRequiredAttribute ()
- Method (i): public virtual bool Equals (object obj)
- Method (i): protected virtual void Finalize ()
- Method (i): public virtual int GetHashCode ()
- Method (i): public Type GetType ()
- Method (i): public virtual bool IsDefaultAttribute ()
- Method (i): public virtual bool Match (object obj)
- Method (i): protected object MemberwiseClone ()
- Method (i): public virtual string ToString ()
- Property: virtual object TypeId { public get; }
|
public class Newtonsoft.Json.JsonSerializer () |
- Method: public object Deserialize (TextReader reader, Type objectType)
- Method: public T Deserialize (JsonReader reader)
- Property: virtual SerializationBinder Binder { public get; public set; }
- Property: virtual FormatterAssemblyStyle TypeNameAssemblyFormat { public get; public set; }
|
- Method: public object Deserialize (JsonReader reader)
- [Obsolete: Binder is obsolete. Use SerializationBinder instead.]Property: virtual SerializationBinder Binder { public get; public set; }
- Property: virtual IEqualityComparer EqualityComparer { public get; public set; }
- Property: virtual ISerializationBinder SerializationBinder { public get; public set; }
- [Obsolete: TypeNameAssemblyFormat is obsolete. Use TypeNameAssemblyFormatHandling instead.]Property: virtual FormatterAssemblyStyle TypeNameAssemblyFormat { public get; public set; }
- Property: virtual TypeNameAssemblyFormatHandling TypeNameAssemblyFormatHandling { public get; public set; }
|
public class Newtonsoft.Json.JsonSerializerSettings () |
- Property: SerializationBinder Binder { public get; public set; }
- Property: IReferenceResolver ReferenceResolver { public get; public set; }
- Property: FormatterAssemblyStyle TypeNameAssemblyFormat { public get; public set; }
|
- [Obsolete: Binder is obsolete. Use SerializationBinder instead.]Property: SerializationBinder Binder { public get; public set; }
- Property: IEqualityComparer EqualityComparer { public get; public set; }
- [Obsolete: ReferenceResolver property is obsolete. Use the ReferenceResolverProvider property to set the IReferenceResolver: settings.ReferenceResolverProvider = () => resolver]Property: IReferenceResolver ReferenceResolver { public get; public set; }
- Property: Func`1 ReferenceResolverProvider { public get; public set; }
- Property: ISerializationBinder SerializationBinder { public get; public set; }
- [Obsolete: TypeNameAssemblyFormat is obsolete. Use TypeNameAssemblyFormatHandling instead.]Property: FormatterAssemblyStyle TypeNameAssemblyFormat { public get; public set; }
- Property: TypeNameAssemblyFormatHandling TypeNameAssemblyFormatHandling { public get; public set; }
|
public class Newtonsoft.Json.JsonTextReader () |
--> NONE <--
|
- Method: public override Nullable`1 ReadAsBoolean ()
- Method: public override Task`1 ReadAsBooleanAsync (CancellationToken cancellationToken)
- Method: public override Task`1 ReadAsBytesAsync (CancellationToken cancellationToken)
- Method: public override Task`1 ReadAsDateTimeAsync (CancellationToken cancellationToken)
- Method: public override Task`1 ReadAsDateTimeOffsetAsync (CancellationToken cancellationToken)
- Method: public override Task`1 ReadAsDecimalAsync (CancellationToken cancellationToken)
- Method: public override Nullable`1 ReadAsDouble ()
- Method: public override Task`1 ReadAsDoubleAsync (CancellationToken cancellationToken)
- Method: public override Task`1 ReadAsInt32Async (CancellationToken cancellationToken)
- Method: public override Task`1 ReadAsStringAsync (CancellationToken cancellationToken)
- Method: public override Task`1 ReadAsync (CancellationToken cancellationToken)
- Method (i): protected void SetToken (JsonToken newToken, object value, bool updateIndex)
- Method (i): public Task SkipAsync (CancellationToken cancellationToken)
- Property: IArrayPool`1 ArrayPool { public get; public set; }
|
public class Newtonsoft.Json.JsonTextWriter () |
--> NONE <--
|
- Method: public override Task CloseAsync (CancellationToken cancellationToken)
- Method (i): protected virtual void Dispose (bool disposing)
- Method: public override Task FlushAsync (CancellationToken cancellationToken)
- Method (i): protected Task SetWriteStateAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method: public override Task WriteCommentAsync (string text, CancellationToken cancellationToken)
- Method: public override Task WriteEndArrayAsync (CancellationToken cancellationToken)
- Method: public override Task WriteEndAsync (CancellationToken cancellationToken)
- Method: protected override Task WriteEndAsync (JsonToken token, CancellationToken cancellationToken)
- Method: public override Task WriteEndConstructorAsync (CancellationToken cancellationToken)
- Method: public override Task WriteEndObjectAsync (CancellationToken cancellationToken)
- Method: protected override Task WriteIndentAsync (CancellationToken cancellationToken)
- Method: protected override Task WriteIndentSpaceAsync (CancellationToken cancellationToken)
- Method: public override Task WriteNullAsync (CancellationToken cancellationToken)
- Method: public override Task WritePropertyNameAsync (string name, bool escape, CancellationToken cancellationToken)
- Method: public override Task WritePropertyNameAsync (string name, CancellationToken cancellationToken)
- Method: public override Task WriteRawAsync (string json, CancellationToken cancellationToken)
- Method: public override Task WriteRawValueAsync (string json, CancellationToken cancellationToken)
- Method: public override Task WriteStartArrayAsync (CancellationToken cancellationToken)
- Method: public override Task WriteStartConstructorAsync (string name, CancellationToken cancellationToken)
- Method: public override Task WriteStartObjectAsync (CancellationToken cancellationToken)
- Method (i): public void WriteToken (JsonToken token)
- Method (i): public void WriteToken (JsonToken token, object value)
- Method (i): public Task WriteTokenAsync (JsonReader reader, bool writeChildren, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonReader reader, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonToken token, CancellationToken cancellationToken)
- Method: public override Task WriteUndefinedAsync (CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (bool value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (byte value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (byte[] value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (char value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (DateTime value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (DateTimeOffset value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (decimal value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (double value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Guid value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (short value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (int value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (long value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (object value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (sbyte value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (float value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (string value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (TimeSpan value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (ushort value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (uint value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (ulong value, CancellationToken cancellationToken)
- Method: public override Task WriteValueAsync (Uri value, CancellationToken cancellationToken)
- Method: protected override Task WriteValueDelimiterAsync (CancellationToken cancellationToken)
- Method: public override Task WriteWhitespaceAsync (string ws, CancellationToken cancellationToken)
- Property: IArrayPool`1 ArrayPool { public get; public set; }
- Property: bool AutoCompleteOnClose { public get; public set; }
|
public class Newtonsoft.Json.JsonValidatingReader () |
- Method (i): public virtual void Close ()
|
- Method: public override void Close ()
- Method: public override Nullable`1 ReadAsBoolean ()
- Method (i): public virtual Task`1 ReadAsBooleanAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsBytesAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsDateTimeAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsDateTimeOffsetAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsDecimalAsync (CancellationToken cancellationToken)
- Method: public override Nullable`1 ReadAsDouble ()
- Method (i): public virtual Task`1 ReadAsDoubleAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsInt32Async (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsStringAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsync (CancellationToken cancellationToken)
- Method (i): protected void SetToken (JsonToken newToken, object value, bool updateIndex)
- Method (i): public Task SkipAsync (CancellationToken cancellationToken)
|
public abstract class Newtonsoft.Json.JsonWriter () |
--> NONE <--
|
- Method: public virtual Task CloseAsync (CancellationToken cancellationToken)
- Method: protected virtual void Dispose (bool disposing)
- Method: public virtual Task FlushAsync (CancellationToken cancellationToken)
- Method: protected Task SetWriteStateAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method: public virtual Task WriteCommentAsync (string text, CancellationToken cancellationToken)
- Method: public virtual Task WriteEndArrayAsync (CancellationToken cancellationToken)
- Method: public virtual Task WriteEndAsync (CancellationToken cancellationToken)
- Method: protected virtual Task WriteEndAsync (JsonToken token, CancellationToken cancellationToken)
- Method: public virtual Task WriteEndConstructorAsync (CancellationToken cancellationToken)
- Method: public virtual Task WriteEndObjectAsync (CancellationToken cancellationToken)
- Method: protected virtual Task WriteIndentAsync (CancellationToken cancellationToken)
- Method: protected virtual Task WriteIndentSpaceAsync (CancellationToken cancellationToken)
- Method: public virtual Task WriteNullAsync (CancellationToken cancellationToken)
- Method: public virtual Task WritePropertyNameAsync (string name, bool escape, CancellationToken cancellationToken)
- Method: public virtual Task WritePropertyNameAsync (string name, CancellationToken cancellationToken)
- Method: public virtual Task WriteRawAsync (string json, CancellationToken cancellationToken)
- Method: public virtual Task WriteRawValueAsync (string json, CancellationToken cancellationToken)
- Method: public virtual Task WriteStartArrayAsync (CancellationToken cancellationToken)
- Method: public virtual Task WriteStartConstructorAsync (string name, CancellationToken cancellationToken)
- Method: public virtual Task WriteStartObjectAsync (CancellationToken cancellationToken)
- Method: public void WriteToken (JsonToken token)
- Method: public void WriteToken (JsonToken token, object value)
- Method: public Task WriteTokenAsync (JsonReader reader, bool writeChildren, CancellationToken cancellationToken)
- Method: public Task WriteTokenAsync (JsonReader reader, CancellationToken cancellationToken)
- Method: public Task WriteTokenAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method: public Task WriteTokenAsync (JsonToken token, CancellationToken cancellationToken)
- Method: public virtual Task WriteUndefinedAsync (CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (bool value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (byte value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (byte[] value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (char value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (DateTime value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (DateTimeOffset value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (decimal value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (double value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Guid value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (short value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (int value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (long value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (object value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (sbyte value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (float value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (string value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (TimeSpan value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (ushort value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (uint value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (ulong value, CancellationToken cancellationToken)
- Method: public virtual Task WriteValueAsync (Uri value, CancellationToken cancellationToken)
- Method: protected virtual Task WriteValueDelimiterAsync (CancellationToken cancellationToken)
- Method: public virtual Task WriteWhitespaceAsync (string ws, CancellationToken cancellationToken)
- Property: bool AutoCompleteOnClose { public get; public set; }
|
public class Newtonsoft.Json.JsonWriterException () |
--> NONE <--
|
- Constructor: public JsonWriterException (string message, string path, Exception innerException)
|
Required () |
public sealed enum Newtonsoft.Json.Required
                    Default = 0,
                    AllowNull = 1,
                    Always = 2,
|
public sealed enum Newtonsoft.Json.Required
                    Default = 0,
                    AllowNull = 1,
                    Always = 2,
                    DisallowNull = 3,
|
--> NONE <--
|
--> NONE <--
|
TypeNameAssemblyFormatHandling () |
n/a
|
public sealed enum Newtonsoft.Json.TypeNameAssemblyFormatHandling
                    Simple = 0,
                    Full = 1,
|
--> NONE <--
|
--> NONE <--
|
public class Newtonsoft.Json.Bson.BsonReader () |
- Method: public override byte[] ReadAsBytes ()
- Method: public override Nullable`1 ReadAsDateTime ()
- Method: public override Nullable`1 ReadAsDateTimeOffset ()
- Method: public override Nullable`1 ReadAsDecimal ()
- Method: public override Nullable`1 ReadAsInt32 ()
- Method: public override string ReadAsString ()
|
- Method (i): public virtual Nullable`1 ReadAsBoolean ()
- Method (i): public virtual Task`1 ReadAsBooleanAsync (CancellationToken cancellationToken)
- Method (i): public virtual byte[] ReadAsBytes ()
- Method (i): public virtual Task`1 ReadAsBytesAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDateTime ()
- Method (i): public virtual Task`1 ReadAsDateTimeAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDateTimeOffset ()
- Method (i): public virtual Task`1 ReadAsDateTimeOffsetAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDecimal ()
- Method (i): public virtual Task`1 ReadAsDecimalAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDouble ()
- Method (i): public virtual Task`1 ReadAsDoubleAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsInt32 ()
- Method (i): public virtual Task`1 ReadAsInt32Async (CancellationToken cancellationToken)
- Method (i): public virtual string ReadAsString ()
- Method (i): public virtual Task`1 ReadAsStringAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsync (CancellationToken cancellationToken)
- Method (i): protected void SetToken (JsonToken newToken, object value, bool updateIndex)
- Method (i): public Task SkipAsync (CancellationToken cancellationToken)
|
public class Newtonsoft.Json.Bson.BsonWriter () |
--> NONE <--
|
- Method (i): public virtual Task CloseAsync (CancellationToken cancellationToken)
- Method (i): protected virtual void Dispose (bool disposing)
- Method (i): public virtual Task FlushAsync (CancellationToken cancellationToken)
- Method (i): protected Task SetWriteStateAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteCommentAsync (string text, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndArrayAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndAsync (CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteEndAsync (JsonToken token, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndConstructorAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndObjectAsync (CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteIndentAsync (CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteIndentSpaceAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteNullAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WritePropertyNameAsync (string name, bool escape, CancellationToken cancellationToken)
- Method (i): public virtual Task WritePropertyNameAsync (string name, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteRawAsync (string json, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteRawValueAsync (string json, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteStartArrayAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteStartConstructorAsync (string name, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteStartObjectAsync (CancellationToken cancellationToken)
- Method (i): public void WriteToken (JsonToken token)
- Method (i): public void WriteToken (JsonToken token, object value)
- Method (i): public Task WriteTokenAsync (JsonReader reader, bool writeChildren, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonReader reader, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonToken token, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteUndefinedAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (bool value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (byte value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (byte[] value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (char value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (DateTime value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (DateTimeOffset value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (decimal value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (double value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Guid value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (short value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (int value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (long value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (object value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (sbyte value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (float value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (string value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (TimeSpan value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (ushort value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (uint value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (ulong value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Uri value, CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteValueDelimiterAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteWhitespaceAsync (string ws, CancellationToken cancellationToken)
- Property: bool AutoCompleteOnClose { public get; public set; }
|
public class Newtonsoft.Json.Converters.BinaryConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.BsonObjectIdConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public abstract class Newtonsoft.Json.Converters.CustomCreationConverter`1 () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.DataSetConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.DataTableConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public abstract class Newtonsoft.Json.Converters.DateTimeConverterBase () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.DiscriminatedUnionConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.EntityKeyMemberConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.ExpandoObjectConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.IsoDateTimeConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.JavaScriptDateTimeConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.KeyValuePairConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.RegexConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.StringEnumConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
- Constructor: public StringEnumConverter (bool camelCaseText)
|
public class Newtonsoft.Json.Converters.VersionConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
public class Newtonsoft.Json.Converters.XmlNodeConverter () |
- Method (i): public virtual JsonSchema GetSchema ()
|
--> NONE <--
|
CommentHandling () |
n/a
|
public sealed enum Newtonsoft.Json.Linq.CommentHandling
                    Ignore = 0,
                    Load = 1,
|
--> NONE <--
|
--> NONE <--
|
public abstract sealed class Newtonsoft.Json.Linq.Extensions () |
- Method: public static IJEnumerable`1 AsJEnumerable (IEnumerable`1 source)
- Method: public static IJEnumerable`1 Properties (IEnumerable`1 source)
- Method: public static U Value (IEnumerable`1 value)
- Method: public static IJEnumerable`1 Values (IEnumerable`1 source)
- Method: public static IJEnumerable`1 Values (IEnumerable`1 source, object key)
|
- Method: public static IJEnumerable`1 AncestorsAndSelf (IEnumerable`1 source)
- Method: public static IJEnumerable`1 AsJEnumerable (IEnumerable`1 source)
- Method: public static IJEnumerable`1 DescendantsAndSelf (IEnumerable`1 source)
- Method: public static IJEnumerable`1 Properties (IEnumerable`1 source)
- Method: public static U Value (IEnumerable`1 value)
- Method: public static IJEnumerable`1 Values (IEnumerable`1 source)
- Method: public static IJEnumerable`1 Values (IEnumerable`1 source, object key)
|
public class Newtonsoft.Json.Linq.JArray () |
--> NONE <--
|
- Method (i): public void AddAnnotation (object annotation)
- Method (i): public IEnumerable`1 AncestorsAndSelf ()
- Method (i): public T Annotation ()
- Method (i): public object Annotation (Type type)
- Method (i): public IEnumerable`1 Annotations ()
- Method (i): public IEnumerable`1 Annotations (Type type)
- Method (i): public IEnumerable`1 DescendantsAndSelf ()
- Method: public static JArray Load (JsonReader reader, JsonLoadSettings settings)
- Method: public static Task`1 LoadAsync (JsonReader reader, CancellationToken cancellationToken)
- Method: public static Task`1 LoadAsync (JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken)
- Method: public static JArray Parse (string json, JsonLoadSettings settings)
- Method (i): public void RemoveAnnotations ()
- Method (i): public void RemoveAnnotations (Type type)
- Method: public override Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method (i): public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
public class Newtonsoft.Json.Linq.JConstructor () |
--> NONE <--
|
- Method (i): public void AddAnnotation (object annotation)
- Method (i): public IEnumerable`1 AncestorsAndSelf ()
- Method (i): public T Annotation ()
- Method (i): public object Annotation (Type type)
- Method (i): public IEnumerable`1 Annotations ()
- Method (i): public IEnumerable`1 Annotations (Type type)
- Method (i): public IEnumerable`1 DescendantsAndSelf ()
- Method: public static JConstructor Load (JsonReader reader, JsonLoadSettings settings)
- Method: public static Task`1 LoadAsync (JsonReader reader, CancellationToken cancellationToken)
- Method: public static Task`1 LoadAsync (JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken)
- Method (i): public void RemoveAnnotations ()
- Method (i): public void RemoveAnnotations (Type type)
- Method: public override Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method (i): public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
public abstract class Newtonsoft.Json.Linq.JContainer () |
--> NONE <--
|
- Method (i): public void AddAnnotation (object annotation)
- Method (i): public IEnumerable`1 AncestorsAndSelf ()
- Method (i): public T Annotation ()
- Method (i): public object Annotation (Type type)
- Method (i): public IEnumerable`1 Annotations ()
- Method (i): public IEnumerable`1 Annotations (Type type)
- Method: public IEnumerable`1 DescendantsAndSelf ()
- Method (i): public void RemoveAnnotations ()
- Method (i): public void RemoveAnnotations (Type type)
- Method (i): public virtual Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method (i): public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
public sealed struct Newtonsoft.Json.Linq.JEnumerable`1 () |
--> NONE <--
|
- Method: public virtual bool Equals (JEnumerable`1 other)
|
public class Newtonsoft.Json.Linq.JObject () |
--> NONE <--
|
- Method (i): public void AddAnnotation (object annotation)
- Method (i): public IEnumerable`1 AncestorsAndSelf ()
- Method (i): public T Annotation ()
- Method (i): public object Annotation (Type type)
- Method (i): public IEnumerable`1 Annotations ()
- Method (i): public IEnumerable`1 Annotations (Type type)
- Method (i): public IEnumerable`1 DescendantsAndSelf ()
- Method: public static JObject Load (JsonReader reader, JsonLoadSettings settings)
- Method: public static Task`1 LoadAsync (JsonReader reader, CancellationToken cancellationToken)
- Method: public static Task`1 LoadAsync (JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken)
- Method: public static JObject Parse (string json, JsonLoadSettings settings)
- Method (i): public void RemoveAnnotations ()
- Method (i): public void RemoveAnnotations (Type type)
- Method: public override Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method (i): public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
public class Newtonsoft.Json.Linq.JProperty () |
--> NONE <--
|
- Method (i): public void AddAnnotation (object annotation)
- Method (i): public IEnumerable`1 AncestorsAndSelf ()
- Method (i): public T Annotation ()
- Method (i): public object Annotation (Type type)
- Method (i): public IEnumerable`1 Annotations ()
- Method (i): public IEnumerable`1 Annotations (Type type)
- Method (i): public IEnumerable`1 DescendantsAndSelf ()
- Method: public static JProperty Load (JsonReader reader, JsonLoadSettings settings)
- Method: public static Task`1 LoadAsync (JsonReader reader, CancellationToken cancellationToken)
- Method: public static Task`1 LoadAsync (JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken)
- Method (i): public void RemoveAnnotations ()
- Method (i): public void RemoveAnnotations (Type type)
- Method: public override Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method (i): public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
public class Newtonsoft.Json.Linq.JRaw () |
--> NONE <--
|
- Method (i): public void AddAnnotation (object annotation)
- Method (i): public IEnumerable`1 AncestorsAndSelf ()
- Method (i): public T Annotation ()
- Method (i): public object Annotation (Type type)
- Method (i): public IEnumerable`1 Annotations ()
- Method (i): public IEnumerable`1 Annotations (Type type)
- Method: public static Task`1 CreateAsync (JsonReader reader, CancellationToken cancellationToken)
- Method (i): public void RemoveAnnotations ()
- Method (i): public void RemoveAnnotations (Type type)
- Method (i): public virtual Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method (i): public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
Newtonsoft.Json.Linq JsonLoadSettings () |
n/a
|
public class Newtonsoft.Json.Linq.JsonLoadSettings
|
--> NONE <--
|
- Constructor: public JsonLoadSettings ()
- Method (i): public virtual bool Equals (object obj)
- Method (i): protected virtual void Finalize ()
- Method (i): public virtual int GetHashCode ()
- Method (i): public Type GetType ()
- Method (i): protected object MemberwiseClone ()
- Method (i): public virtual string ToString ()
- Property: CommentHandling CommentHandling { public get; public set; }
- Property: LineInfoHandling LineInfoHandling { public get; public set; }
|
public class Newtonsoft.Json.Linq.JsonMergeSettings () |
--> NONE <--
|
- Property: MergeNullValueHandling MergeNullValueHandling { public get; public set; }
|
public abstract class Newtonsoft.Json.Linq.JToken () |
--> NONE <--
|
- Method: public void AddAnnotation (object annotation)
- Method: public IEnumerable`1 AncestorsAndSelf ()
- Method: public T Annotation ()
- Method: public object Annotation (Type type)
- Method: public IEnumerable`1 Annotations ()
- Method: public IEnumerable`1 Annotations (Type type)
- Method: public static JToken Load (JsonReader reader, JsonLoadSettings settings)
- Method: public static Task`1 LoadAsync (JsonReader reader, CancellationToken cancellationToken)
- Method: public static Task`1 LoadAsync (JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken)
- Method: public static JToken Parse (string json, JsonLoadSettings settings)
- Method: public static JToken ReadFrom (JsonReader reader, JsonLoadSettings settings)
- Method: public static Task`1 ReadFromAsync (JsonReader reader, CancellationToken cancellationToken)
- Method: public static Task`1 ReadFromAsync (JsonReader reader, JsonLoadSettings settings, CancellationToken cancellationToken)
- Method: public void RemoveAnnotations ()
- Method: public void RemoveAnnotations (Type type)
- Method: public virtual Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method: public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
public class Newtonsoft.Json.Linq.JTokenReader () |
- Method: public override byte[] ReadAsBytes ()
- Method: public override Nullable`1 ReadAsDateTime ()
- Method: public override Nullable`1 ReadAsDateTimeOffset ()
- Method: public override Nullable`1 ReadAsDecimal ()
- Method: public override Nullable`1 ReadAsInt32 ()
- Method: public override string ReadAsString ()
|
- Method (i): public virtual Nullable`1 ReadAsBoolean ()
- Method (i): public virtual Task`1 ReadAsBooleanAsync (CancellationToken cancellationToken)
- Method (i): public virtual byte[] ReadAsBytes ()
- Method (i): public virtual Task`1 ReadAsBytesAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDateTime ()
- Method (i): public virtual Task`1 ReadAsDateTimeAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDateTimeOffset ()
- Method (i): public virtual Task`1 ReadAsDateTimeOffsetAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDecimal ()
- Method (i): public virtual Task`1 ReadAsDecimalAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsDouble ()
- Method (i): public virtual Task`1 ReadAsDoubleAsync (CancellationToken cancellationToken)
- Method (i): public virtual Nullable`1 ReadAsInt32 ()
- Method (i): public virtual Task`1 ReadAsInt32Async (CancellationToken cancellationToken)
- Method (i): public virtual string ReadAsString ()
- Method (i): public virtual Task`1 ReadAsStringAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task`1 ReadAsync (CancellationToken cancellationToken)
- Method (i): protected void SetToken (JsonToken newToken, object value, bool updateIndex)
- Method (i): public Task SkipAsync (CancellationToken cancellationToken)
- Property: JToken CurrentToken { public get; }
|
public class Newtonsoft.Json.Linq.JTokenWriter () |
--> NONE <--
|
- Method (i): public virtual Task CloseAsync (CancellationToken cancellationToken)
- Method (i): protected virtual void Dispose (bool disposing)
- Method (i): public virtual Task FlushAsync (CancellationToken cancellationToken)
- Method (i): protected Task SetWriteStateAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteCommentAsync (string text, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndArrayAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndAsync (CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteEndAsync (JsonToken token, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndConstructorAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteEndObjectAsync (CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteIndentAsync (CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteIndentSpaceAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteNullAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WritePropertyNameAsync (string name, bool escape, CancellationToken cancellationToken)
- Method (i): public virtual Task WritePropertyNameAsync (string name, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteRawAsync (string json, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteRawValueAsync (string json, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteStartArrayAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteStartConstructorAsync (string name, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteStartObjectAsync (CancellationToken cancellationToken)
- Method (i): public void WriteToken (JsonToken token)
- Method (i): public void WriteToken (JsonToken token, object value)
- Method (i): public Task WriteTokenAsync (JsonReader reader, bool writeChildren, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonReader reader, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonToken token, object value, CancellationToken cancellationToken)
- Method (i): public Task WriteTokenAsync (JsonToken token, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteUndefinedAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (bool value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (byte value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (byte[] value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (char value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (DateTime value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (DateTimeOffset value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (decimal value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (double value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Guid value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (short value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (int value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (long value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Nullable`1 value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (object value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (sbyte value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (float value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (string value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (TimeSpan value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (ushort value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (uint value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (ulong value, CancellationToken cancellationToken)
- Method (i): public virtual Task WriteValueAsync (Uri value, CancellationToken cancellationToken)
- Method (i): protected virtual Task WriteValueDelimiterAsync (CancellationToken cancellationToken)
- Method (i): public virtual Task WriteWhitespaceAsync (string ws, CancellationToken cancellationToken)
- Property: bool AutoCompleteOnClose { public get; public set; }
- Property: JToken CurrentToken { public get; }
|
public class Newtonsoft.Json.Linq.JValue () |
--> NONE <--
|
- Method (i): public void AddAnnotation (object annotation)
- Method (i): public IEnumerable`1 AncestorsAndSelf ()
- Method (i): public T Annotation ()
- Method (i): public object Annotation (Type type)
- Method (i): public IEnumerable`1 Annotations ()
- Method (i): public IEnumerable`1 Annotations (Type type)
- Method (i): public void RemoveAnnotations ()
- Method (i): public void RemoveAnnotations (Type type)
- Method: public override Task WriteToAsync (JsonWriter writer, CancellationToken cancellationToken, JsonConverter[] converters)
- Method (i): public Task WriteToAsync (JsonWriter writer, JsonConverter[] converters)
|
LineInfoHandling () |
n/a
|
public sealed enum Newtonsoft.Json.Linq.LineInfoHandling
                    Ignore = 0,
                    Load = 1,
|
--> NONE <--
|
--> NONE <--
|
MergeNullValueHandling () |
n/a
|
public sealed enum Newtonsoft.Json.Linq.MergeNullValueHandling
                    Ignore = 0,
                    Merge = 1,
|
--> NONE <--
|
--> NONE <--
|
public abstract sealed class Newtonsoft.Json.Schema.Extensions () |
- Method: public static bool IsValid (JToken source, JsonSchema schema)
- Method: public static bool IsValid (JToken source, JsonSchema schema, out IList`1 errorMessages)
- Method: public static void Validate (JToken source, JsonSchema schema)
- Method: public static void Validate (JToken source, JsonSchema schema, ValidationEventHandler validationEventHandler)
|
- [Obsolete: JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.]Method: public static bool IsValid (JToken source, JsonSchema schema)
- [Obsolete: JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.]Method: public static bool IsValid (JToken source, JsonSchema schema, out IList`1 errorMessages)
- [Obsolete: JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.]Method: public static void Validate (JToken source, JsonSchema schema)
- [Obsolete: JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.]Method: public static void Validate (JToken source, JsonSchema schema, ValidationEventHandler validationEventHandler)
|
Newtonsoft.Json.Serialization CamelCaseNamingStrategy () |
n/a
|
public class Newtonsoft.Json.Serialization.CamelCaseNamingStrategy
|
--> NONE <--
|
- Constructor: public CamelCaseNamingStrategy ()
- Constructor: public CamelCaseNamingStrategy (bool processDictionaryKeys, bool overrideSpecifiedNames)
- Constructor: public CamelCaseNamingStrategy (bool processDictionaryKeys, bool overrideSpecifiedNames, bool processExtensionDataNames)
- Method (i): public virtual bool Equals (object obj)
- Method (i): protected virtual void Finalize ()
- Method (i): public virtual string GetDictionaryKey (string key)
- Method (i): public virtual string GetExtensionDataName (string name)
- Method (i): public virtual int GetHashCode ()
- Method (i): public virtual string GetPropertyName (string name, bool hasSpecifiedName)
- Method (i): public Type GetType ()
- Method (i): protected object MemberwiseClone ()
- Method: protected override string ResolvePropertyName (string name)
- Method (i): public virtual string ToString ()
- Property: bool OverrideSpecifiedNames { public get; public set; }
- Property: bool ProcessDictionaryKeys { public get; public set; }
- Property: bool ProcessExtensionDataNames { public get; public set; }
|
public class Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver () |
- Method (i): public virtual JsonContract ResolveContract (Type type)
- Method: ProtectedInternal override string ResolvePropertyName (string propertyName)
|
- Method: public override JsonContract ResolveContract (Type type)
- Method (i): protected virtual string ResolveDictionaryKey (string dictionaryKey)
- Method (i): protected virtual string ResolveExtensionDataName (string extensionDataName)
- Method (i): protected virtual string ResolvePropertyName (string propertyName)
- Property: NamingStrategy NamingStrategy { public get; public set; }
|
public class Newtonsoft.Json.Serialization.DefaultContractResolver () |
- Constructor: public DefaultContractResolver (bool shareCache)
- Method: ProtectedInternal virtual string ResolvePropertyName (string propertyName)
|
- Method: protected virtual string ResolveDictionaryKey (string dictionaryKey)
- Method: protected virtual string ResolveExtensionDataName (string extensionDataName)
- Method: protected virtual string ResolvePropertyName (string propertyName)
- Property: NamingStrategy NamingStrategy { public get; public set; }
|
Newtonsoft.Json.Serialization DefaultNamingStrategy () |
n/a
|
public class Newtonsoft.Json.Serialization.DefaultNamingStrategy
|
--> NONE <--
|
- Constructor: public DefaultNamingStrategy ()
- Method (i): public virtual bool Equals (object obj)
- Method (i): protected virtual void Finalize ()
- Method (i): public virtual string GetDictionaryKey (string key)
- Method (i): public virtual string GetExtensionDataName (string name)
- Method (i): public virtual int GetHashCode ()
- Method (i): public virtual string GetPropertyName (string name, bool hasSpecifiedName)
- Method (i): public Type GetType ()
- Method (i): protected object MemberwiseClone ()
- Method: protected override string ResolvePropertyName (string name)
- Method (i): public virtual string ToString ()
- Property: bool OverrideSpecifiedNames { public get; public set; }
- Property: bool ProcessDictionaryKeys { public get; public set; }
- Property: bool ProcessExtensionDataNames { public get; public set; }
|
Newtonsoft.Json.Serialization IAttributeProvider () |
n/a
|
public interface Newtonsoft.Json.Serialization.IAttributeProvider
|
--> NONE <--
|
- Method: IList`1 GetAttributes (bool inherit)
- Method: IList`1 GetAttributes (Type attributeType, bool inherit)
|
Newtonsoft.Json.Serialization ISerializationBinder () |
n/a
|
public interface Newtonsoft.Json.Serialization.ISerializationBinder
|
--> NONE <--
|
- Method: void BindToName (Type serializedType, out string assemblyName, out string typeName)
- Method: Type BindToType (string assemblyName, string typeName)
|
public class Newtonsoft.Json.Serialization.JsonArrayContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
- Property: bool HasParameterizedCreator { public get; public set; }
- Property: ObjectConstructor`1 OverrideCreator { public get; public set; }
|
public class Newtonsoft.Json.Serialization.JsonContainerContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
--> NONE <--
|
public abstract class Newtonsoft.Json.Serialization.JsonContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
--> NONE <--
|
public class Newtonsoft.Json.Serialization.JsonDictionaryContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
- Property: Func`2 PropertyNameResolver { public get; public set; }
|
- Property: Func`2 DictionaryKeyResolver { public get; public set; }
- Property: bool HasParameterizedCreator { public get; public set; }
- Property: ObjectConstructor`1 OverrideCreator { public get; public set; }
|
public class Newtonsoft.Json.Serialization.JsonDynamicContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
--> NONE <--
|
public class Newtonsoft.Json.Serialization.JsonISerializableContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
--> NONE <--
|
public class Newtonsoft.Json.Serialization.JsonLinqContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
--> NONE <--
|
public class Newtonsoft.Json.Serialization.JsonObjectContract () |
- [Obsolete: ConstructorParameters is obsolete. Use CreatorParameters instead.]Property: JsonPropertyCollection ConstructorParameters { public get; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
- [Obsolete: OverrideConstructor is obsolete. Use OverrideCreator instead.]Property: ConstructorInfo OverrideConstructor { public get; public set; }
- [Obsolete: ParametrizedConstructor is obsolete. Use OverrideCreator instead.]Property: ConstructorInfo ParametrizedConstructor { public get; public set; }
|
- Property: Func`2 ExtensionDataNameResolver { public get; public set; }
- Property: Type ExtensionDataValueType { public get; public set; }
|
public class Newtonsoft.Json.Serialization.JsonPrimitiveContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
--> NONE <--
|
public class Newtonsoft.Json.Serialization.JsonProperty () |
--> NONE <--
|
- Property: IAttributeProvider AttributeProvider { public get; public set; }
- Property: Predicate`1 ShouldDeserialize { public get; public set; }
|
public class Newtonsoft.Json.Serialization.JsonStringContract () |
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializedCallbacks collection.]Property: MethodInfo OnDeserialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnDeserializingCallbacks collection.]Property: MethodInfo OnDeserializing { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnErrorCallbacks collection.]Property: MethodInfo OnError { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializedCallbacks collection.]Property: MethodInfo OnSerialized { public get; public set; }
- [Obsolete: This property is obsolete and has been replaced by the OnSerializingCallbacks collection.]Property: MethodInfo OnSerializing { public get; public set; }
|
--> NONE <--
|
Newtonsoft.Json.Serialization NamingStrategy () |
n/a
|
public abstract class Newtonsoft.Json.Serialization.NamingStrategy
|
--> NONE <--
|
- Constructor: protected NamingStrategy ()
- Method (i): public virtual bool Equals (object obj)
- Method (i): protected virtual void Finalize ()
- Method: public virtual string GetDictionaryKey (string key)
- Method: public virtual string GetExtensionDataName (string name)
- Method (i): public virtual int GetHashCode ()
- Method: public virtual string GetPropertyName (string name, bool hasSpecifiedName)
- Method (i): public Type GetType ()
- Method (i): protected object MemberwiseClone ()
- Method: protected abstract string ResolvePropertyName (string name)
- Method (i): public virtual string ToString ()
- Property: bool OverrideSpecifiedNames { public get; public set; }
- Property: bool ProcessDictionaryKeys { public get; public set; }
- Property: bool ProcessExtensionDataNames { public get; public set; }
|
Newtonsoft.Json.Serialization ReflectionAttributeProvider () |
n/a
|
public class Newtonsoft.Json.Serialization.ReflectionAttributeProvider
|
--> NONE <--
|
- Constructor: public ReflectionAttributeProvider (object attributeProvider)
- Method (i): public virtual bool Equals (object obj)
- Method (i): protected virtual void Finalize ()
- Method: public virtual IList`1 GetAttributes (bool inherit)
- Method: public virtual IList`1 GetAttributes (Type attributeType, bool inherit)
- Method (i): public virtual int GetHashCode ()
- Method (i): public Type GetType ()
- Method (i): protected object MemberwiseClone ()
- Method (i): public virtual string ToString ()
|
Newtonsoft.Json.Serialization SnakeCaseNamingStrategy () |
n/a
|
public class Newtonsoft.Json.Serialization.SnakeCaseNamingStrategy
|
--> NONE <--
|
- Constructor: public SnakeCaseNamingStrategy ()
- Constructor: public SnakeCaseNamingStrategy (bool processDictionaryKeys, bool overrideSpecifiedNames)
- Constructor: public SnakeCaseNamingStrategy (bool processDictionaryKeys, bool overrideSpecifiedNames, bool processExtensionDataNames)
- Method (i): public virtual bool Equals (object obj)
- Method (i): protected virtual void Finalize ()
- Method (i): public virtual string GetDictionaryKey (string key)
- Method (i): public virtual string GetExtensionDataName (string name)
- Method (i): public virtual int GetHashCode ()
- Method (i): public virtual string GetPropertyName (string name, bool hasSpecifiedName)
- Method (i): public Type GetType ()
- Method (i): protected object MemberwiseClone ()
- Method: protected override string ResolvePropertyName (string name)
- Method (i): public virtual string ToString ()
- Property: bool OverrideSpecifiedNames { public get; public set; }
- Property: bool ProcessDictionaryKeys { public get; public set; }
- Property: bool ProcessExtensionDataNames { public get; public set; }
|