Results.Stream Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Stream(Func<Stream,Task>, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Permite gravar diretamente no corpo da resposta. |
Stream(PipeReader, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Grava o conteúdo do PipeReader especificado na resposta. Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável). |
Stream(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Grava o Stream especificado na resposta. Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável). Essa API é um alias para File(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean). |
Stream(Func<Stream,Task>, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Origem:
- Results.cs
Permite gravar diretamente no corpo da resposta.
public static Microsoft.AspNetCore.Http.IResult Stream (Func<System.IO.Stream,System.Threading.Tasks.Task> streamWriterCallback, string? contentType = default, string? fileDownloadName = default, DateTimeOffset? lastModified = default, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = default);
static member Stream : Func<System.IO.Stream, System.Threading.Tasks.Task> * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Http.IResult
Public Shared Function Stream (streamWriterCallback As Func(Of Stream, Task), Optional contentType As String = Nothing, Optional fileDownloadName As String = Nothing, Optional lastModified As Nullable(Of DateTimeOffset) = Nothing, Optional entityTag As EntityTagHeaderValue = Nothing) As IResult
Parâmetros
O retorno de chamada que permite que os usuários escrevam diretamente no corpo da resposta.
- contentType
- String
O Content-Type
da resposta. O padrão é application/octet-stream
.
- fileDownloadName
- String
O nome do arquivo a ser usado no cabeçalho Content-Disposition
.
- lastModified
- Nullable<DateTimeOffset>
O DateTimeOffset de quando o arquivo foi modificado pela última vez.
Usado para configurar o cabeçalho de resposta Last-Modified
e executar solicitações de intervalo condicional.
- entityTag
- EntityTagHeaderValue
O EntityTagHeaderValue configurar o cabeçalho de resposta ETag
e executar solicitações condicionais.
Retornos
O IResult criado para a resposta.
Aplica-se a
Stream(PipeReader, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Origem:
- Results.cs
Grava o conteúdo do PipeReader especificado na resposta.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public static Microsoft.AspNetCore.Http.IResult Stream (System.IO.Pipelines.PipeReader pipeReader, string? contentType = default, string? fileDownloadName = default, DateTimeOffset? lastModified = default, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = default, bool enableRangeProcessing = false);
static member Stream : System.IO.Pipelines.PipeReader * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Http.IResult
Public Shared Function Stream (pipeReader As PipeReader, Optional contentType As String = Nothing, Optional fileDownloadName As String = Nothing, Optional lastModified As Nullable(Of DateTimeOffset) = Nothing, Optional entityTag As EntityTagHeaderValue = Nothing, Optional enableRangeProcessing As Boolean = false) As IResult
Parâmetros
- pipeReader
- PipeReader
O PipeReader gravar na resposta.
- contentType
- String
O Content-Type
da resposta. O padrão é application/octet-stream
.
- fileDownloadName
- String
O nome do arquivo a ser usado no cabeçalho Content-Disposition
.
- lastModified
- Nullable<DateTimeOffset>
O DateTimeOffset de quando o arquivo foi modificado pela última vez.
Usado para configurar o cabeçalho de resposta Last-Modified
e executar solicitações de intervalo condicional.
- entityTag
- EntityTagHeaderValue
O EntityTagHeaderValue configurar o cabeçalho de resposta ETag
e executar solicitações condicionais.
- enableRangeProcessing
- Boolean
Defina como true
para habilitar o processamento de solicitações de intervalo.
Retornos
O IResult criado para a resposta.
Comentários
O parâmetro pipeReader
é concluído após o envio da resposta.
Aplica-se a
Stream(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Origem:
- Results.cs
Grava o Stream especificado na resposta.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
Essa API é um alias para File(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean).
public static Microsoft.AspNetCore.Http.IResult Stream (System.IO.Stream stream, string? contentType = default, string? fileDownloadName = default, DateTimeOffset? lastModified = default, Microsoft.Net.Http.Headers.EntityTagHeaderValue? entityTag = default, bool enableRangeProcessing = false);
static member Stream : System.IO.Stream * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Http.IResult
Public Shared Function Stream (stream As Stream, Optional contentType As String = Nothing, Optional fileDownloadName As String = Nothing, Optional lastModified As Nullable(Of DateTimeOffset) = Nothing, Optional entityTag As EntityTagHeaderValue = Nothing, Optional enableRangeProcessing As Boolean = false) As IResult
Parâmetros
- contentType
- String
O Content-Type
da resposta. O padrão é application/octet-stream
.
- fileDownloadName
- String
O nome do arquivo a ser usado no cabeçalho Content-Disposition
.
- lastModified
- Nullable<DateTimeOffset>
O DateTimeOffset de quando o arquivo foi modificado pela última vez.
Usado para configurar o cabeçalho de resposta Last-Modified
e executar solicitações de intervalo condicional.
- entityTag
- EntityTagHeaderValue
O EntityTagHeaderValue configurar o cabeçalho de resposta ETag
e executar solicitações condicionais.
- enableRangeProcessing
- Boolean
Defina como true
para habilitar o processamento de solicitações de intervalo.
Retornos
O IResult criado para a resposta.
Comentários
O parâmetro stream
é descartado após o envio da resposta.