Example #1
0
 public static void ContentDispositionHeader(HttpResponseMessage response, string expectedValue)
 {
     Assert.IsNotNull(response);
     Assert.IsNotNull(HttpResponseParsers.GetContentDisposition(response));
     Assert.AreEqual(expectedValue, HttpResponseParsers.GetContentDisposition(response));
 }