blob: 20a1cccb03cb959609878d7628382a3e1666bced (
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
|
namespace WebFormsRelyingParty {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Web;
using DotNetOpenAuth.OAuth;
using DotNetOpenAuth.OAuth.ChannelElements;
public partial class Consumer : IConsumerDescription {
public VerificationCodeFormat VerificationCodeFormat {
get { return (VerificationCodeFormat)this.VerificationCodeFormatAsInt; }
set { this.VerificationCodeFormatAsInt = (int)value; }
}
public X509Certificate2 Certificate {
get { return this.X509CertificateAsBinary != null ? new X509Certificate2(this.X509CertificateAsBinary) : null; }
set { this.X509CertificateAsBinary = value != null ? value.RawData : null; }
}
public Uri Callback {
get { return this.CallbackAsString != null ? new Uri(this.CallbackAsString) : null; }
set { this.CallbackAsString = value != null ? value.AbsoluteUri : null; }
}
string IConsumerDescription.Secret {
get { return this.ConsumerSecret; }
}
string IConsumerDescription.Key {
get { return this.ConsumerKey; }
}
}
}
|