コード例 #1
0
ファイル: DomPath.cs プロジェクト: Carbonfrost/f-web-dom
 public DomPath Element(DomName name)
 {
     if (name is null)
     {
         throw new ArgumentNullException(nameof(name));
     }
     return(Append(DomPathExpression.Element(name, -1)));
 }
コード例 #2
0
ファイル: DomPath.cs プロジェクト: Carbonfrost/f-web-dom
 public DomPath Element(DomName name, int index)
 {
     return(Append(DomPathExpression.Element(name, index)));
 }