VirtualStorageLibrary
Search Results for

    Show / Hide Table of Contents

    Struct VirtualID

    A structure representing a unique identifier within the virtual storage library. This identifier is based on a randomly generated UUID version 4 (UUIDv4). UUIDv4 is a 128-bit value that ensures high uniqueness and has strong cryptographic properties.

    Implements
    IEquatable<VirtualID>
    Inherited Members
    ValueType.Equals(object)
    ValueType.GetHashCode()
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: AkiraNetwork.VirtualStorageLibrary
    Assembly: VirtualStorageLibrary.dll
    Syntax
    public readonly record struct VirtualID : IEquatable<VirtualID>

    Constructors

    VirtualID()

    Initializes a new instance of the VirtualID structure, generating a unique identifier.

    Declaration
    public VirtualID()

    Properties

    ID

    Gets the unique identifier.

    Declaration
    public Guid ID { get; }
    Property Value
    Type Description
    Guid

    A Guid value representing the unique identifier.

    Methods

    ToString()

    Returns a string representation of this instance's unique identifier.

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    A string that represents the unique identifier.

    Overrides
    ValueType.ToString()

    Implements

    IEquatable<T>

    Extension Methods

    VirtualTextFormatter.GenerateSingleTableDebugText<T>(T)
    In this article
    Back to top Generated by DocFX