aspnetcore/src/Microsoft.AspNet.HttpFeature/Security/IAuthenticationChallenge.cs

10 lines
257 B
C#

using System.Collections.Generic;
namespace Microsoft.AspNet.HttpFeature.Security
{
public interface IAuthenticationChallenge
{
IEnumerable<string> AuthenticationTypes { get; }
IDictionary<string, string> Properties { get; }
}
}