GraphQL.Language.AST.Directive.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( Directive other ) : bool
other Directive
return bool
        protected bool Equals(Directive other)
        {
            return string.Equals(Name, other.Name);
        }