Click or drag to resize
Json.NET

JObject Methods

 

The JObject type exposes the following members.

Methods
  NameDescription
Public methodAdd(Object)
Adds the specified content as children of this JToken.
(Inherited from JContainer.)
Public methodAdd(String, JToken)
Adds the specified property name.
Public methodAddAfterSelf
Adds the specified content immediately after this token.
(Inherited from JToken.)
Public methodAddAnnotation
Adds an object to the annotation list of this JToken.
(Inherited from JToken.)
Public methodAddBeforeSelf
Adds the specified content immediately before this token.
(Inherited from JToken.)
Public methodAddFirst
Adds the specified content as the first children of this JToken.
(Inherited from JContainer.)
Public methodAfterSelf
Returns a collection of the sibling tokens after this token, in document order.
(Inherited from JToken.)
Public methodAncestors
Returns a collection of the ancestor tokens of this token.
(Inherited from JToken.)
Public methodAncestorsAndSelf
Returns a collection of tokens that contain this token, and the ancestors of this token.
(Inherited from JToken.)
Public methodAnnotation(Type)
Gets the first annotation object of the specified type from this JToken.
(Inherited from JToken.)
Public methodAnnotationT
Get the first annotation object of the specified type from this JToken.
(Inherited from JToken.)
Public methodAnnotations(Type)
Gets a collection of annotations of the specified type for this JToken.
(Inherited from JToken.)
Public methodAnnotationsT
Gets a collection of annotations of the specified type for this JToken.
(Inherited from JToken.)
Public methodBeforeSelf
Returns a collection of the sibling tokens before this token, in document order.
(Inherited from JToken.)
Public methodChildren
Returns a collection of the child tokens of this token, in document order.
(Inherited from JContainer.)
Public methodContainsKey
Determines whether the JSON object has the specified property name.
Public methodCreateReader
Creates a JsonReader for this token.
(Inherited from JToken.)
Public methodCreateWriter
Creates a JsonWriter that can be used to add tokens to the JToken.
(Inherited from JContainer.)
Public methodDeepClone
Creates a new instance of the JToken. All child tokens are recursively cloned.
(Inherited from JToken.)
Public methodDescendants
Returns a collection of the descendant tokens for this token in document order.
(Inherited from JContainer.)
Public methodDescendantsAndSelf
Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
(Inherited from JContainer.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodStatic memberFromObject(Object)
Creates a JObject from an object.
Public methodStatic memberFromObject(Object, JsonSerializer)
Creates a JObject from an object.
Public methodGetEnumerator
Returns an enumerator that can be used to iterate through the collection.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Protected methodGetMetaObject
Returns the DynamicMetaObject responsible for binding operations performed on this object.
(Overrides JTokenGetMetaObject(Expression).)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValue(String)
Gets the JToken with the specified property name.
Public methodGetValue(String, StringComparison)
Gets the JToken with the specified property name. The exact property name will be searched for first and if no matching property is found then the StringComparison will be used to match a property.
Public methodStatic memberLoad(JsonReader)
Loads a JObject from a JsonReader.
Public methodStatic memberLoad(JsonReader, JsonLoadSettings)
Loads a JObject from a JsonReader.
Public methodStatic memberLoadAsync(JsonReader, CancellationToken)
Asynchronously loads a JObject from a JsonReader.
Public methodStatic memberLoadAsync(JsonReader, JsonLoadSettings, CancellationToken)
Asynchronously loads a JObject from a JsonReader.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMerge(Object)
Merge the specified content into this JToken.
(Inherited from JContainer.)
Public methodMerge(Object, JsonMergeSettings)
Merge the specified content into this JToken using JsonMergeSettings.
(Inherited from JContainer.)
Protected methodOnAddingNew
Raises the AddingNew event.
(Inherited from JContainer.)
Protected methodOnCollectionChanged
Raises the CollectionChanged event.
(Inherited from JContainer.)
Protected methodOnListChanged
Raises the ListChanged event.
(Inherited from JContainer.)
Protected methodOnPropertyChanged
Raises the PropertyChanged event with the provided arguments.
Protected methodOnPropertyChanging
Raises the PropertyChanging event with the provided arguments.
Public methodStatic memberCode exampleParse(String)
Load a JObject from a string that contains JSON.
Public methodStatic memberCode exampleParse(String, JsonLoadSettings)
Load a JObject from a string that contains JSON.
Public methodProperties
Public methodProperty(String)
Gets a JProperty with the specified name.
Public methodProperty(String, StringComparison)
Gets the JProperty with the specified name. The exact name will be searched for first and if no matching property is found then the StringComparison will be used to match a property.
Public methodPropertyValues
Public methodRemove
Removes this token from its parent.
(Inherited from JToken.)
Public methodRemove(String)
Removes the property with the specified name.
Public methodRemoveAll
Removes the child nodes from this token.
(Inherited from JContainer.)
Public methodRemoveAnnotations(Type)
Removes the annotations of the specified type from this JToken.
(Inherited from JToken.)
Public methodRemoveAnnotationsT
Removes the annotations of the specified type from this JToken.
(Inherited from JToken.)
Public methodReplace
Replaces this token with the specified token.
(Inherited from JToken.)
Public methodReplaceAll
Replaces the child nodes of this token with the specified content.
(Inherited from JContainer.)
Public methodSelectToken(String)
Selects a JToken using a JPath expression. Selects the token that matches the object path.
(Inherited from JToken.)
Public methodSelectToken(String, Boolean)
Selects a JToken using a JPath expression. Selects the token that matches the object path.
(Inherited from JToken.)
Public methodSelectTokens(String)
Selects a collection of elements using a JPath expression.
(Inherited from JToken.)
Public methodSelectTokens(String, Boolean)
Selects a collection of elements using a JPath expression.
(Inherited from JToken.)
Public methodToObject(Type)
Creates an instance of the specified .NET type from the JToken.
(Inherited from JToken.)
Public methodToObject(Type, JsonSerializer)
Creates an instance of the specified .NET type from the JToken using the specified JsonSerializer.
(Inherited from JToken.)
Public methodToObjectT
Creates an instance of the specified .NET type from the JToken.
(Inherited from JToken.)
Public methodToObjectT(JsonSerializer)
Creates an instance of the specified .NET type from the JToken using the specified JsonSerializer.
(Inherited from JToken.)
Public methodToString
Returns the indented JSON for this token.
(Inherited from JToken.)
Public methodToString(Formatting, JsonConverter)
Returns the JSON for this token using the given formatting and converters.
(Inherited from JToken.)
Public methodTryGetValue(String, JToken)
Tries to get the JToken with the specified property name.
Public methodTryGetValue(String, StringComparison, JToken)
Tries to get the JToken with the specified property name. The exact property name will be searched for first and if no matching property is found then the StringComparison will be used to match a property.
Public methodValueT
Gets the JToken with the specified key converted to the specified type.
(Inherited from JToken.)
Public methodValuesT
Returns a collection of the child values of this token, in document order.
(Inherited from JContainer.)
Public methodWriteTo
Writes this token to a JsonWriter.
(Overrides JTokenWriteTo(JsonWriter, JsonConverter).)
Public methodWriteToAsync(JsonWriter, JsonConverter)
Writes this token to a JsonWriter asynchronously.
(Inherited from JToken.)
Public methodWriteToAsync(JsonWriter, CancellationToken, JsonConverter)
Writes this token to a JsonWriter asynchronously.
(Overrides JTokenWriteToAsync(JsonWriter, CancellationToken, JsonConverter).)
Top
Extension Methods
  NameDescription
Public Extension MethodIsValid(JsonSchema)Overloaded.

Determines whether the JToken is valid.

Caution note Caution
JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
(Defined by Extensions.)
Public Extension MethodIsValid(JsonSchema, IListString)Overloaded.

Determines whether the JToken is valid.

Caution note Caution
JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
(Defined by Extensions.)
Public Extension MethodValidate(JsonSchema)Overloaded.

Validates the specified JToken.

Caution note Caution
JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
(Defined by Extensions.)
Public Extension MethodValidate(JsonSchema, ValidationEventHandler)Overloaded.

Validates the specified JToken.

Caution note Caution
JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
(Defined by Extensions.)
Top
See Also