| File: System\Text\Json\Serialization\Metadata\IJsonTypeInfoResolver.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. namespace System.Text.Json.Serialization.Metadata { /// <summary> /// Used to resolve the JSON serialization contract for requested types. /// </summary> public interface IJsonTypeInfoResolver { /// <summary> /// Resolves a <see cref="JsonTypeInfo"/> contract for the requested type and options. /// </summary> /// <param name="type">Type to be resolved.</param> /// <param name="options">Configuration used when resolving the metadata.</param> /// <returns> /// A <see cref="JsonTypeInfo"/> instance matching the requested type, /// or <see langword="null"/> if no contract could be resolved. /// </returns> JsonTypeInfo? GetTypeInfo(Type type, JsonSerializerOptions options); } }