System.Net.Mime.Tests.ContentDispositionTest.GetViaDateTimeProperty_WithOtherTime_ShouldSetDateTimeKindAppropriately C# (CSharp) Method

GetViaDateTimeProperty_WithOtherTime_ShouldSetDateTimeKindAppropriately() private method

        public void GetViaDateTimeProperty_WithOtherTime_ShouldSetDateTimeKindAppropriately()
        {
            var cd = new ContentDisposition("inline");
            cd.Parameters["creation-date"] = ValidDateUnspecified;

            Assert.Equal(DateTimeKind.Unspecified, cd.CreationDate.Kind);
        }