From 2befe83d7ddb4d731f6240c05263fe0be25cb78e Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 21 Feb 2016 15:40:52 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/AuthenticationSchemes.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/websocket-sharp/Net/AuthenticationSchemes.cs b/websocket-sharp/Net/AuthenticationSchemes.cs index af0efb17..e8cd4957 100644 --- a/websocket-sharp/Net/AuthenticationSchemes.cs +++ b/websocket-sharp/Net/AuthenticationSchemes.cs @@ -2,13 +2,13 @@ /* * AuthenticationSchemes.cs * - * This code is derived from System.Net.AuthenticationSchemes.cs of Mono + * This code is derived from AuthenticationSchemes.cs (System.Net) of Mono * (http://www.mono-project.com). * * The MIT License * * Copyright (c) 2005 Novell, Inc. (http://www.novell.com) - * Copyright (c) 2012-2014 sta.blockhead + * Copyright (c) 2012-2016 sta.blockhead * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -42,25 +42,25 @@ using System; namespace WebSocketSharp.Net { /// - /// Contains the values of the schemes for authentication. + /// Specifies the scheme for authentication. /// [Flags] public enum AuthenticationSchemes { /// - /// Indicates that no authentication is allowed. + /// No authentication is allowed. /// None, /// - /// Indicates digest authentication. + /// Specifies digest authentication. /// Digest = 1, /// - /// Indicates basic authentication. + /// Specifies basic authentication. /// Basic = 8, /// - /// Indicates anonymous authentication. + /// Specifies anonymous authentication. /// Anonymous = 0x8000 }