From 746f647eedd6f97501fde2544fe44ec62a665e3f Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 23 Jun 2014 19:14:05 +0900 Subject: [PATCH] Refactored HttpBasicIdentity.cs --- websocket-sharp/Net/HttpBasicIdentity.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/websocket-sharp/Net/HttpBasicIdentity.cs b/websocket-sharp/Net/HttpBasicIdentity.cs index 2dfbea36..11a62f8f 100644 --- a/websocket-sharp/Net/HttpBasicIdentity.cs +++ b/websocket-sharp/Net/HttpBasicIdentity.cs @@ -33,16 +33,17 @@ #region Authors /* * Authors: - * Gonzalo Paniagua Javier + * - Gonzalo Paniagua Javier */ #endregion +using System; using System.Security.Principal; namespace WebSocketSharp.Net { /// - /// Holds the user name and password from an HTTP Basic authentication request. + /// Holds the user name and password from an HTTP Basic authentication credentials. /// public class HttpBasicIdentity : GenericIdentity { @@ -65,7 +66,7 @@ namespace WebSocketSharp.Net #region Public Properties /// - /// Gets the password from an HTTP Basic authentication request. + /// Gets the password from an HTTP Basic authentication credentials. /// /// /// A that represents the password.