Condividi tramite


IHttpSendFileFeature.SendFileAsync Metodo

Definizione

Invia il file richiesto nel corpo della risposta. Questo può ignorare IHttpResponseFeature.Body Stream. Una risposta può includere più scritture.

public:
 System::Threading::Tasks::Task ^ SendFileAsync(System::String ^ path, long offset, Nullable<long> count, System::Threading::CancellationToken cancellation);
public System.Threading.Tasks.Task SendFileAsync (string path, long offset, long? count, System.Threading.CancellationToken cancellation);
abstract member SendFileAsync : string * int64 * Nullable<int64> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function SendFileAsync (path As String, offset As Long, count As Nullable(Of Long), cancellation As CancellationToken) As Task

Parametri

path
String

Percorso del disco completo del file.

offset
Int64

Offset nel file da avviare all'inizio.

count
Nullable<Int64>

Numero di byte da inviare o null per inviare il resto del file.

cancellation
CancellationToken

Oggetto CancellationToken usato per interrompere la trasmissione.

Restituisce

Si applica a