VOOZH about

URL: https://www.nuget.org/packages/Smdn.Fundamental.Uuid/

⇱ NuGet Gallery | Smdn.Fundamental.Uuid 3.4.0




👁 Image
Smdn.Fundamental.Uuid 3.4.0

Prefix Reserved
dotnet add package Smdn.Fundamental.Uuid --version 3.4.0
 
 
NuGet\Install-Package Smdn.Fundamental.Uuid -Version 3.4.0
 
 
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.Uuid" Version="3.4.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Smdn.Fundamental.Uuid" Version="3.4.0" />
 
Directory.Packages.props
<PackageReference Include="Smdn.Fundamental.Uuid" />
 
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.Uuid --version 3.4.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Smdn.Fundamental.Uuid, 3.4.0"
 
 
#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.Uuid@3.4.0
 
 
#: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.Uuid&version=3.4.0
 
Install as a Cake Addin
#tool nuget:?package=Smdn.Fundamental.Uuid&version=3.4.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Smdn.Fundamental.Uuid-3.4.0

Smdn.Fundamental.Uuid.dll

API List

List of APIs exposed by assembly Smdn.Fundamental.Uuid-3.4.0 (net10.0)

// Smdn.Fundamental.Uuid.dll (Smdn.Fundamental.Uuid-3.4.0)
// Name: Smdn.Fundamental.Uuid
// AssemblyVersion: 3.4.0.0
// InformationalVersion: 3.4.0+be97624d8e1d0a344a8deba949e46e656edba9cb
// 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=be97624d8e1d0a344a8deba949e46e656edba9cb
// Referenced assemblies:
// Smdn.Fundamental.Exception, Version=3.1.0.0, Culture=neutral
// System.Memory, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
// System.Net.NetworkInformation, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// System.Runtime, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// System.Security.Cryptography, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
#nullable enable annotations

using System;
using System.Net.NetworkInformation;
using System.Numerics;
using System.Security.Cryptography;
using Smdn;
using Smdn.Formats.UniversallyUniqueIdentifiers;

