TestimoX

API Reference

Struct

GraphEdge

Namespace ADPlayground
Assembly ADPlayground
Base ValueType
Implements
IEquatable<GraphEdge>
Modifiers sealed

Represents a relationship between two Active Directory objects.

Inheritance

  • ValueType
  • GraphEdge

Constructors

public GraphEdge(String From, String To, String Type) #

Represents a relationship between two Active Directory objects.

Parameters

From System.String requiredposition: 0
Starting object distinguished name or SID.
To System.String requiredposition: 1
Target object distinguished name or SID.
Type System.String requiredposition: 2
Relationship type (e.g. MemberOf, WriteMembers).

Methods

public Void Deconstruct(out String From, out String To, out String Type) #
Returns: Void

Parameters

From String requiredposition: 0
To String requiredposition: 1
Type String requiredposition: 2
public virtual Boolean Equals(GraphEdge other) #
Returns: Boolean

Parameters

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

Properties

public String From { get; set; } #

Starting object distinguished name or SID.

public String To { get; set; } #

Target object distinguished name or SID.

public String Type { get; set; } #

Relationship type (e.g. MemberOf, WriteMembers).