summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/App_Code/OAuthConsumer.cs
blob: db8f469e8f1e7b4daa9e941afaa7d7f8dcdcc663 (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
30
31
32
33
34
35
36
37
38
39
40
41
//-----------------------------------------------------------------------
// <copyright file="OAuthConsumer.cs" company="Andrew Arnott">
//     Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using DotNetOpenAuth.OAuth.ChannelElements;

public partial class OAuthConsumer : IConsumerDescription {
	#region IConsumerDescription Members

	string IConsumerDescription.Key {
		get { return this.ConsumerKey; }
	}

	string IConsumerDescription.Secret {
		get { return this.ConsumerSecret; }
	}

	System.Security.Cryptography.X509Certificates.X509Certificate2 IConsumerDescription.Certificate {
		get { return null; }
	}

	Uri IConsumerDescription.Callback {
		get { return string.IsNullOrEmpty(this.Callback) ? null : new Uri(this.Callback); }
	}

	DotNetOpenAuth.OAuth.VerificationCodeFormat IConsumerDescription.VerificationCodeFormat {
		get { return this.VerificationCodeFormat; }
	}

	int IConsumerDescription.VerificationCodeLength {
		get { return this.VerificationCodeLength; }
	}

	#endregion
}