summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-12-24 21:50:53 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-12-24 21:50:53 -0800
commitd1117cb60e58b3d5a1afed1867a14d405b223177 (patch)
treec40188494c7814c8e63d825eab0352c3c2ac819a
parent556bb4012e2b9d5801ee997afa30053ff996141b (diff)
downloadDotNetOpenAuth-d1117cb60e58b3d5a1afed1867a14d405b223177.zip
DotNetOpenAuth-d1117cb60e58b3d5a1afed1867a14d405b223177.tar.gz
DotNetOpenAuth-d1117cb60e58b3d5a1afed1867a14d405b223177.tar.bz2
Fixed StyleCop messages.
-rw-r--r--projecttemplates/RelyingPartyLogic/NonceDbStore.cs2
-rw-r--r--samples/DotNetOpenAuth.ApplicationBlock/Util.cs2
-rw-r--r--src/DotNetOpenAuth/Messaging/EnumerableCache.cs4
-rw-r--r--src/DotNetOpenAuth/Messaging/MessagingUtilities.cs2
-rw-r--r--src/DotNetOpenAuth/Messaging/Reflection/MessageDescriptionCollection.cs2
-rw-r--r--src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs2
-rw-r--r--src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs2
-rw-r--r--src/DotNetOpenAuth/OpenId/HostMetaDiscoveryService.cs2
-rw-r--r--src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdLogin.cs2
-rw-r--r--src/DotNetOpenAuth/OpenId/UriIdentifier.cs4
-rw-r--r--src/DotNetOpenAuth/Reporting.cs4
-rw-r--r--src/DotNetOpenAuth/Util.cs2
12 files changed, 15 insertions, 15 deletions
diff --git a/projecttemplates/RelyingPartyLogic/NonceDbStore.cs b/projecttemplates/RelyingPartyLogic/NonceDbStore.cs
index 951bf0f..812a4d5 100644
--- a/projecttemplates/RelyingPartyLogic/NonceDbStore.cs
+++ b/projecttemplates/RelyingPartyLogic/NonceDbStore.cs
@@ -101,7 +101,7 @@ namespace RelyingPartyLogic {
/// </summary>
protected class TransactedDatabaseEntities : DatabaseEntities {
/// <summary>
- /// Initializes a new instance of the <see cref="TransactedDatabaseEntities"/> class.
+ /// Initializes a new instance of the <see cref="NonceDbStore.TransactedDatabaseEntities"/> class.
/// </summary>
/// <param name="isolationLevel">The isolation level.</param>
public TransactedDatabaseEntities(IsolationLevel isolationLevel) {
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/Util.cs b/samples/DotNetOpenAuth.ApplicationBlock/Util.cs
index 0bec372..4b4113d 100644
--- a/samples/DotNetOpenAuth.ApplicationBlock/Util.cs
+++ b/samples/DotNetOpenAuth.ApplicationBlock/Util.cs
@@ -124,7 +124,7 @@
private readonly Action<HttpWebRequest> action;
/// <summary>
- /// Initializes a new instance of the <see cref="WrappingWebRequestHandler"/> class.
+ /// Initializes a new instance of the <see cref="Util.WrappingWebRequestHandler"/> class.
/// </summary>
/// <param name="wrappedHandler">The HTTP handler to wrap.</param>
/// <param name="action">The action to perform on outgoing HTTP requests.</param>
diff --git a/src/DotNetOpenAuth/Messaging/EnumerableCache.cs b/src/DotNetOpenAuth/Messaging/EnumerableCache.cs
index 29ec533..a606675 100644
--- a/src/DotNetOpenAuth/Messaging/EnumerableCache.cs
+++ b/src/DotNetOpenAuth/Messaging/EnumerableCache.cs
@@ -79,7 +79,7 @@ namespace DotNetOpenAuth.Messaging {
private object generatorLock = new object();
/// <summary>
- /// Initializes a new instance of the EnumerableCache class.
+ /// Initializes a new instance of the EnumerableCacheExtensions.EnumerableCache class.
/// </summary>
/// <param name="generator">The generator.</param>
internal EnumerableCache(IEnumerable<T> generator) {
@@ -137,7 +137,7 @@ namespace DotNetOpenAuth.Messaging {
private int cachePosition = -1;
/// <summary>
- /// Initializes a new instance of the <see cref="EnumeratorCache"/> class.
+ /// Initializes a new instance of the EnumerableCacheExtensions.EnumerableCache.EnumeratorCache class.
/// </summary>
/// <param name="parent">The parent cached enumerable whose GetEnumerator method is calling this constructor.</param>
internal EnumeratorCache(EnumerableCache<T> parent) {
diff --git a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs
index 6518971..402db28 100644
--- a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs
+++ b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs
@@ -1462,7 +1462,7 @@ namespace DotNetOpenAuth.Messaging {
private Comparison<T> comparison;
/// <summary>
- /// Initializes a new instance of the ComparisonHelper class.
+ /// Initializes a new instance of the MessagingUtilities.ComparisonHelper class.
/// </summary>
/// <param name="comparison">The comparison method to use.</param>
internal ComparisonHelper(Comparison<T> comparison) {
diff --git a/src/DotNetOpenAuth/Messaging/Reflection/MessageDescriptionCollection.cs b/src/DotNetOpenAuth/Messaging/Reflection/MessageDescriptionCollection.cs
index 754b9d0..ab73b10 100644
--- a/src/DotNetOpenAuth/Messaging/Reflection/MessageDescriptionCollection.cs
+++ b/src/DotNetOpenAuth/Messaging/Reflection/MessageDescriptionCollection.cs
@@ -137,7 +137,7 @@ namespace DotNetOpenAuth.Messaging.Reflection {
private readonly Version version;
/// <summary>
- /// Initializes a new instance of the <see cref="MessageTypeAndVersion"/> struct.
+ /// Initializes a new instance of the <see cref="MessageDescriptionCollection.MessageTypeAndVersion"/> struct.
/// </summary>
/// <param name="messageType">Type of the message.</param>
/// <param name="messageVersion">The message version.</param>
diff --git a/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs b/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs
index 370192a..9721b37 100644
--- a/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs
+++ b/src/DotNetOpenAuth/OpenId/ChannelElements/ReturnToNonceBindingElement.cs
@@ -224,7 +224,7 @@ namespace DotNetOpenAuth.OpenId.ChannelElements {
private byte[] randomPart;
/// <summary>
- /// Initializes a new instance of the <see cref="CustomNonce"/> class.
+ /// Initializes a new instance of the <see cref="ReturnToNonceBindingElement.CustomNonce"/> class.
/// </summary>
/// <param name="creationDate">The creation date of the nonce.</param>
/// <param name="randomPart">The random bits that help make the nonce unique.</param>
diff --git a/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs b/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs
index 249f1f3..4e12619 100644
--- a/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs
+++ b/src/DotNetOpenAuth/OpenId/DiffieHellmanUtilities.cs
@@ -123,7 +123,7 @@ namespace DotNetOpenAuth.OpenId {
/// </summary>
private class DHSha {
/// <summary>
- /// Initializes a new instance of the <see cref="DHSha"/> class.
+ /// Initializes a new instance of the <see cref="DiffieHellmanUtilities.DHSha"/> class.
/// </summary>
/// <param name="algorithm">The hashing algorithm used in this particular Diffie-Hellman session type.</param>
/// <param name="getName">A function that will return the value of the openid.session_type parameter for a given version of OpenID.</param>
diff --git a/src/DotNetOpenAuth/OpenId/HostMetaDiscoveryService.cs b/src/DotNetOpenAuth/OpenId/HostMetaDiscoveryService.cs
index ba9852e..0bc1aa3 100644
--- a/src/DotNetOpenAuth/OpenId/HostMetaDiscoveryService.cs
+++ b/src/DotNetOpenAuth/OpenId/HostMetaDiscoveryService.cs
@@ -434,7 +434,7 @@ namespace DotNetOpenAuth.OpenId {
[SuppressMessage("Microsoft.Design", "CA1034:NestedTypesShouldNotBeVisible", Justification = "By design")]
public class HostMetaProxy {
/// <summary>
- /// Initializes a new instance of the <see cref="HostMetaProxy"/> class.
+ /// Initializes a new instance of the <see cref="HostMetaDiscoveryService.HostMetaProxy"/> class.
/// </summary>
/// <param name="proxyFormat">The proxy formatting string.</param>
/// <param name="signingHostFormat">The signing host formatting string.</param>
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdLogin.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdLogin.cs
index 5128599..3f2b196 100644
--- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdLogin.cs
+++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdLogin.cs
@@ -975,7 +975,7 @@ idselector_input_id = '" + this.ClientID + @"';
private OpenIdLogin renderControl;
/// <summary>
- /// Initializes a new instance of the <see cref="InPlaceControl"/> class.
+ /// Initializes a new instance of the <see cref="OpenIdLogin.InPlaceControl"/> class.
/// </summary>
/// <param name="renderControl">The render control.</param>
internal InPlaceControl(OpenIdLogin renderControl) {
diff --git a/src/DotNetOpenAuth/OpenId/UriIdentifier.cs b/src/DotNetOpenAuth/OpenId/UriIdentifier.cs
index 48ed7f2..ffd8d13 100644
--- a/src/DotNetOpenAuth/OpenId/UriIdentifier.cs
+++ b/src/DotNetOpenAuth/OpenId/UriIdentifier.cs
@@ -543,7 +543,7 @@ namespace DotNetOpenAuth.OpenId {
private static readonly char[] PathEndingCharacters = new char[] { '?', '#' };
/// <summary>
- /// Initializes a new instance of the <see cref="SimpleUri"/> class.
+ /// Initializes a new instance of the <see cref="UriIdentifier.SimpleUri"/> class.
/// </summary>
/// <param name="value">The value.</param>
internal SimpleUri(string value) {
@@ -691,7 +691,7 @@ namespace DotNetOpenAuth.OpenId {
private string standardScheme;
/// <summary>
- /// Initializes a new instance of the <see cref="NonPathCompressingUriParser"/> class.
+ /// Initializes a new instance of the <see cref="UriIdentifier.NonPathCompressingUriParser"/> class.
/// </summary>
/// <param name="standardScheme">The standard scheme that this parser will be subverting.</param>
public NonPathCompressingUriParser(string standardScheme)
diff --git a/src/DotNetOpenAuth/Reporting.cs b/src/DotNetOpenAuth/Reporting.cs
index 2f93416..03d7460 100644
--- a/src/DotNetOpenAuth/Reporting.cs
+++ b/src/DotNetOpenAuth/Reporting.cs
@@ -652,7 +652,7 @@ namespace DotNetOpenAuth {
private bool dirty;
/// <summary>
- /// Initializes a new instance of the <see cref="PersistentHashSet"/> class.
+ /// Initializes a new instance of the <see cref="Reporting.PersistentHashSet"/> class.
/// </summary>
/// <param name="storage">The storage location.</param>
/// <param name="fileName">Name of the file.</param>
@@ -798,7 +798,7 @@ namespace DotNetOpenAuth {
private bool dirty;
/// <summary>
- /// Initializes a new instance of the <see cref="PersistentCounter"/> class.
+ /// Initializes a new instance of the <see cref="Reporting.PersistentCounter"/> class.
/// </summary>
/// <param name="storage">The storage location.</param>
/// <param name="fileName">Name of the file.</param>
diff --git a/src/DotNetOpenAuth/Util.cs b/src/DotNetOpenAuth/Util.cs
index 0317c4d..e04533c 100644
--- a/src/DotNetOpenAuth/Util.cs
+++ b/src/DotNetOpenAuth/Util.cs
@@ -204,7 +204,7 @@ namespace DotNetOpenAuth {
private readonly Func<T, string> toString;
/// <summary>
- /// Initializes a new instance of the DelayedToString class.
+ /// Initializes a new instance of the Util.DelayedToString class.
/// </summary>
/// <param name="obj">The object that may be serialized to string form.</param>
/// <param name="toString">The method that will serialize the object if called upon.</param>