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

SetCreateDateViaParameters_WithInvalidDate_ShouldThrow() private method

        public void SetCreateDateViaParameters_WithInvalidDate_ShouldThrow()
        {
            var cd = new ContentDisposition("inline");
            Assert.Throws<FormatException>(() =>
            {
                cd.Parameters["creation-date"] = InvalidDate;
                //string date = cd.Parameters["creation-date"];
            });
        }