summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-04-26 18:57:42 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-04-26 18:57:42 -0700
commit2d10888fe24b4ab9407e016ced20ae56622b15af (patch)
tree8a902072739e65b853033bbbebf1af063bad7f2d /src
parented8e510edf71df2cda6dd18e263540626b3537ae (diff)
downloadDotNetOpenAuth-2d10888fe24b4ab9407e016ced20ae56622b15af.zip
DotNetOpenAuth-2d10888fe24b4ab9407e016ced20ae56622b15af.tar.gz
DotNetOpenAuth-2d10888fe24b4ab9407e016ced20ae56622b15af.tar.bz2
Stylecop fixes.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/OpenId/Provider/AuthenticationRequest.cs7
-rw-r--r--src/DotNetOpenAuth/OpenId/Provider/IAuthenticationRequest.cs87
2 files changed, 0 insertions, 94 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Provider/AuthenticationRequest.cs b/src/DotNetOpenAuth/OpenId/Provider/AuthenticationRequest.cs
index b1eac93..e388737 100644
--- a/src/DotNetOpenAuth/OpenId/Provider/AuthenticationRequest.cs
+++ b/src/DotNetOpenAuth/OpenId/Provider/AuthenticationRequest.cs
@@ -6,16 +6,9 @@
namespace DotNetOpenAuth.OpenId.Provider {
using System;
- using System.Collections.Generic;
- using System.Linq;
using System.Net;
- using System.Text;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId.Messages;
- using System.Diagnostics.Contracts;
- using DotNetOpenAuth.OpenId.Extensions.SimpleRegistration;
- using DotNetOpenAuth.OpenId.Extensions.AttributeExchange;
- using System.Security.Cryptography;
/// <summary>
/// Implements the <see cref="IAuthenticationRequest"/> interface
diff --git a/src/DotNetOpenAuth/OpenId/Provider/IAuthenticationRequest.cs b/src/DotNetOpenAuth/OpenId/Provider/IAuthenticationRequest.cs
index ca299fc..cd2a2b0 100644
--- a/src/DotNetOpenAuth/OpenId/Provider/IAuthenticationRequest.cs
+++ b/src/DotNetOpenAuth/OpenId/Provider/IAuthenticationRequest.cs
@@ -6,18 +6,13 @@
namespace DotNetOpenAuth.OpenId.Provider {
using System;
- using System.Collections.Generic;
- using System.Text;
using DotNetOpenAuth.Messaging;
- using System.Diagnostics.Contracts;
- using DotNetOpenAuth.OpenId.Messages;
/// <summary>
/// Instances of this interface represent incoming authentication requests.
/// This interface provides the details of the request and allows setting
/// the response.
/// </summary>
- [ContractClass(typeof(IAuthenticationRequestContract))]
public interface IAuthenticationRequest : IRequest {
/// <summary>
/// Gets the version of OpenID being used by the relying party that sent the request.
@@ -126,86 +121,4 @@ namespace DotNetOpenAuth.OpenId.Provider {
/// </remarks>
bool IsReturnUrlDiscoverable(IDirectWebRequestHandler requestHandler);
}
-
- [ContractClassFor(typeof(IAuthenticationRequest))]
- internal abstract class IAuthenticationRequestContract : IAuthenticationRequest {
- #region IAuthenticationRequest Members
-
- ProtocolVersion IAuthenticationRequest.RelyingPartyVersion {
- get { throw new NotImplementedException(); }
- }
-
- bool IAuthenticationRequest.Immediate {
- get { throw new NotImplementedException(); }
- }
-
- Realm IAuthenticationRequest.Realm {
- get { throw new NotImplementedException(); }
- }
-
- bool IAuthenticationRequest.IsDirectedIdentity {
- get { throw new NotImplementedException(); }
- }
-
- bool IAuthenticationRequest.IsDelegatedIdentifier {
- get { throw new NotImplementedException(); }
- }
-
- Identifier IAuthenticationRequest.LocalIdentifier {
- get {
- throw new NotImplementedException();
- }
- set {
- throw new NotImplementedException();
- }
- }
-
- Identifier IAuthenticationRequest.ClaimedIdentifier {
- get {
- throw new NotImplementedException();
- }
- set {
- throw new NotImplementedException();
- }
- }
-
- bool? IAuthenticationRequest.IsAuthenticated {
- get {
- throw new NotImplementedException();
- }
- set {
- throw new NotImplementedException();
- }
- }
-
- void IAuthenticationRequest.SetClaimedIdentifierFragment(string fragment) {
- throw new NotImplementedException();
- }
-
- bool IAuthenticationRequest.IsReturnUrlDiscoverable(IDirectWebRequestHandler requestHandler) {
- throw new NotImplementedException();
- }
-
- #endregion
-
- #region IRequest Members
-
- bool IRequest.IsResponseReady {
- get { throw new NotImplementedException(); }
- }
-
- void IRequest.AddResponseExtension(IOpenIdMessageExtension extension) {
- throw new NotImplementedException();
- }
-
- T IRequest.GetExtension<T>() {
- throw new NotImplementedException();
- }
-
- IOpenIdMessageExtension IRequest.GetExtension(Type extensionType) {
- throw new NotImplementedException();
- }
-
- #endregion
- }
}