21 references to Document
dotnet-svcutil-lib (21)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (2)
412case ConformanceLevel.Document: 442settings.ConformanceLevel = ConformanceLevel.Document; break;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEncodedRawTextWriter.cs (1)
1864if (indentLevel == 1 && conformanceLevel == ConformanceLevel.Document)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (1)
1727return tri != null ? tri.V1ComformanceLevel : ConformanceLevel.Document;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReaderSettings.cs (2)
186if ((uint)value > (uint)ConformanceLevel.Document) 582_conformanceLevel = ConformanceLevel.Document;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (4)
453case ConformanceLevel.Document: 458goto case ConformanceLevel.Document; 847case XmlNodeType.Document: settings.ConformanceLevel = ConformanceLevel.Document; break; 9310return _fragmentType == XmlNodeType.Element ? ConformanceLevel.Fragment : ConformanceLevel.Document;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlUtf8RawTextWriter.cs (1)
1739if (indentLevel == 1 && conformanceLevel == ConformanceLevel.Document)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (7)
272_stateTable = (_conformanceLevel == ConformanceLevel.Document) ? s_stateTableDocument : s_stateTableAuto; 399_conformanceLevel = ConformanceLevel.Document; 558if (_conformanceLevel == ConformanceLevel.Document) 609if (_conformanceLevel == ConformanceLevel.Document) 939throw new ArgumentException(_conformanceLevel == ConformanceLevel.Document ? ResXml.Xml_DupXmlDecl : ResXml.Xml_CannotWriteXmlDecl); 1650_conformanceLevel = ConformanceLevel.Document; 2201if (_conformanceLevel == ConformanceLevel.Document)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriterSettings.cs (2)
233if ((uint)value > (uint)ConformanceLevel.Document) 697_conformanceLevel = ConformanceLevel.Document;
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (1)
83_settings.ConformanceLevel = (_state == State.Prolog ? ConformanceLevel.Document : ConformanceLevel.Fragment);