Skip to content
Tracon

DocumentAttachmentSummary

Namespace Tracon · Assembly Tracon.Core.dll

A document attachment’s identifying information, without its content.

public readonly struct DocumentAttachmentSummary : IEquatable<DocumentAttachmentSummary>

IEquatable<DocumentAttachmentSummary>

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

DocumentAttachmentSummary(string, int, string)

Section titled “ DocumentAttachmentSummary(string, int, string)”

A document attachment’s identifying information, without its content.

public DocumentAttachmentSummary(string Name, int SizeBytes, string Sha256)

Name string

The document’s name.

SizeBytes int

The document’s UTF-8 byte size.

Sha256 string

The document’s SHA-256 hash, as lowercase hex.

The document’s name.

public string Name { get; init; }

string

The document’s SHA-256 hash, as lowercase hex.

public string Sha256 { get; init; }

string

The document’s UTF-8 byte size.

public int SizeBytes { get; init; }

int

Deconstruct(out string, out int, out string)

Section titled “ Deconstruct(out string, out int, out string)”
public void Deconstruct(out string Name, out int SizeBytes, out string Sha256)

Name string

SizeBytes int

Sha256 string

public override bool Equals(object obj)

obj object

bool

public bool Equals(DocumentAttachmentSummary other)

other DocumentAttachmentSummary

bool

public override int GetHashCode()

int

public override string ToString()

string

operator ==(DocumentAttachmentSummary, DocumentAttachmentSummary)

Section titled “ operator ==(DocumentAttachmentSummary, DocumentAttachmentSummary)”
public static bool operator ==(DocumentAttachmentSummary left, DocumentAttachmentSummary right)

left DocumentAttachmentSummary

right DocumentAttachmentSummary

bool

operator !=(DocumentAttachmentSummary, DocumentAttachmentSummary)

Section titled “ operator !=(DocumentAttachmentSummary, DocumentAttachmentSummary)”
public static bool operator !=(DocumentAttachmentSummary left, DocumentAttachmentSummary right)

left DocumentAttachmentSummary

right DocumentAttachmentSummary

bool