(ReadContext context)
| 142 | } |
| 143 | |
| 144 | private static object? ReadInlineTypedPayload(ReadContext context) |
| 145 | { |
| 146 | TypeInfo typeInfo = context.TypeResolver.ReadAnyTypeInfo(context); |
| 147 | return context.TypeResolver.ReadAnyValue(typeInfo, context); |
| 148 | } |
| 149 | |
| 150 | private static object? ReadResolvedValue(ReadContext context, TypeInfo typeInfo, RefMode refMode) |
| 151 | { |
nothing calls this directly
no test coverage detected