blob: 12557178081693ffa0a13502605188f947f424e5 (
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 this.Callback != null ? new Uri(this.Callback) : null; }
}
DotNetOpenAuth.OAuth.VerificationCodeFormat IConsumerDescription.VerificationCodeFormat {
get { return this.VerificationCodeFormat; }
}
int IConsumerDescription.VerificationCodeLength {
get { return this.VerificationCodeLength; }
}
#endregion
}
|