Refactored HttpBasicIdentity.cs

This commit is contained in:
sta 2014-06-23 19:14:05 +09:00
parent 5ab0abac8f
commit 746f647eed

View File

@ -33,16 +33,17 @@
#region Authors #region Authors
/* /*
* Authors: * Authors:
* Gonzalo Paniagua Javier <gonzalo@novell.com> * - Gonzalo Paniagua Javier <gonzalo@novell.com>
*/ */
#endregion #endregion
using System;
using System.Security.Principal; using System.Security.Principal;
namespace WebSocketSharp.Net namespace WebSocketSharp.Net
{ {
/// <summary> /// <summary>
/// Holds the user name and password from an HTTP Basic authentication request. /// Holds the user name and password from an HTTP Basic authentication credentials.
/// </summary> /// </summary>
public class HttpBasicIdentity : GenericIdentity public class HttpBasicIdentity : GenericIdentity
{ {
@ -65,7 +66,7 @@ namespace WebSocketSharp.Net
#region Public Properties #region Public Properties
/// <summary> /// <summary>
/// Gets the password from an HTTP Basic authentication request. /// Gets the password from an HTTP Basic authentication credentials.
/// </summary> /// </summary>
/// <value> /// <value>
/// A <see cref="string"/> that represents the password. /// A <see cref="string"/> that represents the password.