diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-04-13 22:27:54 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-04-13 22:27:54 -0700 |
commit | fd3084dd35f7f6ae546d7b1e63ce5a960811fdd0 (patch) | |
tree | e42fb8ce017afd905a5e373c13ae0214372bf513 /src/DotNetOpenAuth.Core | |
parent | 1be87916ca66b4b847c86ae38f07637847fc01bd (diff) | |
download | DotNetOpenAuth-origin/DNOA.Messaging.Portable.zip DotNetOpenAuth-origin/DNOA.Messaging.Portable.tar.gz DotNetOpenAuth-origin/DNOA.Messaging.Portable.tar.bz2 |
Compiler warning fixes.origin/DNOA.Messaging.Portable
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> |