EmbeddedSourceInfo
Namespace: Dotsider.Core.Analysis.Models
Assembly: Dotsider.Core.dll
Embedded source decoded from a portable PDB document.
public sealed record EmbeddedSourceInfo : IEquatable<EmbeddedSourceInfo>Inheritance
Section titled “Inheritance”Object → EmbeddedSourceInfo
Implements
Section titled “Implements”Constructors
Section titled “Constructors”EmbeddedSourceInfo(string, string, byte[])
Section titled “EmbeddedSourceInfo(string, string, byte[])”Embedded source decoded from a portable PDB document.
Parameters:
Document(String): The PDB document path.Text(String): The decoded source text.Bytes(Byte[]): The decoded source bytes.
public EmbeddedSourceInfo(string Document, string Text, byte[] Bytes)Properties
Section titled “Properties”The decoded source bytes.
Returns: Byte[]
public byte[] Bytes { get; init; }Document
Section titled “Document”The PDB document path.
Returns: String
public string Document { get; init; }The decoded source text.
Returns: String
public string Text { get; init; }