| File: Internal\Json\JsonConverterFactoryForWrappers.cs | Web Access |
| Project: src\aspnetcore\src\Grpc\JsonTranscoding\src\Microsoft.AspNetCore.Grpc.JsonTranscoding\Microsoft.AspNetCore.Grpc.JsonTranscoding.csproj (Microsoft.AspNetCore.Grpc.JsonTranscoding) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Reflection; using System.Text.Json; using System.Text.Json.Serialization; using Google.Protobuf; using Grpc.Shared; using Type = System.Type; namespace Microsoft.AspNetCore.Grpc.JsonTranscoding.Internal.Json; internal sealed class JsonConverterFactoryForWrappers : JsonConverterFactory { private readonly JsonContext _context; public JsonConverterFactoryForWrappers(JsonContext context) { _context = context; } public override bool CanConvert(Type typeToConvert) { if (!typeof(IMessage).IsAssignableFrom(typeToConvert)) { return false; } var descriptor = _context.DescriptorRegistry.FindDescriptorByType(typeToConvert); if (descriptor == null) { return false; } return ServiceDescriptorHelpers.IsWrapperType(descriptor); } public override JsonConverter CreateConverter( Type typeToConvert, JsonSerializerOptions options) { var converter = (JsonConverter)Activator.CreateInstance( typeof(WrapperConverter<>).MakeGenericType(new Type[] { typeToConvert }), BindingFlags.Instance | BindingFlags.Public, binder: null, args: new object[] { _context }, culture: null)!; return converter; } }