diff options
Diffstat (limited to 'src/DotNetOpenAuth.Core')
-rw-r--r-- | src/DotNetOpenAuth.Core/Configuration/MessagingElement.cs | 2 | ||||
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/Channel.cs | 13 | ||||
-rw-r--r-- | src/DotNetOpenAuth.Core/Util.cs | 1 |
3 files changed, 13 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Core/Configuration/MessagingElement.cs b/src/DotNetOpenAuth.Core/Configuration/MessagingElement.cs index 64dfba3..cc7b088 100644 --- a/src/DotNetOpenAuth.Core/Configuration/MessagingElement.cs +++ b/src/DotNetOpenAuth.Core/Configuration/MessagingElement.cs @@ -168,7 +168,7 @@ namespace DotNetOpenAuth.Configuration { } /// <summary> - /// Gets or sets the configuration for the <see cref="UntrustedWebRequestHandler"/> class. + /// Gets or sets the configuration for the UntrustedWebRequestHandler class. /// </summary> /// <value>The untrusted web request.</value> [ConfigurationProperty(UntrustedWebRequestElementName)] diff --git a/src/DotNetOpenAuth.Core/Messaging/Channel.cs b/src/DotNetOpenAuth.Core/Messaging/Channel.cs index b1f47cd..713c0ea 100644 --- a/src/DotNetOpenAuth.Core/Messaging/Channel.cs +++ b/src/DotNetOpenAuth.Core/Messaging/Channel.cs @@ -1,4 +1,10 @@ -namespace DotNetOpenAuth.Messaging { +//----------------------------------------------------------------------- +// <copyright file="Channel.cs" company="Andrew Arnott"> +// Copyright (c) Andrew Arnott. All rights reserved. +// </copyright> +//----------------------------------------------------------------------- + +namespace DotNetOpenAuth.Messaging { using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; @@ -11,6 +17,9 @@ using DotNetOpenAuth.Configuration; using Validation; + /// <summary> + /// Derivation of ChannelBase that adds desktop-specific behavior. + /// </summary> public abstract class Channel : ChannelBase { /// <summary> /// A default set of XML dictionary reader quotas that are relatively safe from causing unbounded memory consumption. @@ -21,7 +30,7 @@ MaxBytesPerRead = 8 * 1024, MaxStringContentLength = 16 * 1024, }; - + /// <summary> /// Initializes a new instance of the <see cref="Channel"/> class. /// </summary> diff --git a/src/DotNetOpenAuth.Core/Util.cs b/src/DotNetOpenAuth.Core/Util.cs index c2b1d7c..afe98dc 100644 --- a/src/DotNetOpenAuth.Core/Util.cs +++ b/src/DotNetOpenAuth.Core/Util.cs @@ -83,6 +83,7 @@ namespace DotNetOpenAuth { string.Join(", ", new string[] { typeof(Page).FullName, typeof(IEmbeddedResourceRetrieval).FullName }))); } } + /// <summary> /// Validates that a URL will be resolvable at runtime. /// </summary> |