File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 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
4242namespace 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 }
You can’t perform that action at this time.
0 commit comments