[Modify] Rename it

This commit is contained in:
sta 2019-02-26 21:21:13 +09:00
parent f796e0307c
commit 2d449f8622

View File

@ -79,7 +79,7 @@ namespace WebSocketSharp.Net
private static readonly char[] _reservedCharsForName; private static readonly char[] _reservedCharsForName;
private static readonly char[] _reservedCharsForValue; private static readonly char[] _reservedCharsForValue;
private bool _secure; private bool _secure;
private DateTime _timestamp; private DateTime _timeStamp;
private string _value; private string _value;
private int _version; private int _version;
@ -107,7 +107,7 @@ namespace WebSocketSharp.Net
_expires = DateTime.MinValue; _expires = DateTime.MinValue;
_name = String.Empty; _name = String.Empty;
_path = String.Empty; _path = String.Empty;
_timestamp = DateTime.Now; _timeStamp = DateTime.Now;
_value = String.Empty; _value = String.Empty;
_version = 0; _version = 0;
} }
@ -582,7 +582,7 @@ namespace WebSocketSharp.Net
/// </value> /// </value>
public DateTime TimeStamp { public DateTime TimeStamp {
get { get {
return _timestamp; return _timeStamp;
} }
} }