namespace Smdn {
 [TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
 public enum UuidVersion : byte {
 NameBasedMD5Hash = 3,
 NameBasedSHA1Hash = 5,
 None = 0,
 RandomNumber = 4,
 TimeBased = 1,
 Version1 = 1,
 Version2 = 2,
 Version3 = 3,
 Version4 = 4,
 Version5 = 5,
 }

 [TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
 [StructLayout(LayoutKind.Explicit, Pack = 1)]
 public readonly struct Uuid :
 IComparable,
 IComparable<Guid>,
 IComparable<Uuid>,
 IComparisonOperators<Uuid, Uuid, bool>,
 IEquatable<Guid>,
 IEquatable<Uuid>,
 ISpanFormattable,
 ISpanParsable<Uuid>
 {
 public enum Namespace : int {
 RFC4122Dns = 1806153744,
 RFC4122IsoOid = 1806153746,
 RFC4122Url = 1806153745,
 RFC4122X500 = 1806153748,
 }

 public enum Variant : byte {
 MicrosoftReserved = 192,
 NCSReserved = 0,
 RFC4122 = 128,
 Reserved = 224,
 }

 public static readonly Uuid Nil; // = "00000000-0000-0000-0000-000000000000"
 public static readonly Uuid RFC4122NamespaceDns; // = "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
 public static readonly Uuid RFC4122NamespaceIsoOid; // = "6ba7b812-9dad-11d1-80b4-00c04fd430c8"
 public static readonly Uuid RFC4122NamespaceUrl; // = "6ba7b811-9dad-11d1-80b4-00c04fd430c8"
 public static readonly Uuid RFC4122NamespaceX500; // = "6ba7b814-9dad-11d1-80b4-00c04fd430c8"

 public static Uuid CreateFromRandomNumber() {}
 public static Uuid CreateFromRandomNumber(RandomNumberGenerator rng) {}
 public static Uuid CreateFromRandomNumber(ReadOnlySpan<byte> randomNumber) {}
 public static Uuid CreateFromRandomNumber(byte[] randomNumber) {}
 public static Uuid CreateNameBased(ReadOnlySpan<byte> name, Uuid namespaceId, UuidVersion version) {}
 public static Uuid CreateNameBased(ReadOnlySpan<byte> name, Uuid.Namespace ns, UuidVersion version) {}
 public static Uuid CreateNameBased(Uri url, UuidVersion version) {}
 public static Uuid CreateNameBased(byte[] name, Uuid namespaceId, UuidVersion version) {}
 public static Uuid CreateNameBased(byte[] name, Uuid.Namespace ns, UuidVersion version) {}
 public static Uuid CreateNameBased(string name, Uuid namespaceId, UuidVersion version) {}
 public static Uuid CreateNameBased(string name, Uuid.Namespace ns, UuidVersion version) {}
 public static Uuid CreateNameBasedMD5(ReadOnlySpan<byte> name, Uuid.Namespace ns) {}
 public static Uuid CreateNameBasedMD5(Uri url) {}
 public static Uuid CreateNameBasedMD5(byte[] name, Uuid.Namespace ns) {}
 public static Uuid CreateNameBasedMD5(string name, Uuid.Namespace ns) {}
 public static Uuid CreateNameBasedSHA1(ReadOnlySpan<byte> name, Uuid.Namespace ns) {}
 public static Uuid CreateNameBasedSHA1(Uri url) {}
 public static Uuid CreateNameBasedSHA1(byte[] name, Uuid.Namespace ns) {}
 public static Uuid CreateNameBasedSHA1(string name, Uuid.Namespace ns) {}
 public static Uuid CreateTimeBased() {}
 public static Uuid CreateTimeBased(DateTime timestamp, int clock) {}
 public static Uuid CreateTimeBased(DateTime timestamp, int clock, PhysicalAddress node) {}
 public static Uuid CreateTimeBased(DateTime timestamp, int clock, byte[] node) {}
 public static Uuid CreateTimeBased(PhysicalAddress node) {}
 public static Uuid CreateTimeBased(byte[] node) {}
 public static Uuid FromGuid(Guid @value) {}
 public static Uuid NewUuid() {}
 public static Uuid Parse(ReadOnlySpan<char> s, IFormatProvider? provider = null) {}
 public static Uuid Parse(string s, IFormatProvider? provider = null) {}
 public static bool TryParse(ReadOnlySpan<char> s, IFormatProvider? provider, out Uuid result) {}
 public static bool TryParse(ReadOnlySpan<char> s, out Uuid result) {}
 public static bool TryParse(string? s, IFormatProvider? provider, out Uuid result) {}
 public static bool operator == (Uuid x, Uuid y) {}
 public static explicit operator Guid(Uuid @value) {}
 public static explicit operator Uuid(Guid @value) {}
 public static bool operator > (Uuid x, Uuid y) {}
 public static bool operator >= (Uuid x, Uuid y) {}
 public static bool operator != (Uuid x, Uuid y) {}
 public static bool operator < (Uuid x, Uuid y) {}
 public static bool operator <= (Uuid x, Uuid y) {}

 public Uuid(Guid guidValue) {}
 public Uuid(ReadOnlySpan<byte> octets) {}
 public Uuid(ReadOnlySpan<byte> octets, bool isBigEndian) {}
 public Uuid(byte[] octets) {}
 public Uuid(byte[] octets, bool isBigEndian) {}
 public Uuid(byte[] octets, int index, bool isBigEndian = true) {}
 public Uuid(string uuid) {}
 public Uuid(uint time_low, ushort time_mid, ushort time_hi_and_version, byte clock_seq_hi_and_reserved, byte clock_seq_low, PhysicalAddress node) {}
 public Uuid(uint time_low, ushort time_mid, ushort time_hi_and_version, byte clock_seq_hi_and_reserved, byte clock_seq_low, ReadOnlySpan<byte> node) {}
 public Uuid(uint time_low, ushort time_mid, ushort time_hi_and_version, byte clock_seq_hi_and_reserved, byte clock_seq_low, byte node0, byte node1, byte node2, byte node3, byte node4, byte node5) {}
 public Uuid(uint time_low, ushort time_mid, ushort time_hi_and_version, byte clock_seq_hi_and_reserved, byte clock_seq_low, byte[] node) {}

 public int Clock { get; }
 public byte ClockSeqHighAndReserved { get; }
 public byte ClockSeqLow { get; }
 public string IEEE802MacAddress { get; }
 public byte[] Node { get; }
 public PhysicalAddress PhysicalAddress { get; }
 public ushort TimeHighAndVersion { get; }
 public uint TimeLow { get; }
 public ushort TimeMid { get; }
 public DateTime Timestamp { get; }
 public Uuid.Variant VariantField { get; }
 public UuidVersion Version { get; }

 public int CompareTo(Guid other) {}
 public int CompareTo(Uuid other) {}
 public int CompareTo(object? obj) {}
 public bool Equals(Guid other) {}
 public bool Equals(Uuid other) {}
 public override bool Equals(object? obj) {}
 public void GetBytes(byte[] buffer, int startIndex) {}
 public void GetBytes(byte[] buffer, int startIndex, bool asBigEndian) {}
 public override int GetHashCode() {}
 public byte[] ToByteArray() {}
 public byte[] ToByteArray(bool asBigEndian) {}
 public Guid ToGuid() {}
 public override string ToString() {}
 public string ToString(string format) {}
 public string ToString(string? format, IFormatProvider? formatProvider) {}
 public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default, IFormatProvider? provider = null) {}
 public bool TryWriteBytes(Span<byte> destination, bool asBigEndian) {}
 public void WriteBytes(Span<byte> destination, bool asBigEndian) {}
 }
}

namespace Smdn.Formats.UniversallyUniqueIdentifiers {
 [TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
 public abstract class UuidGenerator {
 public static UuidGenerator CreateTimeBased() {}
 public static UuidGenerator CreateTimeBased(DateTimeOffset timeStamp) {}
 public static UuidGenerator CreateTimeBased(DateTimeOffset timeStamp, Func<ushort> clockSequenceSource) {}
 public static UuidGenerator CreateTimeBased(DateTimeOffset timeStamp, int clockSequence) {}
 public static UuidGenerator CreateTimeBased(DateTimeOffset timeStamp, int clockSequence, Node node) {}
 public static UuidGenerator CreateTimeBased(DateTimeOffset timeStamp, int clockSequence, PhysicalAddress node) {}
 public static UuidGenerator CreateTimeBased(Func<ulong> timeStampSource) {}
 public static UuidGenerator CreateTimeBased(Func<ulong> timeStampSource, Func<ushort> clockSequenceSource) {}
 public static UuidGenerator CreateTimeBased(Func<ulong> timeStampSource, Func<ushort> clockSequenceSource, Node node) {}
 public static UuidGenerator CreateTimeBased(Func<ulong> timeStampSource, int clockSequence) {}
 public static UuidGenerator CreateTimeBased(Func<ulong> timeStampSource, int clockSequence, Node node) {}

 protected UuidGenerator() {}

 public abstract Uuid GenerateNext();
 }

 [TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
 [StructLayout(LayoutKind.Sequential, Pack = 1, Size = 6)]
 public readonly struct Node :
 IComparable,
 IComparable<Node>,
 IComparisonOperators<Node, Node, bool>,
 IEquatable<Node>,
 ISpanFormattable,
 ISpanParsable<Node>
 {
 public static Node CreateRandom() {}
 public static Node Parse(ReadOnlySpan<char> s, IFormatProvider? provider = null) {}
 public static Node Parse(string s, IFormatProvider? provider = null) {}
 public static bool TryParse(ReadOnlySpan<char> s, IFormatProvider? provider, out Node result) {}
 public static bool TryParse(ReadOnlySpan<char> s, out Node result) {}
 public static bool TryParse(string? s, IFormatProvider? provider, out Node result) {}
 public static bool TryParse(string? s, out Node result) {}
 public static bool operator == (Node x, Node y) {}
 public static bool operator > (Node x, Node y) {}
 public static bool operator >= (Node x, Node y) {}
 public static bool operator != (Node x, Node y) {}
 public static bool operator < (Node x, Node y) {}
 public static bool operator <= (Node x, Node y) {}

 public Node(PhysicalAddress physicalAddress) {}

 public int CompareTo(Node other) {}
 public int CompareTo(object? obj) {}
 public bool Equals(Node other) {}
 public override bool Equals(object? obj) {}
 public override int GetHashCode() {}
 public PhysicalAddress ToPhysicalAddress() {}
 public override string ToString() {}
 public string ToString(string? format, IFormatProvider? formatProvider = null) {}
 public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format, IFormatProvider? provider) {}
 public bool TryWriteBytes(Span<byte> destination) {}
 public void WriteBytes(Span<byte> destination) {}
 }
}
// 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 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Smdn.Fundamental.Uuid:

Package Downloads
Smdn

Smdn.dll, fundamental utility and extension library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.4.0 132 5/30/2026
3.3.0 354 12/22/2025
3.2.0 14,395 12/30/2023
3.1.1 2,896 1/22/2023
3.1.0 1,203 4/3/2022
3.0.3 625 3/5/2022
3.0.2 635 2/20/2022
3.0.1 489 12/12/2021
3.0.0 3,426 8/20/2021

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