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