public void _002_OneXPathRule() { XPathDataRowRule rule = new XPathDataRowRule(); rule.RowsXPath = "/row"; template.Rules.Add(rule); AssertSerialization(); }
public XPathDataRow(XPathDataRowRule rule, IXPathNavigable row, Uri uri, int rowIndex, int pageIndex) { this.rule = rule; this.row = row; this.PageUri = uri; this.RowIndex = rowIndex; this.PageIndex = pageIndex; }
public object Clone() { XPathDataRowRule result = new XPathDataRowRule(); result.RowsXPath = this.RowsXPath; return result; }