9 references to MSD_DEFAULTVALUE
System.Data.Common (9)
System\Data\xmlsaver.cs (5)
1465
root.SetAttribute(Keywords.
MSD_DEFAULTVALUE
, Keywords.MSDNS, (bool)(col.DefaultValue) ? Keywords.TRUE : Keywords.FALSE);
1469
root.SetAttribute(Keywords.
MSD_DEFAULTVALUE
, Keywords.MSDNS, col.ConvertObjectToXml(col.DefaultValue));
1481
root.SetAttribute(Keywords.
MSD_DEFAULTVALUE
, Keywords.MSDNS, (bool)(col.DefaultValue) ? Keywords.TRUE : Keywords.FALSE);
1485
root.SetAttribute(Keywords.
MSD_DEFAULTVALUE
, Keywords.MSDNS, col.ConvertObjectToXml(col.DefaultValue));
1883
sc.SetAttribute(Keywords.
MSD_DEFAULTVALUE
, Keywords.MSDNS, colTxt.ConvertObjectToXml(colTxt.DefaultValue));
System\Data\XMLSchema.cs (4)
2040
if (attrs[i].LocalName == Keywords.
MSD_DEFAULTVALUE
&& attrs[i].NamespaceURI == Keywords.MSDNS)
2154
if (attrs[i].LocalName == Keywords.
MSD_DEFAULTVALUE
&& attrs[i].NamespaceURI == Keywords.MSDNS)
2329
string? defValue = GetMsdataAttribute(attr, Keywords.
MSD_DEFAULTVALUE
);
2343
string? strDefault = (attrib.Use == XmlSchemaUse.Required) ? GetMsdataAttribute(attr, Keywords.
MSD_DEFAULTVALUE
) : attr.DefaultValue;