14 overrides of LookupPrefix
System.Data.Common (1)
System\Data\xmlsaver.cs (1)
3290public override string? LookupPrefix(string ns)
System.Private.DataContractSerialization (5)
System\Runtime\Serialization\Json\XmlJsonWriter.cs (1)
217public override string? LookupPrefix(string ns)
System\Runtime\Serialization\XmlSerializableWriter.cs (1)
97public override string? LookupPrefix(string ns) { return _xmlWriter.LookupPrefix(ns); }
System\Xml\XmlBaseWriter.cs (1)
803public override string? LookupPrefix(string ns)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
97public override string? LookupPrefix(string ns)
System\Xml\XmlDictionaryWriter.cs (1)
650public override string? LookupPrefix(string namespaceUri)
System.Private.Xml (7)
System\Xml\Core\QueryOutputWriterV1.cs (1)
303public override string? LookupPrefix(string ns)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
212public override string? LookupPrefix(string ns)
System\Xml\Core\XmlRawWriter.cs (1)
96public override string LookupPrefix(string ns)
System\Xml\Core\XmlTextWriter.cs (1)
1097public override string? LookupPrefix(string ns)
System\Xml\Core\XmlWellFormedWriter.cs (1)
1227public override string? LookupPrefix(string ns)
System\Xml\Core\XmlWrappingWriter.cs (1)
151public override string? LookupPrefix(string ns)
System\Xml\Xsl\Runtime\XmlQueryOutput.cs (1)
388public override string LookupPrefix(string ns)
System.Private.Xml.Linq (1)
System\Xml\Linq\XNodeBuilder.cs (1)
54public override string LookupPrefix(string namespaceName)
25 references to LookupPrefix
PresentationFramework (7)
System\Windows\Annotations\Annotation.cs (2)
193if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace))) 197if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.BaseSchemaNamespace)))
System\Windows\Annotations\AnnotationResource.cs (1)
119if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace)))
System\Windows\Annotations\LocatorGroup.cs (1)
105string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace);
System\Windows\Annotations\LocatorPartList.cs (3)
163string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.CoreSchemaNamespace); 168prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.BaseSchemaNamespace); 177prefix = writer.LookupPrefix(part.PartType.Namespace);
System.Data.Common (1)
System\Data\xmlsaver.cs (1)
3292return _xmltextWriter.LookupPrefix(ns);
System.Private.DataContractSerialization (6)
System\Runtime\Serialization\XmlSerializableWriter.cs (1)
97public override string? LookupPrefix(string ns) { return _xmlWriter.LookupPrefix(ns); }
System\Runtime\Serialization\XmlWriterDelegator.cs (2)
38return writer.LookupPrefix(ns); 86string? prefix = writer.LookupPrefix(ns);
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
100return CoreWriter.LookupPrefix(ns);
System\Xml\XmlDictionaryWriter.cs (2)
114if (LookupPrefix(namespaceUri) != null) 652return _writer.LookupPrefix(namespaceUri);
System.Private.Xml (11)
System\Xml\Core\QueryOutputWriterV1.cs (1)
305return _wrapped.LookupPrefix(ns);
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
215return _coreWriter.LookupPrefix(ns);
System\Xml\Core\XmlWrappingWriter.cs (1)
153return writer.LookupPrefix(ns);
System\Xml\Core\XmlWriter.cs (1)
231string? prefix = LookupPrefix(ns);
System\Xml\Core\XmlWriterAsync.cs (1)
217string? prefix = LookupPrefix(ns);
System\Xml\Serialization\XmlSerializationWriter.cs (6)
439string? prefix = _w.LookupPrefix(ns); 522prefix = _w.LookupPrefix(ns); 551if (_w.LookupPrefix(aliasNs) == null) 961string? prefix = _w.LookupPrefix(ns); 1003string? prefix = _w.LookupPrefix(ns); 1451string? oldPrefix = string.IsNullOrEmpty(ns) ? null : Writer.LookupPrefix(ns);