本文整理汇总了C#中Response.AsAttachment方法的典型用法代码示例。如果您正苦于以下问题:C# Response.AsAttachment方法的具体用法?C# Response.AsAttachment怎么用?C# Response.AsAttachment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Response
的用法示例。
在下文中一共展示了Response.AsAttachment方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Should_have_filename_in_content_disposition_header
public void Should_have_filename_in_content_disposition_header()
{
var response = new Response();
var result = response.AsAttachment("testing.html", "text/html");
result.Headers["Content-Disposition"].ShouldContain("testing.html");
}
示例2: Should_not_allow_null_filename_on_generic_responses_as_attachments
public void Should_not_allow_null_filename_on_generic_responses_as_attachments()
{
var response = new Response();
var result = Record.Exception(() => response.AsAttachment(null, "text/html"));
result.ShouldBeOfType(typeof(ArgumentException));
}
示例3: Should_not_set_content_type_for_attachment_if_null
public void Should_not_set_content_type_for_attachment_if_null()
{
var response = new Response();
response.ContentType = "test/test";
var result = response.AsAttachment("testing.html");
result.ContentType.ShouldEqual("test/test");
}
示例4: Should_allow_overriding_of_content_type_for_attachments
public void Should_allow_overriding_of_content_type_for_attachments()
{
var response = new Response();
response.ContentType = "test/test";
var result = response.AsAttachment("testing.html", "text/html");
result.ContentType.ShouldEqual("text/html");
}
示例5: Should_add_content_disposition_header_for_attachments
public void Should_add_content_disposition_header_for_attachments()
{
var response = new Response();
var result = response.AsAttachment("testing.html", "text/html");
result.Headers.ShouldNotBeNull();
result.Headers.ContainsKey("Content-Disposition").ShouldBeTrue();
}