//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOpenAuth.Messaging;
///
/// An interface implemented by both providers and relying parties.
///
internal interface IOpenIdHost {
///
/// Gets the security settings.
///
SecuritySettings SecuritySettings { get; }
///
/// Gets the web request handler.
///
IDirectWebRequestHandler WebRequestHandler { get; }
}
}