blob: cf52fef135a5bcf23f292cec09aabd734c696722 (
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
29
|
//-----------------------------------------------------------------------
// <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.Net.Http;
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 factory for various dependencies.
/// </summary>
IHostFactories HostFactories { get; }
}
}
|