File: src\nuget-client\build\Shared\Utf8JsonStreamReaderConverter.cs
Web Access
Project: src\src\nuget-client\src\NuGet.Core\NuGet.ProjectModel\NuGet.ProjectModel.csproj (NuGet.ProjectModel)
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace NuGet.Shared
{
    /// <summary>
    /// An abstract class that defines a function for reading a <see cref="Utf8JsonStreamReader"/> into a <typeparamref name="T"/>
    /// </summary>
    /// <typeparam name="T"></typeparam>
    internal interface IUtf8JsonStreamReaderConverter<T>
    {
        T Read(ref Utf8JsonStreamReader reader);
    }
}