Relativity.DataTransfer.Nodes.Node
namespace Relativity.DataTransfer.Nodes
{
public abstract class Node : INode, IEquatable<Node>
{
public string Name { get; }
public INodeContext Context { get; }
public INode Parent { get; }
public virtual string AbsolutePath { get; }
public string HashedName { get; }
public string HashedAbsolutePath { get; }
protected Node(string name, INode parentNode);
protected Node(string name, IRoot rootNode, INodeContext context);
public bool Equals(Node other);
public static bool operator ==(Node left, Node right);
public static bool operator !=(Node left, Node right);
}
}