| File: System\Text\Json\Serialization\JsonSerializer.Write.Node.cs | Web Access |
| Project: src\runtime\src\libraries\System.Text.Json\src\System.Text.Json.csproj (System.Text.Json) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Text.Json.Nodes; using System.Text.Json.Serialization; using System.Text.Json.Serialization.Metadata; namespace System.Text.Json { public static partial class JsonSerializer { /// <summary> /// Converts the provided value into a <see cref="JsonNode"/>. /// </summary> /// <typeparam name="TValue">The type of the value to serialize.</typeparam> /// <returns>A <see cref="JsonNode"/> representation of the JSON value.</returns> /// <param name="value">The value to convert.</param> /// <param name="options">Options to control the conversion behavior.</param> /// <exception cref="NotSupportedException"> /// There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter"/> /// for <typeparamref name="TValue"/> or its serializable members. /// </exception> [RequiresUnreferencedCode(SerializationUnreferencedCodeMessage)] [RequiresDynamicCode(SerializationRequiresDynamicCodeMessage)] public static JsonNode? SerializeToNode<TValue>(TValue value, JsonSerializerOptions? options = null) { JsonTypeInfo<TValue> jsonTypeInfo = GetTypeInfo<TValue>(options); return WriteNode(value, jsonTypeInfo); } /// <summary> /// Converts the provided value into a <see cref="JsonNode"/>. /// </summary> /// <returns>A <see cref="JsonNode"/> representation of the value.</returns> /// <param name="value">The value to convert.</param> /// <param name="inputType">The type of the <paramref name="value"/> to convert.</param> /// <param name="options">Options to control the conversion behavior.</param> /// <exception cref="ArgumentException"> /// <paramref name="inputType"/> is not compatible with <paramref name="value"/>. /// </exception> /// <exception cref="NotSupportedException"> /// <exception cref="ArgumentNullException"> /// <paramref name="inputType"/> is <see langword="null"/>. /// </exception> /// There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter"/> /// for <paramref name="inputType"/> or its serializable members. /// </exception> [RequiresUnreferencedCode(SerializationUnreferencedCodeMessage)] [RequiresDynamicCode(SerializationRequiresDynamicCodeMessage)] public static JsonNode? SerializeToNode(object? value, Type inputType, JsonSerializerOptions? options = null) { ValidateInputType(value, inputType); JsonTypeInfo typeInfo = GetTypeInfo(options, inputType); return WriteNodeAsObject(value, typeInfo); } /// <summary> /// Converts the provided value into a <see cref="JsonNode"/>. /// </summary> /// <typeparam name="TValue">The type of the value to serialize.</typeparam> /// <returns>A <see cref="JsonNode"/> representation of the value.</returns> /// <param name="value">The value to convert.</param> /// <param name="jsonTypeInfo">Metadata about the type to convert.</param> /// <exception cref="ArgumentNullException"> /// <paramref name="jsonTypeInfo"/> is <see langword="null"/>. /// </exception> public static JsonNode? SerializeToNode<TValue>(TValue value, JsonTypeInfo<TValue> jsonTypeInfo) { ArgumentNullException.ThrowIfNull(jsonTypeInfo); jsonTypeInfo.EnsureConfigured(); return WriteNode(value, jsonTypeInfo); } /// <summary> /// Converts the provided value into a <see cref="JsonNode"/>. /// </summary> /// <returns>A <see cref="JsonNode"/> representation of the value.</returns> /// <param name="value">The value to convert.</param> /// <param name="jsonTypeInfo">Metadata about the type to convert.</param> /// <exception cref="ArgumentNullException"> /// <paramref name="jsonTypeInfo"/> is <see langword="null"/>. /// </exception> /// <exception cref="InvalidCastException"> /// <paramref name="value"/> does not match the type of <paramref name="jsonTypeInfo"/>. /// </exception> public static JsonNode? SerializeToNode(object? value, JsonTypeInfo jsonTypeInfo) { ArgumentNullException.ThrowIfNull(jsonTypeInfo); jsonTypeInfo.EnsureConfigured(); return WriteNodeAsObject(value, jsonTypeInfo); } /// <summary> /// Converts the provided value into a <see cref="JsonNode"/>. /// </summary> /// <returns>A <see cref="JsonNode"/> representation of the value.</returns> /// <param name="value">The value to convert.</param> /// <param name="inputType">The type of the <paramref name="value"/> to convert.</param> /// <param name="context">A metadata provider for serializable types.</param> /// <exception cref="NotSupportedException"> /// There is no compatible <see cref="System.Text.Json.Serialization.JsonConverter"/> /// for <paramref name="inputType"/> or its serializable members. /// </exception> /// <exception cref="InvalidOperationException"> /// The <see cref="JsonSerializerContext.GetTypeInfo(Type)"/> method of the provided /// <paramref name="context"/> returns <see langword="null"/> for the type to convert. /// </exception> /// <exception cref="ArgumentNullException"> /// <paramref name="inputType"/> or <paramref name="context"/> is <see langword="null"/>. /// </exception> public static JsonNode? SerializeToNode(object? value, Type inputType, JsonSerializerContext context) { ArgumentNullException.ThrowIfNull(context); ValidateInputType(value, inputType); JsonTypeInfo jsonTypeInfo = GetTypeInfo(context, inputType); return WriteNodeAsObject(value, jsonTypeInfo); } private static JsonNode? WriteNode<TValue>(in TValue value, JsonTypeInfo<TValue> jsonTypeInfo) { Debug.Assert(jsonTypeInfo.IsConfigured); JsonSerializerOptions options = jsonTypeInfo.Options; Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output); try { jsonTypeInfo.Serialize(writer, value); return JsonNode.Parse(output.WrittenSpan, options.GetNodeOptions(), options.GetDocumentOptions()); } finally { Utf8JsonWriterCache.ReturnWriterAndBuffer(writer, output); } } private static JsonNode? WriteNodeAsObject(object? value, JsonTypeInfo jsonTypeInfo) { Debug.Assert(jsonTypeInfo.IsConfigured); JsonSerializerOptions options = jsonTypeInfo.Options; Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output); try { jsonTypeInfo.SerializeAsObject(writer, value); return JsonNode.Parse(output.WrittenSpan, options.GetNodeOptions(), options.GetDocumentOptions()); } finally { Utf8JsonWriterCache.ReturnWriterAndBuffer(writer, output); } } } }