System.Xml.XmlDataDocument.NeedXSI_NilAttr C# (CSharp) Méthode

NeedXSI_NilAttr() private méthode

private NeedXSI_NilAttr ( DataRow row ) : bool
row DataRow
Résultat bool
        private bool NeedXSI_NilAttr(DataRow row)
        {
            DataTable tb = row.Table;
            Debug.Assert(tb != null);
            if (tb._xmlText == null)
                return false;
            object value = row[tb._xmlText];
            return (Convert.IsDBNull(value));
        }
XmlDataDocument