-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
dotnet/corefx
#23224Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Nethelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributorstenet-performancePerformance related issuePerformance related issue
Milestone
Description
Separated out of https://github.com/dotnet/corefx/issues/21281 for tracking purposes.
- Implement in System.Net.Primitives in corefx
- Expose from System.Net.Primitives contract in corefx
- Add tests to System.Net.Primitives tests in corefx
namespace System.Net
{
public class IPAddress
{
public IPAddress(ReadOnlySpan<byte> address);
public IPAddress(ReadOnlySpan<byte> address, long scopeid);
public bool TryWriteBytes(Span<byte> destination, out int bytesWritten);
public static IPAddress Parse(ReadOnlySpan<char> ipChars);
public static bool TryParse(ReadOnlySpan<char> ipChars, out IPAddress address);
public static bool TryFormat(Span<char> destination, out int charsWritten);
…
}
}Metadata
Metadata
Assignees
Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Nethelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributorstenet-performancePerformance related issuePerformance related issue