System.Xml.XmlDataDocument.GetNestedParent C# (CSharp) Метод

GetNestedParent() приватный Метод

private GetNestedParent ( DataRow row ) : DataRow
row DataRow
Результат DataRow
        private DataRow GetNestedParent(DataRow row)
        {
            DataRelation relation = GetNestedParentRelation(row);
            if (relation != null)
                return row.GetParentRow(relation);
            return null;
        }
XmlDataDocument