blob: 419cc84848ecae11e542cfac47b63516000976d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//-----------------------------------------------------------------------
// <copyright file="IOpenIdHost.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOpenAuth.Messaging;
/// <summary>
/// An interface implemented by both providers and relying parties.
/// </summary>
internal interface IOpenIdHost {
/// <summary>
/// Gets the security settings.
/// </summary>
SecuritySettings SecuritySettings { get; }
/// <summary>
/// Gets the web request handler.
/// </summary>
IDirectWebRequestHandler WebRequestHandler { get; }
}
}
|