21 references to Parse
System.Data.SqlXml (1)
System\Xml\Xsl\QueryReaderSettings.cs (1)
89readerImpl.DtdProcessing = prohibitDtd ? DtdProcessing.Prohibit : DtdProcessing.Parse;
System.ServiceModel (1)
System\ServiceModel\Description\WsdlHelper.cs (1)
327newXsd = XmlSchema.Read(new XmlTextReader(memoryStream) { DtdProcessing = DtdProcessing.Parse }, null);
System.Web (2)
UI\WebControls\xml.cs (1)
63readerSettings.DtdProcessing = DtdProcessing.Parse;
Util\XmlUtils.cs (1)
62settings.DtdProcessing = DtdProcessing.Parse;
System.Windows.Forms (2)
parent\parent\parent\public\Internal\NDP\Inc\mansign.cs (1)
904settings.DtdProcessing = DtdProcessing.Parse;
parent\parent\parent\public\Internal\NDP\Inc\mansign2.cs (1)
1619settings.DtdProcessing = DtdProcessing.Parse;
System.Xml (14)
System\Xml\Core\XmlReaderSettings.cs (5)
264dtdProcessing = value ? DtdProcessing.Prohibit : DtdProcessing.Parse; 276if ((uint)value > (uint)DtdProcessing.Parse) { 661DtdProcessing baseDtdProcessing = DtdProcessing.Parse; 668(this.dtdProcessing == DtdProcessing.Ignore && baseDtdProcessing == DtdProcessing.Parse)) { 696(this.dtdProcessing == DtdProcessing.Ignore && baseReaderSettings.DtdProcessing == DtdProcessing.Parse)) {
System\Xml\Core\XmlTextReader.cs (1)
341set { impl.DtdProcessing = value ? DtdProcessing.Prohibit : DtdProcessing.Parse; }
System\Xml\Core\XmlTextReaderImpl.cs (5)
206DtdProcessing dtdProcessing = DtdProcessing.Parse; 1947if ((uint)value > (uint)DtdProcessing.Parse) { 2802case DtdProcessing.Parse: 5484if ( dtdInfo == null && fragmentParserContext != null && fragmentParserContext.HasDtdInfo && dtdProcessing == DtdProcessing.Parse ) { 6072if (dtdProcessing == DtdProcessing.Parse) {
System\Xml\Core\XmlTextReaderImplAsync.cs (3)
946case DtdProcessing.Parse: 3551if ( dtdInfo == null && fragmentParserContext != null && fragmentParserContext.HasDtdInfo && dtdProcessing == DtdProcessing.Parse ) { 4124if (dtdProcessing == DtdProcessing.Parse) {
System.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
1991rs.DtdProcessing = DtdProcessing.Parse;