TestimoX

API Reference

Class

GpoBackupDiff

Namespace ADPlayground.Gpo
Assembly ADPlayground
Implements
IEquatable<GpoBackupDiff>
Modifiers sealed

Represents differences between two GPO backups.

Inheritance

  • Object
  • GpoBackupDiff

Constructors

public GpoBackupDiff(IReadOnlyList<String> Added, IReadOnlyList<String> Removed, IReadOnlyList<String> Modified) #

Represents differences between two GPO backups.

Parameters

Added System.Collections.Generic.IReadOnlyList{System.String} requiredposition: 0
Files present only in the right-hand backup.
Removed System.Collections.Generic.IReadOnlyList{System.String} requiredposition: 1
Files present only in the left-hand backup.
Modified System.Collections.Generic.IReadOnlyList{System.String} requiredposition: 2
Files present in both but with different contents.

Methods

public GpoBackupDiff <Clone>$() #
Returns: GpoBackupDiff
public Void Deconstruct(out IReadOnlyList<String> Added, out IReadOnlyList<String> Removed, out IReadOnlyList<String> Modified) #
Returns: Void

Parameters

Added IReadOnlyList<String> requiredposition: 0
Removed IReadOnlyList<String> requiredposition: 1
Modified IReadOnlyList<String> requiredposition: 2
public virtual Boolean Equals(GpoBackupDiff other) #
Returns: Boolean

Parameters

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

Properties

public IReadOnlyList<String> Added { get; set; } #

Files present only in the right-hand backup.

public IReadOnlyList<String> Removed { get; set; } #

Files present only in the left-hand backup.

public IReadOnlyList<String> Modified { get; set; } #

Files present in both but with different contents.