16 overrides of LookupPrefix
System.Data.Common (1)
System\Data\xmlsaver.cs (1)
3272public 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)
System.ServiceModel.Primitives (2)
Internals\System\Xml\XmlMtomWriter.cs (1)
692public override string LookupPrefix(string ns)
System\ServiceModel\Security\WSSecurityOneDotZeroSendSecurityHeader.cs (1)
708public override string LookupPrefix(string ns)
33 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)
3274return _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)
437string? prefix = _w.LookupPrefix(ns); 520prefix = _w.LookupPrefix(ns); 549if (_w.LookupPrefix(aliasNs) == null) 959string? prefix = _w.LookupPrefix(ns); 1001string? prefix = _w.LookupPrefix(ns); 1449string? oldPrefix = string.IsNullOrEmpty(ns) ? null : Writer.LookupPrefix(ns);
System.ServiceModel.Primitives (8)
Internals\System\Xml\XmlMtomWriter.cs (2)
238var xopPrefix = Writer.LookupPrefix(MtomGlobals.XopIncludeNamespace); 694return Writer.LookupPrefix(ns);
System\ServiceModel\Channels\MessageFault.cs (2)
388string prefix = writer.LookupPrefix(ns); 445string prefix = writer.LookupPrefix(ns);
System\ServiceModel\Security\SecurityAppliedMessage.cs (1)
378return _writer.LookupPrefix(namespaceUri);
System\ServiceModel\Security\WSSecurityOneDotZeroSendSecurityHeader.cs (1)
710return _innerWriter.LookupPrefix(ns);
System\ServiceModel\Security\XmlHelper.cs (2)
15string p = writer.LookupPrefix(ns.Value); 24string p = writer.LookupPrefix(ns.Value);