NibblePoker.Data.ArpHardwareType 0.0.2

dotnet add package NibblePoker.Data.ArpHardwareType --version 0.0.2
NuGet\Install-Package NibblePoker.Data.ArpHardwareType -Version 0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NibblePoker.Data.ArpHardwareType" Version="0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NibblePoker.Data.ArpHardwareType --version 0.0.2
#r "nuget: NibblePoker.Data.ArpHardwareType, 0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NibblePoker.Data.ArpHardwareType as a Cake Addin
#addin nuget:?package=NibblePoker.Data.ArpHardwareType&version=0.0.2

// Install NibblePoker.Data.ArpHardwareType as a Cake Tool
#tool nuget:?package=NibblePoker.Data.ArpHardwareType&version=0.0.2

.NET - ARP Hardware Type Data

Nuget.org latest version Nuget.org downloads count Repository's License

A small package containing all the ARP Hardware Types as defined by de IANA, RFC 1700 and Linux in distinct and convenient enums.

Features

  • Distinct sets:
    • IANA - Current IANA standard
    • RFC 1700 - Before RFC 3232 On-line Database
    • Linux - Parts of RFC 1700, conflicts with IANA, used by WireShark
  • Provides friendly names for UI usage

Requirements

  • .NET Framework 4.0 or newer
  • .NET v6.0 or newer

Documentation

Go to aziascreations.github.io/DotNet-ArpHardwareType/ for the HTML documentation.

Example

using System;
using NibblePoker.Data.ArpHardwareType;

static class Program {
    private static void Main(string[] args) {
        Console.WriteLine("IANA ARP Hardware Types:");
        foreach(EIanaArpHardwareTypes hardwareType in Enum.GetValues(typeof(EIanaArpHardwareTypes))) {
            Console.WriteLine("* " + (ulong) hardwareType + " - " + ArpHardwareTypeName.GetFrom(hardwareType));
        }
    }
}

Licenses

The code in this repository is licensed under CC0 1.0 Universal (CC0 1.0) (Public Domain).

The doxygen-awesome-css repository is used as a submodule for Doxygen and is licensed under the MIT license.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.0

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.2 86 5/11/2024
0.0.1 89 5/8/2024

Added comments to all IANA entries