Class PointerEvaluationResults
Provides results for a JSON Pointer evaluation.
Inheritance
System.Object
PointerEvaluationResults
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Manatee.Json.Pointer
Assembly: Manatee.Json.dll
Syntax
public class PointerEvaluationResults
Properties
| Improve this Doc View SourceError
Gets any errors that may have resulted in not finding the referenced value.
Declaration
public string? Error { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.String> |
Result
Gets the referenced value, if found.
Declaration
public JsonValue? Result { get; }
Property Value
Type | Description |
---|---|
System.Nullable<JsonValue> |