Skip to content

Commit 2befe83

Browse files
committed
[Modify] Polish it
1 parent 88b1820 commit 2befe83

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

websocket-sharp/Net/AuthenticationSchemes.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
/*
33
* AuthenticationSchemes.cs
44
*
5-
* This code is derived from System.Net.AuthenticationSchemes.cs of Mono
5+
* This code is derived from AuthenticationSchemes.cs (System.Net) of Mono
66
* (http://www.mono-project.com).
77
*
88
* The MIT License
99
*
1010
* Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
11-
* Copyright (c) 2012-2014 sta.blockhead
11+
* Copyright (c) 2012-2016 sta.blockhead
1212
*
1313
* Permission is hereby granted, free of charge, to any person obtaining a copy
1414
* of this software and associated documentation files (the "Software"), to deal
@@ -42,25 +42,25 @@
4242
namespace WebSocketSharp.Net
4343
{
4444
/// <summary>
45-
/// Contains the values of the schemes for authentication.
45+
/// Specifies the scheme for authentication.
4646
/// </summary>
4747
[Flags]
4848
public enum AuthenticationSchemes
4949
{
5050
/// <summary>
51-
/// Indicates that no authentication is allowed.
51+
/// No authentication is allowed.
5252
/// </summary>
5353
None,
5454
/// <summary>
55-
/// Indicates digest authentication.
55+
/// Specifies digest authentication.
5656
/// </summary>
5757
Digest = 1,
5858
/// <summary>
59-
/// Indicates basic authentication.
59+
/// Specifies basic authentication.
6060
/// </summary>
6161
Basic = 8,
6262
/// <summary>
63-
/// Indicates anonymous authentication.
63+
/// Specifies anonymous authentication.
6464
/// </summary>
6565
Anonymous = 0x8000
6666
}

0 commit comments

Comments
 (0)