TestimoX

API Reference

Class

FileProbe

Namespace ADPlayground.Sysvol.SysvolConsistencyAnalyzer
Assembly ADPlayground
Implements
IEquatable<FileProbe>
Modifiers sealed

Represents a per-DC probe result for a single SYSVOL-relative path.

Inheritance

  • Object
  • FileProbe

Constructors

public FileProbe(String server, String fullPath, Boolean exists, Nullable<Int64> length, Nullable<DateTime> lastWriteTimeUtc) #

Initializes a new instance of the FileProbe record.

Parameters

server System.String requiredposition: 0
DNS host name of the domain controller.
fullPath System.String requiredposition: 1
Full UNC path that was probed.
exists System.Boolean requiredposition: 2
True when the file or directory exists.
length System.Nullable{System.Int64} requiredposition: 3
File length in bytes when available; null for missing or directories.
lastWriteTimeUtc System.Nullable{System.DateTime} requiredposition: 4
Last write time in UTC when available.

Methods

public FileProbe <Clone>$() #
Returns: FileProbe
public virtual Boolean Equals(FileProbe other) #
Returns: Boolean

Parameters

obj Object requiredposition: 0
public override Int32 GetHashCode() #
Returns: Int32
public override String ToString() #
Returns: String

Properties

public String Server { get; set; } #

DNS host name of the domain controller.

public String FullPath { get; set; } #

Full UNC path that was probed.

public Boolean Exists { get; set; } #

True when the file or directory exists.

public Nullable<Int64> Length { get; set; } #

File length in bytes when available; null for missing or directories.

public Nullable<DateTime> LastWriteTimeUtc { get; set; } #

Last write time in UTC when available.