diff options
Diffstat (limited to 'src/DotNetOAuth.Test/OAuth/ConsumerDescription.cs')
-rw-r--r-- | src/DotNetOAuth.Test/OAuth/ConsumerDescription.cs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/DotNetOAuth.Test/OAuth/ConsumerDescription.cs b/src/DotNetOAuth.Test/OAuth/ConsumerDescription.cs deleted file mode 100644 index 7043a2f..0000000 --- a/src/DotNetOAuth.Test/OAuth/ConsumerDescription.cs +++ /dev/null @@ -1,38 +0,0 @@ -//-----------------------------------------------------------------------
-// <copyright file="ConsumerDescription.cs" company="Andrew Arnott">
-// Copyright (c) Andrew Arnott. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace DotNetOAuth.Test.OAuth {
- /// <summary>
- /// Information necessary to initialize a <see cref="Consumer"/>,
- /// and to tell a <see cref="ServiceProvider"/> about it.
- /// </summary>
- /// <remarks>
- /// Immutable.
- /// </remarks>
- internal class ConsumerDescription {
- /// <summary>
- /// Initializes a new instance of the <see cref="ConsumerDescription"/> class.
- /// </summary>
- /// <param name="key">The consumer key.</param>
- /// <param name="secret">The consumer secret.</param>
- internal ConsumerDescription(string key, string secret) {
- this.ConsumerKey = key;
- this.ConsumerSecret = secret;
- }
-
- /// <summary>
- /// Gets the consumer key.
- /// </summary>
- /// <value>The consumer key.</value>
- internal string ConsumerKey { get; private set; }
-
- /// <summary>
- /// Gets the consumer secret.
- /// </summary>
- /// <value>The consumer secret.</value>
- internal string ConsumerSecret { get; private set; }
- }
-}
|