Table of Contents

Class ArchiveMetaInformation

Namespace
Fluxzy
Assembly
Fluxzy.Core.dll

Meta information about an archive.

public class ArchiveMetaInformation
Inheritance
ArchiveMetaInformation
Inherited Members

Properties

ArchiveVersion

Archive version

public string ArchiveVersion { get; set; }

Property Value

string

CaptureDate

The date when the archive was created.

public DateTime CaptureDate { get; set; }

Property Value

DateTime

CapturedSetting

Snapshot of the FluxzySetting that was active when the archive was produced. Sensitive fields (PKCS#12 password and file path, proxy authentication password, certificate cache directory, user agent configuration file) are scrubbed before serialization. When RedactSettingsInArchive is true, alteration rules and the save filter are also omitted. Null on archives produced by Fluxzy <= 0.2.0 and on archives produced by import engines.

public FluxzySetting? CapturedSetting { get; set; }

Property Value

FluxzySetting

EnvironmentInformation

Information about the environment where the archive was created.

public EnvironmentInformation? EnvironmentInformation { get; set; }

Property Value

EnvironmentInformation

FluxzyVersion

Fluxzy version used to create this archive

public string FluxzyVersion { get; set; }

Property Value

string

Properties

Can be used to store additional information about the archive.

public Dictionary<string, string> Properties { get; set; }

Property Value

Dictionary<string, string>

ResolvedEndPoints

Endpoints the proxy was actually listening on once Proxy.Run() resolved them. Differs from BoundPoints when a configured port of 0 was replaced by an OS-assigned ephemeral port.

public List<IPEndPoint> ResolvedEndPoints { get; set; }

Property Value

List<IPEndPoint>

Tags

List of available tags on this archive.

public HashSet<Tag> Tags { get; set; }

Property Value

HashSet<Tag>

ViewFilters

List of available filters on this archive.

public List<Filter> ViewFilters { get; set; }

Property Value

List<Filter>