Class YamlMappingSyntaxNode
Namespace: Aspose.Html.Toolkit.Markdown.Syntax.Extensions
Assembly: Aspose.HTML.dll (25.12.0)
Defines the YamlMappingSyntaxNode
[ComVisible(true)]
public sealed class YamlMappingSyntaxNode : ChildFrontMatterSyntaxNode, IEnumerable<ChildFrontMatterSyntaxNode>, IEnumerableInheritance
object ← ChildFrontMatterSyntaxNode ← YamlMappingSyntaxNode
Implements
IEnumerable<ChildFrontMatterSyntaxNode> , IEnumerable
Inherited Members
ChildFrontMatterSyntaxNode.GetEnumerator() , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Properties
Children
Get the all Children.
public IEnumerable<KeyValuePair<ChildFrontMatterSyntaxNode, ChildFrontMatterSyntaxNode>> Children { get; }Property Value
IEnumerable < KeyValuePair < ChildFrontMatterSyntaxNode , ChildFrontMatterSyntaxNode >>
Keys
Get all Keys.
public IEnumerable<ChildFrontMatterSyntaxNode> Keys { get; }Property Value
IEnumerable < ChildFrontMatterSyntaxNode >
Values
Get all Values.
public IEnumerable<ChildFrontMatterSyntaxNode> Values { get; }Property Value
IEnumerable < ChildFrontMatterSyntaxNode >
this[int]
Get the value by index.
public ChildFrontMatterSyntaxNode this[int index] { get; }Property Value
Exceptions
Throw the ArgumentOutOfRangeException
this[string]
Get the ChildFrontMatterSyntaxNode by string key.
public ChildFrontMatterSyntaxNode this[string key] { get; }Property Value
Exceptions
Methods
GetEnumerator()
Gets the enumerator.
public override IEnumerator<ChildFrontMatterSyntaxNode> GetEnumerator()Returns
IEnumerator < ChildFrontMatterSyntaxNode >
An System.Collections.IEnumerator object that can be used to iterate through the collection.