// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.AspNet.Http.Authentication; namespace Microsoft.AspNet.Http.Core.Authentication { public class DescribeSchemesContext : IDescribeSchemesContext { private List _results; public DescribeSchemesContext() { _results = new List(); } public IEnumerable Results { get { return _results; } } public void Accept(IDictionary description) { _results.Add(new AuthenticationDescription(description)); } } }