blob: 341afd46b94fc4ff5354bf20d376d7f82f6cf92b (
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
42
43
|
//-----------------------------------------------------------------------
// <copyright file="OAuthConsumer.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace OAuthServiceProvider.Code {
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
}
}
|