blob: 9b3f8c21cb5f37f755cd8de70446ed5c48512331 (
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="IOpenAuthDataProvider.cs" company="Microsoft">
// Copyright (c) Microsoft. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.AspNet {
/// <summary>
/// The i open auth data provider.
/// </summary>
public interface IOpenAuthDataProvider {
#region Public Methods and Operators
/// <summary>
/// The get user name from open auth.
/// </summary>
/// <param name="openAuthProvider">
/// The open auth provider.
/// </param>
/// <param name="openAuthId">
/// The open auth id.
/// </param>
/// <returns>
/// The get user name from open auth.
/// </returns>
string GetUserNameFromOpenAuth(string openAuthProvider, string openAuthId);
#endregion
}
}
|