File: Internal\NegotiateStateFactory.cs
Web Access
Project: src\src\Security\Authentication\Negotiate\src\Microsoft.AspNetCore.Authentication.Negotiate.csproj (Microsoft.AspNetCore.Authentication.Negotiate)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Authentication.Negotiate;
 
internal sealed class NegotiateStateFactory : INegotiateStateFactory
{
    public INegotiateState CreateInstance()
    {
        return new NegotiateState();
    }
}