From 2d449f8622d79891774286e5fddef33a31953edf Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 26 Feb 2019 21:21:13 +0900 Subject: [PATCH] [Modify] Rename it --- websocket-sharp/Net/Cookie.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/websocket-sharp/Net/Cookie.cs b/websocket-sharp/Net/Cookie.cs index cef14b0b..ae207753 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -79,7 +79,7 @@ namespace WebSocketSharp.Net private static readonly char[] _reservedCharsForName; private static readonly char[] _reservedCharsForValue; private bool _secure; - private DateTime _timestamp; + private DateTime _timeStamp; private string _value; private int _version; @@ -107,7 +107,7 @@ namespace WebSocketSharp.Net _expires = DateTime.MinValue; _name = String.Empty; _path = String.Empty; - _timestamp = DateTime.Now; + _timeStamp = DateTime.Now; _value = String.Empty; _version = 0; } @@ -582,7 +582,7 @@ namespace WebSocketSharp.Net /// public DateTime TimeStamp { get { - return _timestamp; + return _timeStamp; } }