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