Fix a few for WebHeaderCollection.cs

This commit is contained in:
sta 2014-05-09 16:00:42 +09:00
parent 53f44a0e0e
commit 4125e4d3e1

View File

@ -690,9 +690,10 @@ namespace WebSocketSharp.Net
/// Gets a collection of header names in the collection. /// Gets a collection of header names in the collection.
/// </summary> /// </summary>
/// <value> /// <value>
/// A <see cref="KeysCollection"/> that contains all header names in the collection. /// A <see cref="NameObjectCollectionBase.KeysCollection"/> that contains all header names
/// in the collection.
/// </value> /// </value>
public override KeysCollection Keys { public override NameObjectCollectionBase.KeysCollection Keys {
get { get {
return base.Keys; return base.Keys;
} }