コード例 #1
0
 protected internal abstract void RemoveChild(YNode node);
コード例 #2
0
 protected internal abstract YNode GetNextNode(YNode node);
コード例 #3
0
 protected internal abstract YNode GetPreviousNode(YNode node);
コード例 #4
0
ファイル: YMapping.cs プロジェクト: squareinc/Xamarin.Yaml
 protected internal override YNode GetNextNode(YNode node)
 {
     return(node == this.LastNode ? null :
            node is YKeyValuePair pair ? this.Children[this.Children.IndexOf(pair) + 1] : null);
 }
コード例 #5
0
ファイル: YMapping.cs プロジェクト: squareinc/Xamarin.Yaml
 protected internal override YNode GetPreviousNode(YNode node)
 {
     return(node == this.FirstNode ? null :
            node is YKeyValuePair pair ? this.Children[this.Children.IndexOf(pair) - 1] : null);
 }
コード例 #6
0
 // https://gist.github.com/bowsersenior/979804
 internal YAnchor(YNode value)
     : base(YNodeStyle.Block)
 {
     this.Value = value;
 }