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
CaptureDate
The date when the archive was created.
public DateTime CaptureDate { get; set; }
Property Value
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
EnvironmentInformation
Information about the environment where the archive was created.
public EnvironmentInformation? EnvironmentInformation { get; set; }
Property Value
FluxzyVersion
Fluxzy version used to create this archive
public string FluxzyVersion { get; set; }
Property Value
Properties
Can be used to store additional information about the archive.
public Dictionary<string, string> Properties { get; set; }
Property Value
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
Tags
List of available tags on this archive.
public HashSet<Tag> Tags { get; set; }
Property Value
ViewFilters
List of available filters on this archive.
public List<Filter> ViewFilters { get; set; }