Results.Bytes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Bytes(Byte[], String, String, Boolean, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- Results.cs
将字节数组内容写入响应。
如果范围) 不满意,Status206PartialContentStatus416RangeNotSatisfiable则支持 (范围请求。
此 API 是 的 File(Byte[], String, String, Boolean, Nullable<DateTimeOffset>, EntityTagHeaderValue)别名。
public static Microsoft.AspNetCore.Http.IResult Bytes (byte[] contents, string? contentType = default, string? fileDownloadName = default, bool enableRangeProcessing = false, DateTimeOffset? lastModified = default, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = default);
static member Bytes : byte[] * string * string * bool * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Http.IResult
Public Shared Function Bytes (contents As Byte(), Optional contentType As String = Nothing, Optional fileDownloadName As String = Nothing, Optional enableRangeProcessing As Boolean = false, Optional lastModified As Nullable(Of DateTimeOffset) = Nothing, Optional entityTag As EntityTagHeaderValue = Nothing) As IResult
参数
- contents
- Byte[]
文件内容。
- contentType
- String
文件的 Content-Type。
- fileDownloadName
- String
建议的文件名。
- enableRangeProcessing
- Boolean
设置为 以 true
启用范围请求处理。
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset上次修改文件时的 。
- entityTag
- EntityTagHeaderValue
EntityTagHeaderValue与文件关联的 。
返回
为响应创建的 IResult 。
适用于
Bytes(ReadOnlyMemory<Byte>, String, String, Boolean, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- Results.cs
将字节数组内容写入响应。
如果范围) 不满意,Status206PartialContentStatus416RangeNotSatisfiable则支持 (范围请求。
public static Microsoft.AspNetCore.Http.IResult Bytes (ReadOnlyMemory<byte> contents, string? contentType = default, string? fileDownloadName = default, bool enableRangeProcessing = false, DateTimeOffset? lastModified = default, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = default);
static member Bytes : ReadOnlyMemory<byte> * string * string * bool * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Http.IResult
Public Shared Function Bytes (contents As ReadOnlyMemory(Of Byte), Optional contentType As String = Nothing, Optional fileDownloadName As String = Nothing, Optional enableRangeProcessing As Boolean = false, Optional lastModified As Nullable(Of DateTimeOffset) = Nothing, Optional entityTag As EntityTagHeaderValue = Nothing) As IResult
参数
- contents
- ReadOnlyMemory<Byte>
文件内容。
- contentType
- String
文件的 Content-Type。
- fileDownloadName
- String
建议的文件名。
- enableRangeProcessing
- Boolean
设置为 以 true
启用范围请求处理。
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset上次修改文件时的 。
- entityTag
- EntityTagHeaderValue
EntityTagHeaderValue与文件关联的 。
返回
为响应创建的 IResult 。