Background and Motivation
We have an APM version of this and a SocketAsyncEventArgs version, but no Task-based version.
Current APM:
publicIAsyncResultBeginSendFile(stringfileName,AsyncCallback?callback,object?state);publicIAsyncResultBeginSendFile(string?fileName,byte[]?preBuffer,byte[]?postBuffer,TransmitFileOptionsflags,AsyncCallback?callback,object?state);
Proposed API
publicValueTaskSendFileAsync(stringfileName);publicValueTaskSendFileAsync(string?fileName,byte[]?preBuffer,byte[]?postBuffer,TransmitFileOptionsflags);
Background and Motivation
We have an APM version of this and a SocketAsyncEventArgs version, but no Task-based version.
Current APM:
Proposed API