System.Net.Http.Tests.HttpContentHeadersTest.LastModified_UseAddMethod_AddedValueCanBeRetrievedUsingProperty C# (CSharp) Method

LastModified_UseAddMethod_AddedValueCanBeRetrievedUsingProperty() private method

        public void LastModified_UseAddMethod_AddedValueCanBeRetrievedUsingProperty()
        {
            _headers.TryAddWithoutValidation("Last-Modified", "  Sun, 06 Nov 1994 08:49:37 GMT  ");
            Assert.Equal(new DateTimeOffset(1994, 11, 6, 8, 49, 37, TimeSpan.Zero), _headers.LastModified);

            _headers.Clear();
            _headers.TryAddWithoutValidation("Last-Modified", "Sun, 06 Nov 1994 08:49:37 GMT");
            Assert.Equal(new DateTimeOffset(1994, 11, 6, 8, 49, 37, TimeSpan.Zero), _headers.LastModified);
        }
HttpContentHeadersTest