-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Span overloads for Socket.SendFile #43846
Labels
Milestone
Comments
geoffkizer
added
area-System.Net.Sockets
api-ready-for-review
API is ready for review, it is NOT ready for implementation
labels
Oct 26, 2020
Tagging subscribers to this area: @dotnet/ncl |
Dotnet-GitSync-Bot
added
the
untriaged
New issue has not been triaged by the area owner
label
Oct 26, 2020
Related (async APIs): #42591 |
I can do this together with #42591 when this api is approved. |
terrajobst
added
api-approved
API was approved in API review, it can be implemented
and removed
api-ready-for-review
API is ready for review, it is NOT ready for implementation
untriaged
New issue has not been triaged by the area owner
labels
Oct 27, 2020
namespace System.Net.Sockets
{
public class Socket
{
// Existing API
// public void SendFile(string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOptions flags);
public void SendFile(string fileName, ReadOnlySpan<byte> preBuffer, ReadOnlySpan<byte> postBuffer, TransmitFileOptions flags);
}
} |
ghost
added
the
in-pr
There is an active PR which will close this issue when it is merged
label
Jan 20, 2021
ghost
removed
the
in-pr
There is an active PR which will close this issue when it is merged
label
Jan 25, 2021
ghost
locked as resolved and limited conversation to collaborators
Feb 24, 2021
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Proposed API
The text was updated successfully, but these errors were encountered: