diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-12 18:38:01 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-02-12 18:38:01 -0800 |
commit | befe2ee53f3f1e60397a741765661b340a0162a8 (patch) | |
tree | 0bcc50dca6aa66f972e58f9f77137cac6a460e68 /src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs | |
parent | fb504a4573992f0ef7742f5c34e4e85a945b710c (diff) | |
download | DotNetOpenAuth-befe2ee53f3f1e60397a741765661b340a0162a8.zip DotNetOpenAuth-befe2ee53f3f1e60397a741765661b340a0162a8.tar.gz DotNetOpenAuth-befe2ee53f3f1e60397a741765661b340a0162a8.tar.bz2 |
Added ClientType enum.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2/OAuth2/IClientDescription.cs | 12 |
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> |