VOOZH about

URL: https://www.nuget.org/packages/Smdn.Fundamental.PrintableEncoding.Hexadecimal/

⇱ NuGet Gallery | Smdn.Fundamental.PrintableEncoding.Hexadecimal 3.1.1




👁 Image
Smdn.Fundamental.PrintableEncoding.Hexadecimal 3.1.1

Prefix Reserved
dotnet add package Smdn.Fundamental.PrintableEncoding.Hexadecimal --version 3.1.1
 
 
NuGet\Install-Package Smdn.Fundamental.PrintableEncoding.Hexadecimal -Version 3.1.1
 
 
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="Smdn.Fundamental.PrintableEncoding.Hexadecimal" Version="3.1.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Smdn.Fundamental.PrintableEncoding.Hexadecimal" Version="3.1.1" />
 
Directory.Packages.props
<PackageReference Include="Smdn.Fundamental.PrintableEncoding.Hexadecimal" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Smdn.Fundamental.PrintableEncoding.Hexadecimal --version 3.1.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Smdn.Fundamental.PrintableEncoding.Hexadecimal, 3.1.1"
 
 
#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.
#:package Smdn.Fundamental.PrintableEncoding.Hexadecimal@3.1.1
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Smdn.Fundamental.PrintableEncoding.Hexadecimal&version=3.1.1
 
Install as a Cake Addin
#tool nuget:?package=Smdn.Fundamental.PrintableEncoding.Hexadecimal&version=3.1.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Smdn.Fundamental.PrintableEncoding.Hexadecimal-3.1.1

Smdn.Fundamental.PrintableEncoding.Hexadecimal.dll

API List

List of APIs exposed by assembly Smdn.Fundamental.PrintableEncoding.Hexadecimal-3.1.1 (net10.0)

// Smdn.Fundamental.PrintableEncoding.Hexadecimal.dll (Smdn.Fundamental.PrintableEncoding.Hexadecimal-3.1.1)
// Name: Smdn.Fundamental.PrintableEncoding.Hexadecimal
// AssemblyVersion: 3.1.1.0
// InformationalVersion: 3.1.1+f7739d98260258e77e4b210f8eba163b5232beff
// TargetFramework: .NETCoreApp,Version=v10.0
// Configuration: Release
// Metadata: IsTrimmable=True
// Metadata: IsAotCompatible=True
// Metadata: RepositoryUrl=https://github.com/smdn/Smdn.Fundamentals
// Metadata: RepositoryBranch=main
// Metadata: RepositoryCommit=f7739d98260258e77e4b210f8eba163b5232beff
// Referenced assemblies:
// System.Memory, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
// System.Runtime, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
#nullable enable annotations

using System;

namespace Smdn.Formats {
 public static class Hexadecimal {
 public static ReadOnlySpan<char> LowerCaseHexChars { get; }
 public static ReadOnlySpan<byte> LowerCaseHexOctets { get; }
 public static ReadOnlySpan<char> UpperCaseHexChars { get; }
 public static ReadOnlySpan<byte> UpperCaseHexOctets { get; }

