LinkReferenceDefinitionSyntaxNode Class

LinkReferenceDefinitionSyntaxNode class

Represent the LinkReferenceDefinitionSyntaxNode.

public sealed class LinkReferenceDefinitionSyntaxNode : LeafBlockSyntaxNode

Properties

NameDescription
getFirstChild Get the first child.
getLastChild Get the last child.
getNextSibling Get ghe next sibling.
getParent Get the parent node.
getPreviousSibling Get the previous sibling.

Methods

NameDescription
accept(MarkdownSyntaxVisitor)Defines the interface for accept visitor.
appendChild(MarkdownSyntaxNode)Append child node.
childNodes()Get the child nodes collection.
getDestination()Returns the link reference destination.
getLabel()Returns the link reference label.
getLeadingTrivia()Get the leading trivia.
getSyntaxTree()Get the syntax tree.
getTitle()Returns the link reference title.
getTrailingTrivia()Get the Trailing trivia.
insertBefore(MarkdownSyntaxNode, MarkdownSyntaxNode)Insert before node.
removeChild(MarkdownSyntaxNode)Remove the child.
replaceChild(MarkdownSyntaxNode, MarkdownSyntaxNode)Replace the child node.
setDestination(LinkDestinationSyntaxNode)Sets the link reference destination.
setLabel(TextSyntaxNode)Sets the link reference label.
setTitle(LinkTitleSyntaxNode)Sets the link reference title.
toString()Override ToString method.
writeTo(MarkdownTextWriter)Write to MarkdownTextWriter.
writeTo(TextWriter)Write nodes to text writer.

See Also