Object
Document
Document | Constructor which takes no parameter. |
Document | Constructor which takes compatibility version for the YAML document. |
Document | Constructor which takes compatibility version for the YAML document and array of tags. |
Document | Constructor which takes array of tags. |
TagCount | Returns number of global tags in the YAML document. |
YAMLVersionMajor | Returns major version compatibiliy marker from the document. |
YAMLVersionMinor | Returns minor version compatibiliy marker from the document. |
AddMapping | Adds mapping to the YAML document which you are creating. |
AddMappingItem | Adds scalar node with scalar key to a mapping. |
AddMappingItem | Adds node id with scalar key id to the mapping. |
AddMappingItem | Adds node id with scalar key id to the mapping. |
AddScalar | Adds scalar value to the document, returning node ID for the node. |
AddSequence | Adds sequence to the YAML document which you are creating. |
AddSequenceItem | Adds node to sequence. |
AddSequenceItem | Adds scalar value to a sequence. |
NodeAt | Returns node at given index from the node map. |
shared Parse | Parses as string which contains YAML document, and returns a YAMLDocument class instance. |
RootNode | Returns the root node for the document or nil if the document has no root node. |
TagAt | Returns global tag by index. |
ToString | Creates string from the YAML document instance. |