Skip to content

Release main/Smdn.Net.AddressResolution-1.2.0 #16

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

Merged
merged 1 commit into from
Apr 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Net.AddressResolution.dll (Smdn.Net.AddressResolution-1.1.0)
// Smdn.Net.AddressResolution.dll (Smdn.Net.AddressResolution-1.2.0)
// Name: Smdn.Net.AddressResolution
// AssemblyVersion: 1.1.0.0
// InformationalVersion: 1.1.0+fe88b9191dd60b0f5dc1e1881193ccd376b9795c
// AssemblyVersion: 1.2.0.0
// InformationalVersion: 1.2.0+c05b71d8cee9f9e5f62130f20bb3eb25e8a79614
// TargetFramework: .NETCoreApp,Version=v8.0
// Configuration: Release
// Referenced assemblies:
Expand All @@ -20,9 +20,10 @@
// System.Runtime, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// System.Runtime.InteropServices, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// System.Threading, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// Vanara.PInvoke.IpHlpApi, Version=3.4.13.0, Culture=neutral, PublicKeyToken=c37e4080322237fa
// Vanara.PInvoke.Shared, Version=3.4.13.0, Culture=neutral, PublicKeyToken=c37e4080322237fa
// Vanara.PInvoke.Ws2_32, Version=3.4.13.0, Culture=neutral, PublicKeyToken=c37e4080322237fa
// Vanara.Core, Version=4.1.1.0, Culture=neutral, PublicKeyToken=c37e4080322237fa
// Vanara.PInvoke.IpHlpApi, Version=4.1.1.0, Culture=neutral, PublicKeyToken=c37e4080322237fa
// Vanara.PInvoke.Shared, Version=4.1.1.0, Culture=neutral, PublicKeyToken=c37e4080322237fa
// Vanara.PInvoke.Ws2_32, Version=4.1.1.0, Culture=neutral, PublicKeyToken=c37e4080322237fa
#nullable enable annotations

using System;
Expand Down Expand Up @@ -82,6 +83,7 @@ public MacAddressResolver(IPNetworkProfile? networkProfile, IServiceProvider? se
public override bool HasInvalidated { get; }
public TimeSpan NetworkScanInterval { get; set; }
public TimeSpan NetworkScanMinInterval { get; set; }
public bool ShouldResolveIPv4MappedIPv6Address { get; set; }

protected override void Dispose(bool disposing) {}
public IAsyncEnumerable<AddressTableEntry> EnumerateAddressTableEntriesAsync(CancellationToken cancellationToken = default) {}
Expand Down Expand Up @@ -160,6 +162,7 @@ public IAsyncEnumerable<AddressTableEntry> EnumerateEntriesAsync(CancellationTok
protected void ThrowIfDisposed() {}
}

[SupportedOSPlatform("windows")]
public sealed class IpHlpApiAddressTable : AddressTable {
public static bool IsSupported { get; }

Expand Down Expand Up @@ -200,6 +203,7 @@ public AddressTableEntry(IPAddress ipAddress, PhysicalAddress? physicalAddress,

public bool Equals(AddressTableEntry other) {}
public bool Equals(IPAddress? other) {}
public bool Equals(IPAddress? other, bool shouldConsiderIPv4MappedIPv6Address) {}
public bool Equals(PhysicalAddress? other) {}
public override bool Equals(object? obj) {}
public override int GetHashCode() {}
Expand Down Expand Up @@ -251,6 +255,7 @@ public virtual ValueTask ScanAsync(IEnumerable<IPAddress> addresses, Cancellatio
protected void ThrowIfDisposed() {}
}

[SupportedOSPlatform("windows")]
public sealed class IpHlpApiNetworkScanner : NetworkScanner {
public static bool IsSupported { get; }

Expand Down Expand Up @@ -295,5 +300,5 @@ protected override void Dispose(bool disposing) {}
protected override async ValueTask ScanAsyncCore(IPAddress address, CancellationToken cancellationToken = default) {}
}
}
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.3.2.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.2.0.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.5.0.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.3.1.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
Loading