using System;
using System.Collections.Generic;
using System.Text;
namespace DotNetOpenId.Extensions {
internal class ExtensionManager {
///
/// A list of request extensions that may be enumerated over for logging purposes.
///
internal static Dictionary RequestExtensions = new Dictionary {
{new AttributeExchange.FetchRequest(), "AX fetch"},
{new AttributeExchange.StoreRequest(), "AX store"},
{new ProviderAuthenticationPolicy.PolicyRequest(), "PAPE"},
{new SimpleRegistration.ClaimsRequest(), "sreg"},
};
//internal static List ResponseExtensions = new List {
// new AttributeExchange.FetchResponse(),
// new AttributeExchange.StoreResponse(),
// new ProviderAuthenticationPolicy.PolicyResponse(),
// new SimpleRegistration.ClaimsResponse(),
//};
}
}