 public static string ToLowerCaseString(ArraySegment<byte> dataSequence) {}
 public static string ToLowerCaseString(ReadOnlySpan<byte> dataSequence) {}
 public static string ToUpperCaseString(ArraySegment<byte> dataSequence) {}
 public static string ToUpperCaseString(ReadOnlySpan<byte> dataSequence) {}
 public static bool TryDecode(ArraySegment<byte> data, out byte decodedData) {}
 public static bool TryDecode(ArraySegment<char> data, out byte decodedData) {}
 public static bool TryDecode(ArraySegment<char> dataSequence, ArraySegment<byte> destination, out int decodedLength) {}
 public static bool TryDecode(ReadOnlySpan<byte> data, out byte decodedData) {}
 public static bool TryDecode(ReadOnlySpan<char> data, out byte decodedData) {}
 public static bool TryDecode(ReadOnlySpan<char> dataSequence, Span<byte> destination, out int decodedLength) {}
 public static bool TryDecodeLowerCase(ArraySegment<byte> lowerCaseData, out byte decodedData) {}
 public static bool TryDecodeLowerCase(ArraySegment<char> lowerCaseData, out byte decodedData) {}
 public static bool TryDecodeLowerCase(ArraySegment<char> lowerCaseDataSequence, ArraySegment<byte> destination, out int decodedLength) {}
 public static bool TryDecodeLowerCase(ReadOnlySpan<byte> lowerCaseData, out byte decodedData) {}
 public static bool TryDecodeLowerCase(ReadOnlySpan<char> lowerCaseData, out byte decodedData) {}
 public static bool TryDecodeLowerCase(ReadOnlySpan<char> lowerCaseDataSequence, Span<byte> destination, out int decodedLength) {}
 public static bool TryDecodeLowerCaseValue(byte lowerCaseData, out byte decodedValue) {}
 public static bool TryDecodeLowerCaseValue(char lowerCaseData, out byte decodedValue) {}
 public static bool TryDecodeUpperCase(ArraySegment<byte> upperCaseData, out byte decodedData) {}
 public static bool TryDecodeUpperCase(ArraySegment<char> upperCaseData, out byte decodedData) {}
 public static bool TryDecodeUpperCase(ArraySegment<char> upperCaseDataSequence, ArraySegment<byte> destination, out int decodedLength) {}
 public static bool TryDecodeUpperCase(ReadOnlySpan<byte> upperCaseData, out byte decodedData) {}
 public static bool TryDecodeUpperCase(ReadOnlySpan<char> upperCaseData, out byte decodedData) {}
 public static bool TryDecodeUpperCase(ReadOnlySpan<char> upperCaseDataSequence, Span<byte> destination, out int decodedLength) {}
 public static bool TryDecodeUpperCaseValue(byte upperCaseData, out byte decodedValue) {}
 public static bool TryDecodeUpperCaseValue(char upperCaseData, out byte decodedValue) {}
 public static bool TryDecodeValue(byte data, out byte decodedValue) {}
 public static bool TryDecodeValue(char data, out byte decodedValue) {}
 public static bool TryEncodeLowerCase(ArraySegment<byte> dataSequence, ArraySegment<byte> destination, out int bytesEncoded) {}
 public static bool TryEncodeLowerCase(ArraySegment<byte> dataSequence, ArraySegment<char> destination, out int charsEncoded) {}
 public static bool TryEncodeLowerCase(ReadOnlySpan<byte> dataSequence, Span<byte> destination, out int bytesEncoded) {}
 public static bool TryEncodeLowerCase(ReadOnlySpan<byte> dataSequence, Span<char> destination, out int charsEncoded) {}
 public static bool TryEncodeLowerCase(byte data, Span<byte> destination, out int bytesEncoded) {}
 public static bool TryEncodeLowerCase(byte data, Span<char> destination, out int charsEncoded) {}
 public static bool TryEncodeLowerCase(byte data, byte[] destination, int index, out int bytesEncoded) {}
 public static bool TryEncodeLowerCase(byte data, char[] destination, int index, out int charsEncoded) {}
 public static bool TryEncodeUpperCase(ArraySegment<byte> dataSequence, ArraySegment<byte> destination, out int bytesEncoded) {}
 public static bool TryEncodeUpperCase(ArraySegment<byte> dataSequence, ArraySegment<char> destination, out int charsEncoded) {}
 public static bool TryEncodeUpperCase(ReadOnlySpan<byte> dataSequence, Span<byte> destination, out int bytesEncoded) {}
 public static bool TryEncodeUpperCase(ReadOnlySpan<byte> dataSequence, Span<char> destination, out int charsEncoded) {}
 public static bool TryEncodeUpperCase(byte data, Span<byte> destination, out int bytesEncoded) {}
 public static bool TryEncodeUpperCase(byte data, Span<char> destination, out int charsEncoded) {}
 public static bool TryEncodeUpperCase(byte data, byte[] destination, int index, out int bytesEncoded) {}
 public static bool TryEncodeUpperCase(byte data, char[] destination, int index, out int charsEncoded) {}
 }
}
// API list generated by Smdn.Reflection.ReverseGenerating.ListApi.MSBuild.Tasks v1.8.1.0.
// Smdn.Reflection.ReverseGenerating.ListApi.Core v1.6.1.0 (https://github.com/smdn/Smdn.Reflection.ReverseGenerating)
Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 is compatible. 
.NET Framework net45 net45 is compatible.  net451 net451 was computed.  net452 net452 was computed.  net46 net46 was computed.  net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5

  • .NETStandard 2.0

  • .NETStandard 2.1

    • No dependencies.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Smdn.Fundamental.PrintableEncoding.Hexadecimal:

Package Downloads
Smdn

Smdn.dll, fundamental utility and extension library

Smdn.Fundamental.PrintableEncoding.QuotedPrintable

Smdn.Fundamental.PrintableEncoding.QuotedPrintable.dll

Smdn.Fundamental.PrintableEncoding.UUEncoding

Smdn.Fundamental.PrintableEncoding.UUEncoding.dll

Smdn.Fundamental.PrintableEncoding.PercentEncoding

Smdn.Fundamental.PrintableEncoding.PercentEncoding.dll

Smdn.TPSmartHomeDevices.Primitives

Provides common types for Smdn.TPSmartHomeDevices.Tapo and Smdn.TPSmartHomeDevices.Kasa, including abstraction interfaces, extension methods and custom JsonConverter's. This library does not provide any specific implementations to operate Kasa and Tapo devices.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.1.1 362 5/30/2026
3.1.0 336 12/23/2025
3.0.1 7,720 5/21/2022
3.0.0 9,644 8/20/2021

See the release notes for [Smdn.Fundamental.PrintableEncoding.Hexadecimal version 3.1.1](https://github.com/smdn/Smdn.Fundamentals/releases/tag/releases%2FSmdn.Fundamental.PrintableEncoding.Hexadecimal-3.1.1) on GitHub Releases.