summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs b/src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs
index 84eb6b6..d30151b 100644
--- a/src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs
+++ b/src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs
@@ -27,6 +27,11 @@ namespace DotNetOpenAuth.OAuth2 {
Uri DefaultCallback { get; }
/// <summary>
+ /// Gets the type of the client.
+ /// </summary>
+ ClientType ClientType { get; }
+
+ /// <summary>
/// Determines whether a callback URI included in a client's authorization request
/// is among those allowed callbacks for the registered client.
/// </summary>
@@ -69,6 +74,13 @@ namespace DotNetOpenAuth.OAuth2 {
}
/// <summary>
+ /// Gets the type of the client.
+ /// </summary>
+ ClientType IClientDescription.ClientType {
+ get { throw new NotImplementedException(); }
+ }
+
+ /// <summary>
/// Gets the callback to use when an individual authorization request
/// does not include an explicit callback URI.
/// </summary>