YamlDotNet.RepresentationModel.YamlNode.this C# (CSharp) Method

this() public method

Gets the value associated with a key in a YamlMappingNode.
public this ( YamlNode key ) : YamlNode
key YamlNode
return YamlNode
        public YamlNode this[YamlNode key]
        {
            get
            {
                return ((YamlMappingNode)this).Children[key];
            }
        }

Same methods

YamlNode::this ( int index ) : YamlNode