dotnet-core/release-notes/5.0/api-diff/netstandard2.1/5.0_System.Net.NetworkInformation.md
Anirudh Agnihotry fdaef4427a
Api diff between net5.0 and netcoreapp3.1 & netstandard2.1 (#5610)
* .net shared framework changes

* standalone net 5.0 packages

* netstanard2.1 diff

* improving the directory structure

* adding a readme file

* aspnetcore shared framework changes

* remove wrong process type change diff

* adding comments about apis being to inbox from package
2020-11-18 10:40:01 -08:00

568 B

System.Net.NetworkInformation

 namespace System.Net.NetworkInformation {
-    public static class NetworkChange {
+    public class NetworkChange {
+        public NetworkChange();
+        public static void RegisterNetworkChange(NetworkChange nc);
     }
     public class PhysicalAddress {
+        public static PhysicalAddress Parse(ReadOnlySpan<char> address);
+        public static bool TryParse(ReadOnlySpan<char> address, out PhysicalAddress value);
+        public static bool TryParse(string address, out PhysicalAddress value);
     }
 }