Files
git.stella-ops.org/local-nugets/yamldotnet/9.1.0/lib/net20/YamlDotNet.xml
StellaOps Bot a7f3c7869a nuget updates
2025-11-22 14:02:06 +02:00

2789 lines
129 KiB
XML

<?xml version="1.0"?>
<doc>
<assembly>
<name>YamlDotNet</name>
</assembly>
<members>
<member name="T:YamlDotNet.Core.AnchorNotFoundException">
<summary>
The exception that is thrown when an alias references an anchor that does not exist.
</summary>
</member>
<member name="M:YamlDotNet.Core.AnchorNotFoundException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.AnchorNotFoundException"/> class.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:YamlDotNet.Core.AnchorNotFoundException.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.AnchorNotFoundException"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.AnchorNotFoundException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.AnchorNotFoundException"/> class.
</summary>
<param name="message">The message.</param>
<param name="inner">The inner.</param>
</member>
<member name="T:YamlDotNet.Core.Constants">
<summary>
Defines constants that relate to the YAML specification.
</summary>
</member>
<member name="T:YamlDotNet.Core.Emitter">
<summary>
Emits YAML streams.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.#ctor(System.IO.TextWriter)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Emitter"/> class.
</summary>
<param name="output">The <see cref="T:System.IO.TextWriter"/> where the emitter will write.</param>
</member>
<member name="M:YamlDotNet.Core.Emitter.#ctor(System.IO.TextWriter,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Emitter"/> class.
</summary>
<param name="output">The <see cref="T:System.IO.TextWriter"/> where the emitter will write.</param>
<param name="bestIndent">The preferred indentation.</param>
</member>
<member name="M:YamlDotNet.Core.Emitter.#ctor(System.IO.TextWriter,System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Emitter"/> class.
</summary>
<param name="output">The <see cref="T:System.IO.TextWriter"/> where the emitter will write.</param>
<param name="bestIndent">The preferred indentation.</param>
<param name="bestWidth">The preferred text width.</param>
</member>
<member name="M:YamlDotNet.Core.Emitter.#ctor(System.IO.TextWriter,System.Int32,System.Int32,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Emitter"/> class.
</summary>
<param name="output">The <see cref="T:System.IO.TextWriter"/> where the emitter will write.</param>
<param name="bestIndent">The preferred indentation.</param>
<param name="bestWidth">The preferred text width.</param>
<param name="isCanonical">If true, write the output in canonical form.</param>
</member>
<member name="M:YamlDotNet.Core.Emitter.Emit(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Emit an evt.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.NeedMoreEvents">
<summary>
Check if we need to accumulate more events before emitting.
We accumulate extra
- 1 event for DOCUMENT-START
- 2 events for SEQUENCE-START
- 3 events for MAPPING-START
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitStreamStart(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Expect STREAM-START.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitDocumentStart(YamlDotNet.Core.Events.ParsingEvent,System.Boolean)">
<summary>
Expect DOCUMENT-START or STREAM-END.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitDocumentContent(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Expect the root node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitNode(YamlDotNet.Core.Events.ParsingEvent,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Expect a node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitAlias">
<summary>
Expect ALIAS.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitScalar(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Expect SCALAR.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitSequenceStart(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Expect SEQUENCE-START.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitMappingStart(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Expect MAPPING-START.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitDocumentEnd(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Expect DOCUMENT-END.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitFlowSequenceItem(YamlDotNet.Core.Events.ParsingEvent,System.Boolean)">
<summary>
Expect a flow item node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitFlowMappingKey(YamlDotNet.Core.Events.ParsingEvent,System.Boolean)">
<summary>
Expect a flow key node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitFlowMappingValue(YamlDotNet.Core.Events.ParsingEvent,System.Boolean)">
<summary>
Expect a flow value node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitBlockSequenceItem(YamlDotNet.Core.Events.ParsingEvent,System.Boolean)">
<summary>
Expect a block item node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitBlockMappingKey(YamlDotNet.Core.Events.ParsingEvent,System.Boolean)">
<summary>
Expect a block key node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.EmitBlockMappingValue(YamlDotNet.Core.Events.ParsingEvent,System.Boolean)">
<summary>
Expect a block value node.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.CheckEmptyDocument">
<summary>
Check if the document content is an empty scalar.
</summary>
</member>
<member name="M:YamlDotNet.Core.Emitter.CheckSimpleKey">
<summary>
Check if the next node can be expressed as a simple key.
</summary>
</member>
<member name="P:YamlDotNet.Core.EmitterSettings.BestIndent">
<summary>
The preferred indentation.
</summary>
</member>
<member name="P:YamlDotNet.Core.EmitterSettings.BestWidth">
<summary>
The preferred text width.
</summary>
</member>
<member name="P:YamlDotNet.Core.EmitterSettings.IsCanonical">
<summary>
If true, write the output in canonical form.
</summary>
</member>
<member name="P:YamlDotNet.Core.EmitterSettings.SkipAnchorName">
<summary>
If true, write output without anchor names.
</summary>
</member>
<member name="P:YamlDotNet.Core.EmitterSettings.MaxSimpleKeyLength">
<summary>
The maximum allowed length for simple keys.
</summary>
<remarks>
The specifiction mandates 1024 characters, but any desired value may be used.
</remarks>
</member>
<member name="T:YamlDotNet.Core.Events.AnchorAlias">
<summary>
Represents an alias event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.AnchorAlias.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.AnchorAlias.Value">
<summary>
Gets the value of the alias.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.AnchorAlias.#ctor(System.String,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.AnchorAlias"/> class.
</summary>
<param name="value">The value of the alias.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.AnchorAlias.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.AnchorAlias"/> class.
</summary>
<param name="value">The value of the alias.</param>
</member>
<member name="M:YamlDotNet.Core.Events.AnchorAlias.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.AnchorAlias.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="M:YamlDotNet.Core.Events.Comment.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="T:YamlDotNet.Core.Events.DocumentEnd">
<summary>
Represents a document end event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentEnd.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentEnd.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentEnd.IsImplicit">
<summary>
Gets a value indicating whether this instance is implicit.
</summary>
<value>
<c>true</c> if this instance is implicit; otherwise, <c>false</c>.
</value>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentEnd.#ctor(System.Boolean,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.DocumentEnd"/> class.
</summary>
<param name="isImplicit">Indicates whether the event is implicit.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentEnd.#ctor(System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.DocumentEnd"/> class.
</summary>
<param name="isImplicit">Indicates whether the event is implicit.</param>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentEnd.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentEnd.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.DocumentStart">
<summary>
Represents a document start event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentStart.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentStart.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentStart.Tags">
<summary>
Gets the tags.
</summary>
<value>The tags.</value>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentStart.Version">
<summary>
Gets the version.
</summary>
<value>The version.</value>
</member>
<member name="P:YamlDotNet.Core.Events.DocumentStart.IsImplicit">
<summary>
Gets a value indicating whether this instance is implicit.
</summary>
<value>
<c>true</c> if this instance is implicit; otherwise, <c>false</c>.
</value>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentStart.#ctor(YamlDotNet.Core.Tokens.VersionDirective,YamlDotNet.Core.TagDirectiveCollection,System.Boolean,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.DocumentStart"/> class.
</summary>
<param name="version">The version.</param>
<param name="tags">The tags.</param>
<param name="isImplicit">Indicates whether the event is implicit.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentStart.#ctor(YamlDotNet.Core.Tokens.VersionDirective,YamlDotNet.Core.TagDirectiveCollection,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.DocumentStart"/> class.
</summary>
<param name="version">The version.</param>
<param name="tags">The tags.</param>
<param name="isImplicit">Indicates whether the event is implicit.</param>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.DocumentStart"/> class.
</summary>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.DocumentStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentStart.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.DocumentStart.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.IParsingEventVisitor">
<summary>
Callback interface for external event Visitor.
</summary>
</member>
<member name="T:YamlDotNet.Core.Events.MappingEnd">
<summary>
Represents a mapping end event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.MappingEnd.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.MappingEnd.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.MappingEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.MappingEnd"/> class.
</summary>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.MappingEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.MappingEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.MappingEnd.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.MappingEnd.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.MappingStart">
<summary>
Represents a mapping start event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.MappingStart.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.MappingStart.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.MappingStart.IsImplicit">
<summary>
Gets a value indicating whether this instance is implicit.
</summary>
<value>
<c>true</c> if this instance is implicit; otherwise, <c>false</c>.
</value>
</member>
<member name="P:YamlDotNet.Core.Events.MappingStart.IsCanonical">
<summary>
Gets a value indicating whether this instance is canonical.
</summary>
<value></value>
</member>
<member name="P:YamlDotNet.Core.Events.MappingStart.Style">
<summary>
Gets the style of the mapping.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.MappingStart.#ctor(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.MappingStart"/> class.
</summary>
<param name="anchor">The anchor.</param>
<param name="tag">The tag.</param>
<param name="isImplicit">Indicates whether the event is implicit.</param>
<param name="style">The style of the mapping.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.MappingStart.#ctor(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.MappingStyle)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.MappingStart"/> class.
</summary>
<param name="anchor">The anchor.</param>
<param name="tag">The tag.</param>
<param name="isImplicit">Indicates whether the event is implicit.</param>
<param name="style">The style of the mapping.</param>
</member>
<member name="M:YamlDotNet.Core.Events.MappingStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.MappingStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.MappingStart.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.MappingStart.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.MappingStyle">
<summary>
Specifies the style of a mapping.
</summary>
</member>
<member name="F:YamlDotNet.Core.Events.MappingStyle.Any">
<summary>
Let the emitter choose the style.
</summary>
</member>
<member name="F:YamlDotNet.Core.Events.MappingStyle.Block">
<summary>
The block mapping style.
</summary>
</member>
<member name="F:YamlDotNet.Core.Events.MappingStyle.Flow">
<summary>
The flow mapping style.
</summary>
</member>
<member name="T:YamlDotNet.Core.Events.NodeEvent">
<summary>
Contains the behavior that is common between node events.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.NodeEvent.Anchor">
<summary>
Gets the anchor.
</summary>
<value></value>
</member>
<member name="P:YamlDotNet.Core.Events.NodeEvent.Tag">
<summary>
Gets the tag.
</summary>
<value></value>
</member>
<member name="P:YamlDotNet.Core.Events.NodeEvent.IsCanonical">
<summary>
Gets a value indicating whether this instance is canonical.
</summary>
<value></value>
</member>
<member name="M:YamlDotNet.Core.Events.NodeEvent.#ctor(System.String,System.String,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.NodeEvent"/> class.
</summary>
<param name="anchor">The anchor.</param>
<param name="tag">The tag.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.NodeEvent.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.NodeEvent"/> class.
</summary>
</member>
<member name="T:YamlDotNet.Core.Events.ParsingEvent">
<summary>
Base class for parsing events.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.ParsingEvent.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.ParsingEvent.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.ParsingEvent.Start">
<summary>
Gets the position in the input stream where the event starts.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.ParsingEvent.End">
<summary>
Gets the position in the input stream where the event ends.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.ParsingEvent.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Accepts the specified visitor.
</summary>
<param name="visitor">Visitor to accept, may not be null</param>
</member>
<member name="M:YamlDotNet.Core.Events.ParsingEvent.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.ParsingEvent"/> class.
</summary>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="T:YamlDotNet.Core.Events.Scalar">
<summary>
Represents a scalar event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.Scalar.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.Scalar.Value">
<summary>
Gets the value.
</summary>
<value>The value.</value>
</member>
<member name="P:YamlDotNet.Core.Events.Scalar.Style">
<summary>
Gets the style of the scalar.
</summary>
<value>The style.</value>
</member>
<member name="P:YamlDotNet.Core.Events.Scalar.IsPlainImplicit">
<summary>
Gets a value indicating whether the tag is optional for the plain style.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.Scalar.IsQuotedImplicit">
<summary>
Gets a value indicating whether the tag is optional for any non-plain style.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.Scalar.IsCanonical">
<summary>
Gets a value indicating whether this instance is canonical.
</summary>
<value></value>
</member>
<member name="M:YamlDotNet.Core.Events.Scalar.#ctor(System.String,System.String,System.String,YamlDotNet.Core.ScalarStyle,System.Boolean,System.Boolean,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.Scalar"/> class.
</summary>
<param name="anchor">The anchor.</param>
<param name="tag">The tag.</param>
<param name="value">The value.</param>
<param name="style">The style.</param>
<param name="isPlainImplicit">.</param>
<param name="isQuotedImplicit">.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.Scalar.#ctor(System.String,System.String,System.String,YamlDotNet.Core.ScalarStyle,System.Boolean,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.Scalar"/> class.
</summary>
<param name="anchor">The anchor.</param>
<param name="tag">The tag.</param>
<param name="value">The value.</param>
<param name="style">The style.</param>
<param name="isPlainImplicit">.</param>
<param name="isQuotedImplicit">.</param>
</member>
<member name="M:YamlDotNet.Core.Events.Scalar.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.Scalar"/> class.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:YamlDotNet.Core.Events.Scalar.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.Scalar"/> class.
</summary>
<param name="tag">The tag.</param>
<param name="value">The value.</param>
</member>
<member name="M:YamlDotNet.Core.Events.Scalar.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.Scalar"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.Scalar.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.Scalar.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.SequenceEnd">
<summary>
Represents a sequence end event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.SequenceEnd.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.SequenceEnd.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.SequenceEnd"/> class.
</summary>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.SequenceEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceEnd.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceEnd.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.SequenceStart">
<summary>
Represents a sequence start event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.SequenceStart.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.SequenceStart.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.SequenceStart.IsImplicit">
<summary>
Gets a value indicating whether this instance is implicit.
</summary>
<value>
<c>true</c> if this instance is implicit; otherwise, <c>false</c>.
</value>
</member>
<member name="P:YamlDotNet.Core.Events.SequenceStart.IsCanonical">
<summary>
Gets a value indicating whether this instance is canonical.
</summary>
<value></value>
</member>
<member name="P:YamlDotNet.Core.Events.SequenceStart.Style">
<summary>
Gets the style.
</summary>
<value>The style.</value>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceStart.#ctor(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.SequenceStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.SequenceStart"/> class.
</summary>
<param name="anchor">The anchor.</param>
<param name="tag">The tag.</param>
<param name="isImplicit">if set to <c>true</c> [is implicit].</param>
<param name="style">The style.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceStart.#ctor(System.String,System.String,System.Boolean,YamlDotNet.Core.Events.SequenceStyle)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.SequenceStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceStart.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.SequenceStart.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.SequenceStyle">
<summary>
Specifies the style of a sequence.
</summary>
</member>
<member name="F:YamlDotNet.Core.Events.SequenceStyle.Any">
<summary>
Let the emitter choose the style.
</summary>
</member>
<member name="F:YamlDotNet.Core.Events.SequenceStyle.Block">
<summary>
The block sequence style.
</summary>
</member>
<member name="F:YamlDotNet.Core.Events.SequenceStyle.Flow">
<summary>
The flow sequence style.
</summary>
</member>
<member name="T:YamlDotNet.Core.Events.StreamEnd">
<summary>
Represents a stream end event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.StreamEnd.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.StreamEnd.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.StreamEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.StreamEnd"/> class.
</summary>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.StreamEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.StreamEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.StreamEnd.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.StreamEnd.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.Events.StreamStart">
<summary>
Represents a stream start event.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.StreamStart.NestingIncrease">
<summary>
Gets a value indicating the variation of depth caused by this event.
The value can be either -1, 0 or 1. For start events, it will be 1,
for end events, it will be -1, and for the remaining events, it will be 0.
</summary>
</member>
<member name="P:YamlDotNet.Core.Events.StreamStart.Type">
<summary>
Gets the event type, which allows for simpler type comparisons.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.StreamStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.StreamStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Events.StreamStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Events.StreamStart"/> class.
</summary>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="M:YamlDotNet.Core.Events.StreamStart.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Events.StreamStart.Accept(YamlDotNet.Core.Events.IParsingEventVisitor)">
<summary>
Invokes run-time type specific Visit() method of the specified visitor.
</summary>
<param name="visitor">visitor, may not be null.</param>
</member>
<member name="T:YamlDotNet.Core.ForwardAnchorNotSupportedException">
<summary>
The exception that is thrown when an alias references an anchor
that has not yet been defined in a context that does not support forward references.
</summary>
</member>
<member name="M:YamlDotNet.Core.ForwardAnchorNotSupportedException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.AnchorNotFoundException"/> class.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:YamlDotNet.Core.ForwardAnchorNotSupportedException.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.AnchorNotFoundException"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.ForwardAnchorNotSupportedException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.AnchorNotFoundException"/> class.
</summary>
<param name="message">The message.</param>
<param name="inner">The inner.</param>
</member>
<member name="T:YamlDotNet.Core.HashCode">
<summary>
Supports implementations of <see cref="M:System.Object.GetHashCode"/> by providing methods to combine two hash codes.
</summary>
</member>
<member name="M:YamlDotNet.Core.HashCode.CombineHashCodes(System.Int32,System.Int32)">
<summary>
Combines two hash codes.
</summary>
<param name="h1">The first hash code.</param>
<param name="h2">The second hash code.</param>
<returns></returns>
</member>
<member name="T:YamlDotNet.Core.IEmitter">
<summary>
Represents a YAML stream emitter.
</summary>
</member>
<member name="M:YamlDotNet.Core.IEmitter.Emit(YamlDotNet.Core.Events.ParsingEvent)">
<summary>
Emits an event.
</summary>
</member>
<member name="P:YamlDotNet.Core.ILookAheadBuffer.EndOfInput">
<summary>
Gets a value indicating whether the end of the input reader has been reached.
</summary>
</member>
<member name="M:YamlDotNet.Core.ILookAheadBuffer.Peek(System.Int32)">
<summary>
Gets the character at the specified offset.
</summary>
</member>
<member name="M:YamlDotNet.Core.ILookAheadBuffer.Skip(System.Int32)">
<summary>
Skips the next <paramref name="length"/> characters. Those characters must have been
obtained first by calling the <see cref="M:YamlDotNet.Core.ILookAheadBuffer.Peek(System.Int32)"/> method.
</summary>
</member>
<member name="T:YamlDotNet.Core.InsertionQueue`1">
<summary>
Generic queue on which items may be inserted
</summary>
</member>
<member name="P:YamlDotNet.Core.InsertionQueue`1.Count">
<summary>
Gets the number of items that are contained by the queue.
</summary>
</member>
<member name="M:YamlDotNet.Core.InsertionQueue`1.Enqueue(`0)">
<summary>
Enqueues the specified item.
</summary>
<param name="item">The item to be enqueued.</param>
</member>
<member name="M:YamlDotNet.Core.InsertionQueue`1.Dequeue">
<summary>
Dequeues an item.
</summary>
<returns>Returns the item that been dequeued.</returns>
</member>
<member name="M:YamlDotNet.Core.InsertionQueue`1.Insert(System.Int32,`0)">
<summary>
Inserts an item at the specified index.
</summary>
<param name="index">The index where to insert the item.</param>
<param name="item">The item to be inserted.</param>
</member>
<member name="T:YamlDotNet.Core.IParser">
<summary>
Represents a YAML stream parser.
</summary>
</member>
<member name="P:YamlDotNet.Core.IParser.Current">
<summary>
Gets the current event. Returns null before the first call to <see cref="M:YamlDotNet.Core.IParser.MoveNext" />,
and also after <see cref="M:YamlDotNet.Core.IParser.MoveNext" /> returns false.
</summary>
</member>
<member name="M:YamlDotNet.Core.IParser.MoveNext">
<summary>
Moves to the next event.
</summary>
<returns>Returns true if there are more events available, otherwise returns false.</returns>
</member>
<member name="T:YamlDotNet.Core.IScanner">
<summary>
Defines the interface for a stand-alone YAML scanner that
converts a sequence of characters into a sequence of YAML tokens.
</summary>
</member>
<member name="P:YamlDotNet.Core.IScanner.CurrentPosition">
<summary>
Gets the current position inside the input stream.
</summary>
<value>The current position.</value>
</member>
<member name="P:YamlDotNet.Core.IScanner.Current">
<summary>
Gets the current token.
</summary>
</member>
<member name="M:YamlDotNet.Core.IScanner.MoveNext">
<summary>
Moves to the next token and consumes the current token.
</summary>
</member>
<member name="M:YamlDotNet.Core.IScanner.MoveNextWithoutConsuming">
<summary>
Moves to the next token without consuming the current token.
</summary>
</member>
<member name="M:YamlDotNet.Core.IScanner.ConsumeCurrent">
<summary>
Consumes the current token.
</summary>
</member>
<member name="T:YamlDotNet.Core.LookAheadBuffer">
<summary>
Provides access to a stream and allows to peek at the next characters,
up to the buffer's capacity.
</summary>
<remarks>
This class implements a circular buffer with a fixed capacity.
</remarks>
</member>
<member name="M:YamlDotNet.Core.LookAheadBuffer.#ctor(System.IO.TextReader,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.LookAheadBuffer"/> class.
</summary>
<param name="input">The input.</param>
<param name="capacity">The capacity.</param>
</member>
<member name="P:YamlDotNet.Core.LookAheadBuffer.EndOfInput">
<summary>
Gets a value indicating whether the end of the input reader has been reached.
</summary>
</member>
<member name="M:YamlDotNet.Core.LookAheadBuffer.GetIndexForOffset(System.Int32)">
<summary>
Gets the index of the character for the specified offset.
</summary>
</member>
<member name="M:YamlDotNet.Core.LookAheadBuffer.Peek(System.Int32)">
<summary>
Gets the character at the specified offset.
</summary>
</member>
<member name="M:YamlDotNet.Core.LookAheadBuffer.Cache(System.Int32)">
<summary>
Reads characters until at least <paramref name="length"/> characters are in the buffer.
</summary>
<param name="length">
Number of characters to cache.
</param>
</member>
<member name="M:YamlDotNet.Core.LookAheadBuffer.Skip(System.Int32)">
<summary>
Skips the next <paramref name="length"/> characters. Those characters must have been
obtained first by calling the <see cref="M:YamlDotNet.Core.LookAheadBuffer.Peek(System.Int32)"/> or <see cref="M:YamlDotNet.Core.LookAheadBuffer.Cache(System.Int32)"/> methods.
</summary>
</member>
<member name="T:YamlDotNet.Core.Mark">
<summary>
Represents a location inside a file
</summary>
</member>
<member name="F:YamlDotNet.Core.Mark.Empty">
<summary>
Gets a <see cref="T:YamlDotNet.Core.Mark"/> with empty values.
</summary>
</member>
<member name="P:YamlDotNet.Core.Mark.Index">
<summary>
Gets / sets the absolute offset in the file
</summary>
</member>
<member name="P:YamlDotNet.Core.Mark.Line">
<summary>
Gets / sets the number of the line
</summary>
</member>
<member name="P:YamlDotNet.Core.Mark.Column">
<summary>
Gets / sets the index of the column
</summary>
</member>
<member name="M:YamlDotNet.Core.Mark.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
</member>
<member name="M:YamlDotNet.Core.Mark.Equals(System.Object)">
<summary />
</member>
<member name="M:YamlDotNet.Core.Mark.Equals(YamlDotNet.Core.Mark)">
<summary />
</member>
<member name="M:YamlDotNet.Core.Mark.GetHashCode">
<summary />
</member>
<member name="M:YamlDotNet.Core.Mark.CompareTo(System.Object)">
<summary />
</member>
<member name="M:YamlDotNet.Core.Mark.CompareTo(YamlDotNet.Core.Mark)">
<summary />
</member>
<member name="T:YamlDotNet.Core.MaximumRecursionLevelReachedException">
<summary>
Exception that is thrown when an infinite recursion is detected.
</summary>
</member>
<member name="M:YamlDotNet.Core.MaximumRecursionLevelReachedException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/> class.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:YamlDotNet.Core.MaximumRecursionLevelReachedException.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.MaximumRecursionLevelReachedException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/> class.
</summary>
<param name="message">The message.</param>
<param name="inner">The inner.</param>
</member>
<member name="T:YamlDotNet.Core.MergingParser">
<summary>
Simple implementation of <see cref="T:YamlDotNet.Core.IParser"/> that implements merging: http://yaml.org/type/merge.html
</summary>
</member>
<member name="T:YamlDotNet.Core.Parser">
<summary>
Parses YAML streams.
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.#ctor(System.IO.TextReader)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Parser"/> class.
</summary>
<param name="input">The input where the YAML stream is to be read.</param>
</member>
<member name="M:YamlDotNet.Core.Parser.#ctor(YamlDotNet.Core.IScanner)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Parser"/> class.
</summary>
</member>
<member name="P:YamlDotNet.Core.Parser.Current">
<summary>
Gets the current event.
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.MoveNext">
<summary>
Moves to the next event.
</summary>
<returns>Returns true if there are more events available, otherwise returns false.</returns>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseStreamStart">
<summary>
Parse the production:
stream ::= STREAM-START implicit_document? explicit_document* STREAM-END
************
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseDocumentStart(System.Boolean)">
<summary>
Parse the productions:
implicit_document ::= block_node DOCUMENT-END*
*
explicit_document ::= DIRECTIVE* DOCUMENT-START block_node? DOCUMENT-END*
*************************
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ProcessDirectives(YamlDotNet.Core.TagDirectiveCollection)">
<summary>
Parse directives.
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseDocumentContent">
<summary>
Parse the productions:
explicit_document ::= DIRECTIVE* DOCUMENT-START block_node? DOCUMENT-END*
***********
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ProcessEmptyScalar(YamlDotNet.Core.Mark)">
<summary>
Generate an empty scalar event.
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseNode(System.Boolean,System.Boolean)">
<summary>
Parse the productions:
block_node_or_indentless_sequence ::=
ALIAS
*****
| properties (block_content | indentless_block_sequence)?
********** *
| block_content | indentless_block_sequence
*
block_node ::= ALIAS
*****
| properties block_content?
********** *
| block_content
*
flow_node ::= ALIAS
*****
| properties flow_content?
********** *
| flow_content
*
properties ::= TAG ANCHOR? | ANCHOR TAG?
*************************
block_content ::= block_collection | flow_collection | SCALAR
******
flow_content ::= flow_collection | SCALAR
******
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseDocumentEnd">
<summary>
Parse the productions:
implicit_document ::= block_node DOCUMENT-END*
*************
explicit_document ::= DIRECTIVE* DOCUMENT-START block_node? DOCUMENT-END*
*************
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseBlockSequenceEntry(System.Boolean)">
<summary>
Parse the productions:
block_sequence ::= BLOCK-SEQUENCE-START (BLOCK-ENTRY block_node?)* BLOCK-END
******************** *********** * *********
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseIndentlessSequenceEntry">
<summary>
Parse the productions:
indentless_sequence ::= (BLOCK-ENTRY block_node?)+
*********** *
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseBlockMappingKey(System.Boolean)">
<summary>
Parse the productions:
block_mapping ::= BLOCK-MAPPING_START
*******************
((KEY block_node_or_indentless_sequence?)?
*** *
(VALUE block_node_or_indentless_sequence?)?)*
BLOCK-END
*********
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseBlockMappingValue">
<summary>
Parse the productions:
block_mapping ::= BLOCK-MAPPING_START
((KEY block_node_or_indentless_sequence?)?
(VALUE block_node_or_indentless_sequence?)?)*
***** *
BLOCK-END
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseFlowSequenceEntry(System.Boolean)">
<summary>
Parse the productions:
flow_sequence ::= FLOW-SEQUENCE-START
*******************
(flow_sequence_entry FLOW-ENTRY)*
* **********
flow_sequence_entry?
*
FLOW-SEQUENCE-END
*****************
flow_sequence_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)?
*
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseFlowSequenceEntryMappingKey">
<summary>
Parse the productions:
flow_sequence_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)?
*** *
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseFlowSequenceEntryMappingValue">
<summary>
Parse the productions:
flow_sequence_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)?
***** *
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseFlowSequenceEntryMappingEnd">
<summary>
Parse the productions:
flow_sequence_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)?
*
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseFlowMappingKey(System.Boolean)">
<summary>
Parse the productions:
flow_mapping ::= FLOW-MAPPING-START
******************
(flow_mapping_entry FLOW-ENTRY)*
* **********
flow_mapping_entry?
******************
FLOW-MAPPING-END
****************
flow_mapping_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)?
* *** *
</summary>
</member>
<member name="M:YamlDotNet.Core.Parser.ParseFlowMappingValue(System.Boolean)">
<summary>
Parse the productions:
flow_mapping_entry ::= flow_node | KEY flow_node? (VALUE flow_node?)?
* ***** *
</summary>
</member>
<member name="T:YamlDotNet.Core.ParserExtensions">
<summary>
Extension methods that provide useful abstractions over <see cref="T:YamlDotNet.Core.IParser"/>.
</summary>
</member>
<member name="M:YamlDotNet.Core.ParserExtensions.Consume``1(YamlDotNet.Core.IParser)">
<summary>
Ensures that the current event is of the specified type, returns it and moves to the next event.
</summary>
<typeparam name="T">Type of the <see cref="T:YamlDotNet.Core.Events.ParsingEvent"/>.</typeparam>
<returns>Returns the current event.</returns>
<exception cref="T:YamlDotNet.Core.YamlException">If the current event is not of the specified type.</exception>
</member>
<member name="M:YamlDotNet.Core.ParserExtensions.TryConsume``1(YamlDotNet.Core.IParser,``0@)">
<summary>
Checks whether the current event is of the specified type.
If the event is of the specified type, returns it and moves to the next event.
Otherwise returns null.
</summary>
<typeparam name="T">Type of the <see cref="T:YamlDotNet.Core.Events.ParsingEvent"/>.</typeparam>
<returns>Returns true if the current event is of type T; otherwise returns null.</returns>
</member>
<member name="M:YamlDotNet.Core.ParserExtensions.Require``1(YamlDotNet.Core.IParser)">
<summary>
Enforces that the current event is of the specified type.
</summary>
<typeparam name="T">Type of the <see cref="T:YamlDotNet.Core.Events.ParsingEvent"/>.</typeparam>
<returns>Returns the current event.</returns>
<exception cref="T:YamlDotNet.Core.YamlException">If the current event is not of the specified type.</exception>
</member>
<member name="M:YamlDotNet.Core.ParserExtensions.Accept``1(YamlDotNet.Core.IParser,``0@)">
<summary>
Checks whether the current event is of the specified type.
</summary>
<typeparam name="T">Type of the event.</typeparam>
<returns>Returns true if the current event is of type <typeparamref name="T"/>. Otherwise returns false.</returns>
</member>
<member name="M:YamlDotNet.Core.ParserExtensions.SkipThisAndNestedEvents(YamlDotNet.Core.IParser)">
<summary>
Skips the current event and any nested event.
</summary>
</member>
<member name="T:YamlDotNet.Core.RecursionLevel">
<summary>
Keeps track of the <see cref="F:YamlDotNet.Core.RecursionLevel.current"/> recursion level,
and throws <see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/>
whenever <see cref="P:YamlDotNet.Core.RecursionLevel.Maximum"/> is reached.
</summary>
</member>
<member name="M:YamlDotNet.Core.RecursionLevel.Increment">
<summary>
Increments the <see cref="F:YamlDotNet.Core.RecursionLevel.current"/> recursion level,
and throws <see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/>
if <see cref="P:YamlDotNet.Core.RecursionLevel.Maximum"/> is reached.
</summary>
</member>
<member name="M:YamlDotNet.Core.RecursionLevel.TryIncrement">
<summary>
Increments the <see cref="F:YamlDotNet.Core.RecursionLevel.current"/> recursion level,
and returns whether <see cref="F:YamlDotNet.Core.RecursionLevel.current"/> is still less than <see cref="P:YamlDotNet.Core.RecursionLevel.Maximum"/>.
</summary>
</member>
<member name="M:YamlDotNet.Core.RecursionLevel.Decrement">
<summary>
Decrements the <see cref="F:YamlDotNet.Core.RecursionLevel.current"/> recursion level.
</summary>
</member>
<member name="T:YamlDotNet.Core.ScalarStyle">
<summary>
Specifies the style of a YAML scalar.
</summary>
</member>
<member name="F:YamlDotNet.Core.ScalarStyle.Any">
<summary>
Let the emitter choose the style.
</summary>
</member>
<member name="F:YamlDotNet.Core.ScalarStyle.Plain">
<summary>
The plain scalar style.
</summary>
</member>
<member name="F:YamlDotNet.Core.ScalarStyle.SingleQuoted">
<summary>
The single-quoted scalar style.
</summary>
</member>
<member name="F:YamlDotNet.Core.ScalarStyle.DoubleQuoted">
<summary>
The double-quoted scalar style.
</summary>
</member>
<member name="F:YamlDotNet.Core.ScalarStyle.Literal">
<summary>
The literal scalar style.
</summary>
</member>
<member name="F:YamlDotNet.Core.ScalarStyle.Folded">
<summary>
The folded scalar style.
</summary>
</member>
<member name="T:YamlDotNet.Core.Scanner">
<summary>
Converts a sequence of characters into a sequence of YAML tokens.
</summary>
</member>
<member name="P:YamlDotNet.Core.Scanner.Current">
<summary>
Gets the current token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.#ctor(System.IO.TextReader,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Scanner"/> class.
</summary>
<param name="input">The input.</param>
<param name="skipComments">Indicates whether comments should be ignored</param>
</member>
<member name="P:YamlDotNet.Core.Scanner.CurrentPosition">
<summary>
Gets the current position inside the input stream.
</summary>
<value>The current position.</value>
</member>
<member name="M:YamlDotNet.Core.Scanner.MoveNext">
<summary>
Moves to the next token.
</summary>
<returns></returns>
</member>
<member name="M:YamlDotNet.Core.Scanner.ConsumeCurrent">
<summary>
Consumes the current token and increments the parsed token count
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.StaleSimpleKeys">
<summary>
Check the list of potential simple keys and remove the positions that
cannot contain simple keys anymore.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.UnrollIndent(System.Int32)">
<summary>
Pop indentation levels from the indents stack until the current level
becomes less or equal to the column. For each indentation level, append
the BLOCK-END token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchStreamEnd">
<summary>
Produce the STREAM-END token and shut down the scanner.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanDirective">
<summary>
Scan a YAML-DIRECTIVE or TAG-DIRECTIVE token.
Scope:
%YAML 1.1 # a comment \n
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
%TAG !yaml! tag:yaml.org,2002: \n
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchDocumentIndicator(System.Boolean)">
<summary>
Produce the DOCUMENT-START or DOCUMENT-END token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchFlowCollectionStart(System.Boolean)">
<summary>
Produce the FLOW-SEQUENCE-START or FLOW-MAPPING-START token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.IncreaseFlowLevel">
<summary>
Increase the flow level and resize the simple key list if needed.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchFlowCollectionEnd(System.Boolean)">
<summary>
Produce the FLOW-SEQUENCE-END or FLOW-MAPPING-END token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.DecreaseFlowLevel">
<summary>
Decrease the flow level.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchFlowEntry">
<summary>
Produce the FLOW-ENTRY token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchBlockEntry">
<summary>
Produce the BLOCK-ENTRY token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchKey">
<summary>
Produce the KEY token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchValue">
<summary>
Produce the VALUE token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.RollIndent(System.Int32,System.Int32,System.Boolean,YamlDotNet.Core.Mark)">
<summary>
Push the current indentation level to the stack and set the new level
the current column is greater than the indentation level. In this case,
append or insert the specified token into the token queue.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchAnchor(System.Boolean)">
<summary>
Produce the ALIAS or ANCHOR token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchTag">
<summary>
Produce the TAG token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanTag">
<summary>
Scan a TAG token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchBlockScalar(System.Boolean)">
<summary>
Produce the SCALAR(...,literal) or SCALAR(...,folded) tokens.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanBlockScalar(System.Boolean)">
<summary>
Scan a block scalar.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanBlockScalarBreaks(System.Int32,System.Text.StringBuilder,System.Boolean,YamlDotNet.Core.Mark@,System.Nullable{System.Boolean}@)">
<summary>
Scan indentation spaces and line breaks for a block scalar. Determine the
indentation level if needed.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchFlowScalar(System.Boolean)">
<summary>
Produce the SCALAR(...,single-quoted) or SCALAR(...,double-quoted) tokens.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanFlowScalar(System.Boolean)">
<summary>
Scan a quoted scalar.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.FetchPlainScalar">
<summary>
Produce the SCALAR(...,plain) token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanPlainScalar(System.Boolean@)">
<summary>
Scan a plain scalar.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.RemoveSimpleKey">
<summary>
Remove a potential simple key at the current flow level.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanDirectiveName(YamlDotNet.Core.Mark)">
<summary>
Scan the directive name.
Scope:
%YAML 1.1 # a comment \n
^^^^
%TAG !yaml! tag:yaml.org,2002: \n
^^^
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanVersionDirectiveValue(YamlDotNet.Core.Mark)">
<summary>
Scan the value of VERSION-DIRECTIVE.
Scope:
%YAML 1.1 # a comment \n
^^^^^^
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanTagDirectiveValue(YamlDotNet.Core.Mark)">
<summary>
Scan the value of a TAG-DIRECTIVE token.
Scope:
%TAG !yaml! tag:yaml.org,2002: \n
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanTagUri(System.String,YamlDotNet.Core.Mark)">
<summary>
Scan a tag.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanUriEscapes(YamlDotNet.Core.Mark)">
<summary>
Decode an URI-escape sequence corresponding to a single UTF-8 character.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanTagHandle(System.Boolean,YamlDotNet.Core.Mark)">
<summary>
Scan a tag handle.
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.ScanVersionDirectiveNumber(YamlDotNet.Core.Mark)">
<summary>
Scan the version number of VERSION-DIRECTIVE.
Scope:
%YAML 1.1 # a comment \n
^
%YAML 1.1 # a comment \n
^
</summary>
</member>
<member name="M:YamlDotNet.Core.Scanner.SaveSimpleKey">
<summary>
Check if a simple key may start at the current position and add it if
needed.
</summary>
</member>
<member name="T:YamlDotNet.Core.SemanticErrorException">
<summary>
Exception that is thrown when a semantic error is detected on a YAML stream.
</summary>
</member>
<member name="M:YamlDotNet.Core.SemanticErrorException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.SemanticErrorException"/> class.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:YamlDotNet.Core.SemanticErrorException.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.SemanticErrorException"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.SemanticErrorException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.SemanticErrorException"/> class.
</summary>
<param name="message">The message.</param>
<param name="inner">The inner.</param>
</member>
<member name="T:YamlDotNet.Core.SyntaxErrorException">
<summary>
Exception that is thrown when a syntax error is detected on a YAML stream.
</summary>
</member>
<member name="M:YamlDotNet.Core.SyntaxErrorException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.SyntaxErrorException"/> class.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:YamlDotNet.Core.SyntaxErrorException.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.SyntaxErrorException"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.SyntaxErrorException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.SyntaxErrorException"/> class.
</summary>
<param name="message">The message.</param>
<param name="inner">The inner.</param>
</member>
<member name="T:YamlDotNet.Core.TagDirectiveCollection">
<summary>
Collection of <see cref="T:YamlDotNet.Core.Tokens.TagDirective"/>.
</summary>
</member>
<member name="M:YamlDotNet.Core.TagDirectiveCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.TagDirectiveCollection"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.TagDirectiveCollection.#ctor(System.Collections.Generic.IEnumerable{YamlDotNet.Core.Tokens.TagDirective})">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.TagDirectiveCollection"/> class.
</summary>
<param name="tagDirectives">Initial content of the collection.</param>
</member>
<member name="M:YamlDotNet.Core.TagDirectiveCollection.GetKeyForItem(YamlDotNet.Core.Tokens.TagDirective)">
<summary/>
</member>
<member name="M:YamlDotNet.Core.TagDirectiveCollection.Contains(YamlDotNet.Core.Tokens.TagDirective)">
<summary>
Gets a value indicating whether the collection contains a directive with the same handle
</summary>
</member>
<member name="T:YamlDotNet.Core.Tokens.Anchor">
<summary>
Represents an anchor token.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Anchor.Value">
<summary>
Gets the value.
</summary>
<value>The value.</value>
</member>
<member name="M:YamlDotNet.Core.Tokens.Anchor.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Anchor"/> class.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.Anchor.#ctor(System.String,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Anchor"/> class.
</summary>
<param name="value">The value.</param>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.AnchorAlias">
<summary>
Represents an alias token.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.AnchorAlias.Value">
<summary>
Gets the value of the alias.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.AnchorAlias.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.AnchorAlias"/> class.
</summary>
<param name="value">The value of the anchor.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.AnchorAlias.#ctor(System.String,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.AnchorAlias"/> class.
</summary>
<param name="value">The value of the anchor.</param>
<param name="start">The start position of the event.</param>
<param name="end">The end position of the event.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.BlockEnd">
<summary>
Represents a block end token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockEnd"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.BlockEntry">
<summary>
Represents a block entry event.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockEntry.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockEntry"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockEntry.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockEntry"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.BlockMappingStart">
<summary>
Represents a block mapping start token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockMappingStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockMappingStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockMappingStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockMappingStart"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.BlockSequenceStart">
<summary>
Represents a block sequence start token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockSequenceStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockSequenceStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.BlockSequenceStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.BlockSequenceStart"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.Comment">
<summary>
Represents a comment
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Comment.Value">
<summary>
Gets the value of the comment
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Comment.IsInline">
<summary>
Gets a value indicating whether the comment appears other tokens on that line.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.Comment.#ctor(System.String,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Comment"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.Comment.#ctor(System.String,System.Boolean,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Comment"/> class.
</summary>
</member>
<member name="T:YamlDotNet.Core.Tokens.DocumentEnd">
<summary>
Represents a document end token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.DocumentEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.DocumentEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.DocumentEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.DocumentEnd"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.DocumentStart">
<summary>
Represents a document start token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.DocumentStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.DocumentStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.DocumentStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.DocumentStart"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.Error">
<summary>
Base class for YAML tokens.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Error.Value">
<summary>
Gets the value of the comment
</summary>
</member>
<member name="T:YamlDotNet.Core.Tokens.FlowEntry">
<summary>
Represents a flow entry event.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowEntry.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowEntry"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowEntry.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowEntry"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.FlowMappingEnd">
<summary>
Represents a flow mapping end token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowMappingEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowMappingEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowMappingEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowMappingEnd"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.FlowMappingStart">
<summary>
Represents a flow mapping start token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowMappingStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowMappingStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowMappingStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowMappingStart"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.FlowSequenceEnd">
<summary>
Represents a flow sequence end token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowSequenceEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowSequenceEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowSequenceEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowSequenceEnd"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.FlowSequenceStart">
<summary>
Represents a flow sequence start token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowSequenceStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowSequenceStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.FlowSequenceStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.FlowSequenceStart"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.Key">
<summary>
Represents a key token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.Key.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Key"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.Key.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Key"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.Scalar">
<summary>
Represents a scalar token.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Scalar.Value">
<summary>
Gets the value.
</summary>
<value>The value.</value>
</member>
<member name="P:YamlDotNet.Core.Tokens.Scalar.Style">
<summary>
Gets the style.
</summary>
<value>The style.</value>
</member>
<member name="M:YamlDotNet.Core.Tokens.Scalar.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Scalar"/> class.
</summary>
<param name="value">The value.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.Scalar.#ctor(System.String,YamlDotNet.Core.ScalarStyle)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Scalar"/> class.
</summary>
<param name="value">The value.</param>
<param name="style">The style.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.Scalar.#ctor(System.String,YamlDotNet.Core.ScalarStyle,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Scalar"/> class.
</summary>
<param name="value">The value.</param>
<param name="style">The style.</param>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.StreamEnd">
<summary>
Represents a stream end event.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.StreamEnd.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.StreamEnd"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.StreamEnd.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.StreamEnd"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.StreamStart">
<summary>
Represents a stream start token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.StreamStart.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.StreamStart"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.StreamStart.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.StreamStart"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.Tag">
<summary>
Represents a tag token.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Tag.Handle">
<summary>
Gets the handle.
</summary>
<value>The handle.</value>
</member>
<member name="P:YamlDotNet.Core.Tokens.Tag.Suffix">
<summary>
Gets the suffix.
</summary>
<value>The suffix.</value>
</member>
<member name="M:YamlDotNet.Core.Tokens.Tag.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Tag"/> class.
</summary>
<param name="handle">The handle.</param>
<param name="suffix">The suffix.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.Tag.#ctor(System.String,System.String,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Tag"/> class.
</summary>
<param name="handle">The handle.</param>
<param name="suffix">The suffix.</param>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.TagDirective">
<summary>
Represents a tag directive token.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.TagDirective.Handle">
<summary>
Gets the handle.
</summary>
<value>The handle.</value>
</member>
<member name="P:YamlDotNet.Core.Tokens.TagDirective.Prefix">
<summary>
Gets the prefix.
</summary>
<value>The prefix.</value>
</member>
<member name="M:YamlDotNet.Core.Tokens.TagDirective.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.TagDirective"/> class.
</summary>
<param name="handle">The handle.</param>
<param name="prefix">The prefix.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.TagDirective.#ctor(System.String,System.String,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.TagDirective"/> class.
</summary>
<param name="handle">The handle.</param>
<param name="prefix">The prefix.</param>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.TagDirective.Equals(System.Object)">
<summary>
Determines whether the specified System.Object is equal to the current System.Object.
</summary>
<param name="obj">The System.Object to compare with the current System.Object.</param>
<returns>
true if the specified System.Object is equal to the current System.Object; otherwise, false.
</returns>
</member>
<member name="M:YamlDotNet.Core.Tokens.TagDirective.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.Core.Tokens.TagDirective.ToString">
<summary/>
</member>
<member name="T:YamlDotNet.Core.Tokens.Token">
<summary>
Base class for YAML tokens.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Token.Start">
<summary>
Gets the start of the token in the input stream.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.Token.End">
<summary>
Gets the end of the token in the input stream.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.Token.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Token"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.Value">
<summary>
Represents a value token.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.Value.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Value"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.Tokens.Value.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.Value"/> class.
</summary>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="T:YamlDotNet.Core.Tokens.VersionDirective">
<summary>
Represents a version directive token.
</summary>
</member>
<member name="P:YamlDotNet.Core.Tokens.VersionDirective.Version">
<summary>
Gets the version.
</summary>
<value>The version.</value>
</member>
<member name="M:YamlDotNet.Core.Tokens.VersionDirective.#ctor(YamlDotNet.Core.Version)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.VersionDirective"/> class.
</summary>
<param name="version">The version.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.VersionDirective.#ctor(YamlDotNet.Core.Version,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Tokens.VersionDirective"/> class.
</summary>
<param name="version">The version.</param>
<param name="start">The start position of the token.</param>
<param name="end">The end position of the token.</param>
</member>
<member name="M:YamlDotNet.Core.Tokens.VersionDirective.Equals(System.Object)">
<summary>
Determines whether the specified System.Object is equal to the current System.Object.
</summary>
<param name="obj">The System.Object to compare with the current System.Object.</param>
<returns>
true if the specified System.Object is equal to the current System.Object; otherwise, false.
</returns>
</member>
<member name="M:YamlDotNet.Core.Tokens.VersionDirective.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="T:YamlDotNet.Core.Version">
<summary>
Specifies the version of the YAML language.
</summary>
</member>
<member name="P:YamlDotNet.Core.Version.Major">
<summary>
Gets the major version number.
</summary>
</member>
<member name="P:YamlDotNet.Core.Version.Minor">
<summary>
Gets the minor version number.
</summary>
</member>
<member name="M:YamlDotNet.Core.Version.#ctor(System.Int32,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.Version"/> class.
</summary>
<param name="major">The major version number.</param>
<param name="minor">The minor version number.</param>
</member>
<member name="M:YamlDotNet.Core.Version.Equals(System.Object)">
<summary>
Determines whether the specified System.Object is equal to the current System.Object.
</summary>
<param name="obj">The System.Object to compare with the current System.Object.</param>
<returns>
true if the specified System.Object is equal to the current System.Object; otherwise, false.
</returns>
</member>
<member name="M:YamlDotNet.Core.Version.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="T:YamlDotNet.Core.YamlException">
<summary>
Base exception that is thrown when the a problem occurs in the YamlDotNet library.
</summary>
</member>
<member name="P:YamlDotNet.Core.YamlException.Start">
<summary>
Gets the position in the input stream where the event that originated the exception starts.
</summary>
</member>
<member name="P:YamlDotNet.Core.YamlException.End">
<summary>
Gets the position in the input stream where the event that originated the exception ends.
</summary>
</member>
<member name="M:YamlDotNet.Core.YamlException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.YamlException"/> class.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:YamlDotNet.Core.YamlException.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark,System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.YamlException"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.YamlException.#ctor(YamlDotNet.Core.Mark,YamlDotNet.Core.Mark,System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.YamlException"/> class.
</summary>
</member>
<member name="M:YamlDotNet.Core.YamlException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.Core.YamlException"/> class.
</summary>
<param name="message">The message.</param>
<param name="inner">The inner.</param>
</member>
<member name="M:YamlDotNet.Helpers.ExpressionExtensions.AsProperty(System.Linq.Expressions.LambdaExpression)">
<summary>
Returns the <see cref="T:System.Reflection.PropertyInfo" /> that describes the property that
is being returned in an expression in the form:
<code>
x => x.SomeProperty
</code>
</summary>
</member>
<member name="T:YamlDotNet.Helpers.GenericCollectionToNonGenericAdapter`1">
<summary>
Adapts an <see cref="T:System.Collections.Generic.ICollection`1" /> to <see cref="T:System.Collections.IList" />
because not all generic collections implement <see cref="T:System.Collections.IList" />.
</summary>
</member>
<member name="T:YamlDotNet.Helpers.GenericDictionaryToNonGenericAdapter`2">
<summary>
Adapts an <see cref="T:System.Collections.Generic.IDictionary`2" /> to <see cref="T:System.Collections.IDictionary" />
because not all generic dictionaries implement <see cref="T:System.Collections.IDictionary" />.
</summary>
</member>
<member name="P:YamlDotNet.Helpers.IOrderedDictionary`2.Item(System.Int32)">
<summary>
Gets or sets the element with the specified index.
</summary>
<param name="index">The index of the element to get or set.</param>
<returns>The element with the specified index.</returns>
</member>
<member name="M:YamlDotNet.Helpers.IOrderedDictionary`2.Insert(System.Int32,`0,`1)">
<summary>
Adds an element with the provided key and value to the <see cref="T:YamlDotNet.Helpers.IOrderedDictionary`2"/>
at the given index.
</summary>
<param name="index">The zero-based index at which the item should be inserted.</param>
<param name="key">The object to use as the key of the element to add.</param>
<param name="value">The object to use as the value of the element to add.</param>
</member>
<member name="M:YamlDotNet.Helpers.IOrderedDictionary`2.RemoveAt(System.Int32)">
<summary>
Removes the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to remove.</param>
</member>
<member name="M:YamlDotNet.ReflectionExtensions.HasDefaultConstructor(System.Type)">
<summary>
Determines whether the specified type has a default constructor.
</summary>
<param name="type">The type.</param>
<returns>
<c>true</c> if the type has a default constructor; otherwise, <c>false</c>.
</returns>
</member>
<member name="T:YamlDotNet.RepresentationModel.DocumentLoadingState">
<summary>
Manages the state of a <see cref="T:YamlDotNet.RepresentationModel.YamlDocument" /> while it is loading.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.DocumentLoadingState.AddAnchor(YamlDotNet.RepresentationModel.YamlNode)">
<summary>
Adds the specified node to the anchor list.
</summary>
<param name="node">The node.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.DocumentLoadingState.GetNode(System.String,System.Boolean,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Gets the node with the specified anchor.
</summary>
<param name="anchor">The anchor.</param>
<param name="throwException">if set to <c>true</c>, the method should throw an exception if there is no node with that anchor.</param>
<param name="start">The start position.</param>
<param name="end">The end position.</param>
<returns></returns>
</member>
<member name="M:YamlDotNet.RepresentationModel.DocumentLoadingState.GetNode(System.String,YamlDotNet.Core.Mark,YamlDotNet.Core.Mark)">
<summary>
Gets the node with the specified anchor.
</summary>
<param name="anchor">The anchor.</param>
<param name="start">The start position.</param>
<param name="end">The end position.</param>
<returns></returns>
<exception cref="T:YamlDotNet.Core.AnchorNotFoundException">if there is no node with that anchor.</exception>
</member>
<member name="M:YamlDotNet.RepresentationModel.DocumentLoadingState.TryGetNode(System.String,YamlDotNet.RepresentationModel.YamlNode@)">
<summary>
Gets the node with the specified anchor.
</summary>
<param name="anchor">The anchor.</param>
<param name="node">The node that was retrieved.</param>
<returns>true if the anchor was found; otherwise false.</returns>
</member>
<member name="M:YamlDotNet.RepresentationModel.DocumentLoadingState.AddNodeWithUnresolvedAliases(YamlDotNet.RepresentationModel.YamlNode)">
<summary>
Adds the specified node to the collection of nodes with unresolved aliases.
</summary>
<param name="node">
The <see cref="T:YamlDotNet.RepresentationModel.YamlNode"/> that has unresolved aliases.
</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.DocumentLoadingState.ResolveAliases">
<summary>
Resolves the aliases that could not be resolved while loading the document.
</summary>
</member>
<member name="T:YamlDotNet.RepresentationModel.EmitterState">
<summary>
Holds state that is used when emitting a stream.
</summary>
</member>
<member name="P:YamlDotNet.RepresentationModel.EmitterState.EmittedAnchors">
<summary>
Gets the already emitted anchors.
</summary>
<value>The emitted anchors.</value>
</member>
<member name="T:YamlDotNet.RepresentationModel.IYamlVisitor">
<summary>
Defines the method needed to be able to visit Yaml elements.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.IYamlVisitor.Visit(YamlDotNet.RepresentationModel.YamlStream)">
<summary>
Visits a <see cref="T:YamlDotNet.RepresentationModel.YamlStream"/>.
</summary>
<param name="stream">
The <see cref="T:YamlDotNet.RepresentationModel.YamlStream"/> that is being visited.
</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.IYamlVisitor.Visit(YamlDotNet.RepresentationModel.YamlDocument)">
<summary>
Visits a <see cref="T:YamlDotNet.RepresentationModel.YamlDocument"/>.
</summary>
<param name="document">
The <see cref="T:YamlDotNet.RepresentationModel.YamlDocument"/> that is being visited.
</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.IYamlVisitor.Visit(YamlDotNet.RepresentationModel.YamlScalarNode)">
<summary>
Visits a <see cref="T:YamlDotNet.RepresentationModel.YamlScalarNode"/>.
</summary>
<param name="scalar">
The <see cref="T:YamlDotNet.RepresentationModel.YamlScalarNode"/> that is being visited.
</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.IYamlVisitor.Visit(YamlDotNet.RepresentationModel.YamlSequenceNode)">
<summary>
Visits a <see cref="T:YamlDotNet.RepresentationModel.YamlSequenceNode"/>.
</summary>
<param name="sequence">
The <see cref="T:YamlDotNet.RepresentationModel.YamlSequenceNode"/> that is being visited.
</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.IYamlVisitor.Visit(YamlDotNet.RepresentationModel.YamlMappingNode)">
<summary>
Visits a <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/>.
</summary>
<param name="mapping">
The <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/> that is being visited.
</param>
</member>
<member name="T:YamlDotNet.RepresentationModel.LibYamlEventStream">
<summary>
Represents a LibYAML event stream.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.LibYamlEventStream.#ctor(YamlDotNet.Core.IParser)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.LibYamlEventStream"/> class
from the specified <see cref="T:YamlDotNet.Core.IParser"/>.
</summary>
</member>
<member name="T:YamlDotNet.RepresentationModel.YamlAliasNode">
<summary>
Represents an alias node in the YAML document.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlAliasNode"/> class.
</summary>
<param name="anchor">The anchor.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.ResolveAliases(YamlDotNet.RepresentationModel.DocumentLoadingState)">
<summary>
Resolves the aliases that could not be resolved when the node was created.
</summary>
<param name="state">The state of the document.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.Emit(YamlDotNet.Core.IEmitter,YamlDotNet.RepresentationModel.EmitterState)">
<summary>
Saves the current node to the specified emitter.
</summary>
<param name="emitter">The emitter where the node is to be saved.</param>
<param name="state">The state.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.Accept(YamlDotNet.RepresentationModel.IYamlVisitor)">
<summary>
Accepts the specified visitor by calling the appropriate Visit method on it.
</summary>
<param name="visitor">
A <see cref="T:YamlDotNet.RepresentationModel.IYamlVisitor"/>.
</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.Equals(System.Object)">
<summary />
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.ToString(YamlDotNet.Core.RecursionLevel)">
<summary>
Returns a <see cref="T:System.String"/> that represents this instance.
</summary>
<returns>
A <see cref="T:System.String"/> that represents this instance.
</returns>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlAliasNode.SafeAllNodes(YamlDotNet.Core.RecursionLevel)">
<summary>
Recursively enumerates all the nodes from the document, starting on the current node,
and throwing <see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/>
if <see cref="P:YamlDotNet.Core.RecursionLevel.Maximum"/> is reached.
</summary>
</member>
<member name="P:YamlDotNet.RepresentationModel.YamlAliasNode.NodeType">
<summary>
Gets the type of node.
</summary>
</member>
<member name="T:YamlDotNet.RepresentationModel.YamlDocument">
<summary>
Represents an YAML document.
</summary>
</member>
<member name="P:YamlDotNet.RepresentationModel.YamlDocument.RootNode">
<summary>
Gets or sets the root node.
</summary>
<value>The root node.</value>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlDocument.#ctor(YamlDotNet.RepresentationModel.YamlNode)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlDocument"/> class.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlDocument.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlDocument"/> class with a single scalar node.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlDocument.#ctor(YamlDotNet.Core.IParser)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlDocument"/> class.
</summary>
</member>
<member name="T:YamlDotNet.RepresentationModel.YamlDocument.AnchorAssigningVisitor">
<summary>
Visitor that assigns anchors to nodes that are referenced more than once.
Existing anchors are preserved as much as possible.
</summary>
</member>
<member name="F:YamlDotNet.RepresentationModel.YamlDocument.AnchorAssigningVisitor.visitedNodes">
<summary>
Key: Node, Value: IsDuplicate
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlDocument.AnchorAssigningVisitor.VisitNodeAndFindDuplicates(YamlDotNet.RepresentationModel.YamlNode)">
<summary>
Returns whether the visited node is a duplicate.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlDocument.Accept(YamlDotNet.RepresentationModel.IYamlVisitor)">
<summary>
Accepts the specified visitor by calling the appropriate Visit method on it.
</summary>
<param name="visitor">
A <see cref="T:YamlDotNet.RepresentationModel.IYamlVisitor"/>.
</param>
</member>
<member name="P:YamlDotNet.RepresentationModel.YamlDocument.AllNodes">
<summary>
Gets all nodes from the document.
<see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/> is thrown if an infinite recursion is detected.
</summary>
</member>
<member name="T:YamlDotNet.RepresentationModel.YamlMappingNode">
<summary>
Represents a mapping node in the YAML document.
</summary>
</member>
<member name="P:YamlDotNet.RepresentationModel.YamlMappingNode.Children">
<summary>
Gets the children of the current node.
</summary>
<value>The children.</value>
</member>
<member name="P:YamlDotNet.RepresentationModel.YamlMappingNode.Style">
<summary>
Gets or sets the style of the node.
</summary>
<value>The style.</value>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.#ctor(YamlDotNet.Core.IParser,YamlDotNet.RepresentationModel.DocumentLoadingState)">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/> class.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.#ctor">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/> class.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.#ctor(System.Collections.Generic.KeyValuePair{YamlDotNet.RepresentationModel.YamlNode,YamlDotNet.RepresentationModel.YamlNode}[])">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/> class.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{YamlDotNet.RepresentationModel.YamlNode,YamlDotNet.RepresentationModel.YamlNode}})">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/> class.
</summary>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.#ctor(YamlDotNet.RepresentationModel.YamlNode[])">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/> class.
</summary>
<param name="children">A sequence of <see cref="T:YamlDotNet.RepresentationModel.YamlNode"/> where even elements are keys and odd elements are values.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.#ctor(System.Collections.Generic.IEnumerable{YamlDotNet.RepresentationModel.YamlNode})">
<summary>
Initializes a new instance of the <see cref="T:YamlDotNet.RepresentationModel.YamlMappingNode"/> class.
</summary>
<param name="children">A sequence of <see cref="T:YamlDotNet.RepresentationModel.YamlNode"/> where even elements are keys and odd elements are values.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.Add(YamlDotNet.RepresentationModel.YamlNode,YamlDotNet.RepresentationModel.YamlNode)">
<summary>
Adds the specified mapping to the <see cref="P:YamlDotNet.RepresentationModel.YamlMappingNode.Children"/> collection.
</summary>
<param name="key">The key node.</param>
<param name="value">The value node.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.Add(System.String,YamlDotNet.RepresentationModel.YamlNode)">
<summary>
Adds the specified mapping to the <see cref="P:YamlDotNet.RepresentationModel.YamlMappingNode.Children"/> collection.
</summary>
<param name="key">The key node.</param>
<param name="value">The value node.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.Add(YamlDotNet.RepresentationModel.YamlNode,System.String)">
<summary>
Adds the specified mapping to the <see cref="P:YamlDotNet.RepresentationModel.YamlMappingNode.Children"/> collection.
</summary>
<param name="key">The key node.</param>
<param name="value">The value node.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.Add(System.String,System.String)">
<summary>
Adds the specified mapping to the <see cref="P:YamlDotNet.RepresentationModel.YamlMappingNode.Children"/> collection.
</summary>
<param name="key">The key node.</param>
<param name="value">The value node.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.ResolveAliases(YamlDotNet.RepresentationModel.DocumentLoadingState)">
<summary>
Resolves the aliases that could not be resolved when the node was created.
</summary>
<param name="state">The state of the document.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.Emit(YamlDotNet.Core.IEmitter,YamlDotNet.RepresentationModel.EmitterState)">
<summary>
Saves the current node to the specified emitter.
</summary>
<param name="emitter">The emitter where the node is to be saved.</param>
<param name="state">The state.</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.Accept(YamlDotNet.RepresentationModel.IYamlVisitor)">
<summary>
Accepts the specified visitor by calling the appropriate Visit method on it.
</summary>
<param name="visitor">
A <see cref="T:YamlDotNet.RepresentationModel.IYamlVisitor"/>.
</param>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.Equals(System.Object)">
<summary />
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>
A hash code for the current <see cref="T:System.Object"/>.
</returns>
</member>
<member name="M:YamlDotNet.RepresentationModel.YamlMappingNode.SafeAllNodes(YamlDotNet.Core.RecursionLevel)">
<summary>
Recursively enumerates all the nodes from the document, starting on the current node,
and throwing <see cref="T:YamlDotNet.Core.MaximumRecursionLevelReachedException"/>
if <see cref="P:YamlDotNet.Core.RecursionLevel.Maximum"/> is reached.
</summary>
</member>
<member name="P:YamlDotNet.RepresentationModel.YamlMappingNode.NodeType">
<summary>