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/Messaging | |
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/Messaging')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/Channel.cs | 13 |
1 files changed, 11 insertions, 2 deletions
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> |