diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-20 18:48:06 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-20 18:48:06 -0700 |
commit | fb22d5ee1d3cbdb74f4b826dcad91af1445757af (patch) | |
tree | 3386af42ced256e84c95e8ee3eb67db19a8207f8 /src | |
parent | 231ef6422d1b1cd9246b970431bb53001b032b81 (diff) | |
download | DotNetOpenAuth-fb22d5ee1d3cbdb74f4b826dcad91af1445757af.zip DotNetOpenAuth-fb22d5ee1d3cbdb74f4b826dcad91af1445757af.tar.gz DotNetOpenAuth-fb22d5ee1d3cbdb74f4b826dcad91af1445757af.tar.bz2 |
Fixes some C# and StyleCop warnings.
Diffstat (limited to 'src')
4 files changed, 6 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/Configuration/TypeConfigurationCollection.cs b/src/DotNetOpenAuth/Configuration/TypeConfigurationCollection.cs index 00eeb15..f8813b5 100644 --- a/src/DotNetOpenAuth/Configuration/TypeConfigurationCollection.cs +++ b/src/DotNetOpenAuth/Configuration/TypeConfigurationCollection.cs @@ -14,7 +14,7 @@ namespace DotNetOpenAuth.Configuration { using DotNetOpenAuth.Messaging; /// <summary> - /// A collection of <see cref="TypeConfigurationElement"/>. + /// A collection of <see cref="TypeConfigurationElement<T>"/>. /// </summary> /// <typeparam name="T">The type that all types specified in the elements must derive from.</typeparam> [ContractVerification(true)] diff --git a/src/DotNetOpenAuth/OpenId/ChannelElements/IOpenIdExtensionFactory.cs b/src/DotNetOpenAuth/OpenId/ChannelElements/IOpenIdExtensionFactory.cs index 31223a0..762fc9a 100644 --- a/src/DotNetOpenAuth/OpenId/ChannelElements/IOpenIdExtensionFactory.cs +++ b/src/DotNetOpenAuth/OpenId/ChannelElements/IOpenIdExtensionFactory.cs @@ -8,6 +8,8 @@ namespace DotNetOpenAuth.OpenId.ChannelElements { using System.Collections.Generic; using DotNetOpenAuth.Messaging; using DotNetOpenAuth.OpenId.Messages; + using DotNetOpenAuth.OpenId.Provider; + using DotNetOpenAuth.OpenId.RelyingParty; /// <summary> /// OpenID extension factory class for creating extensions based on received Type URIs. diff --git a/src/DotNetOpenAuth/OpenId/Messages/IOpenIdMessageExtension.cs b/src/DotNetOpenAuth/OpenId/Messages/IOpenIdMessageExtension.cs index 131b4ea..95080e6 100644 --- a/src/DotNetOpenAuth/OpenId/Messages/IOpenIdMessageExtension.cs +++ b/src/DotNetOpenAuth/OpenId/Messages/IOpenIdMessageExtension.cs @@ -16,7 +16,7 @@ namespace DotNetOpenAuth.OpenId.Messages { /// </summary> /// <remarks> /// Classes that implement this interface should be marked as - /// [<see cref="Serializable"/>] to allow serializing state servers + /// [<see cref="SerializableAttribute"/>] to allow serializing state servers /// to cache messages, particularly responses. /// </remarks> public interface IOpenIdMessageExtension : IExtensionMessage { diff --git a/src/DotNetOpenAuth/OpenId/OpenIdUtilities.cs b/src/DotNetOpenAuth/OpenId/OpenIdUtilities.cs index 3c5f00d..f09bbe1 100644 --- a/src/DotNetOpenAuth/OpenId/OpenIdUtilities.cs +++ b/src/DotNetOpenAuth/OpenId/OpenIdUtilities.cs @@ -16,6 +16,8 @@ namespace DotNetOpenAuth.OpenId { using DotNetOpenAuth.Messaging; using DotNetOpenAuth.OpenId.ChannelElements; using DotNetOpenAuth.OpenId.Extensions; + using DotNetOpenAuth.OpenId.Provider; + using DotNetOpenAuth.OpenId.RelyingParty; /// <summary> /// A set of utilities especially useful to OpenID. |