System.Net.Http.Tests.HttpContentHeadersTest.LastModified_UseAddMethod_AddedValueCanBeRetrievedUsingProperty C# (CSharp) Метод

LastModified_UseAddMethod_AddedValueCanBeRetrievedUsingProperty() приватный Метод

private LastModified_UseAddMethod_AddedValueCanBeRetrievedUsingProperty ( ) : void
Результат void
        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