10 overrides of LookupPrefix
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
297public override string LookupPrefix(string ns)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlRawWriter.cs (1)
103public override string LookupPrefix(string ns)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextWriter.cs (1)
1059public override string LookupPrefix(string ns)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
1308public override string LookupPrefix(string ns)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
189public override string LookupPrefix(string ns)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
97public override string LookupPrefix(string ns) { return _xmlWriter.LookupPrefix(ns); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseWriter.cs (1)
756public override string LookupPrefix(string ns)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
90public override string LookupPrefix(string ns)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
616public override string LookupPrefix(string namespaceUri)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
39public override string LookupPrefix(string ns)
21 references to LookupPrefix
dotnet-svcutil-lib (21)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
299return _wrapped.LookupPrefix(ns);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
191return writer.LookupPrefix(ns);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriter.cs (1)
260string prefix = LookupPrefix(ns);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (7)
399string prefix = _w.LookupPrefix(ns); 494prefix = _w.LookupPrefix(ns); 522if (_w.LookupPrefix(aliasNs) == null) 970string prefix = _w.LookupPrefix(ns); 1003string prefix = _w.LookupPrefix(ns); 1016prefix = _w.LookupPrefix(ns); 1486string oldPrefix = (ns == null || ns.Length == 0) ? null : Writer.LookupPrefix(ns);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
97public override string LookupPrefix(string ns) { return _xmlWriter.LookupPrefix(ns); }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlWriterDelegator.cs (2)
41return writer.LookupPrefix(ns); 93string prefix = writer.LookupPrefix(ns);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
93return CoreWriter.LookupPrefix(ns);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (2)
108if (LookupPrefix(namespaceUri) != null) 618return _writer.LookupPrefix(namespaceUri);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageFault.cs (2)
337string prefix = writer.LookupPrefix(ns); 377string prefix = writer.LookupPrefix(ns);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
41return this.Writer.LookupPrefix(ns);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\XmlHelper.cs (2)
14string p = writer.LookupPrefix(ns.Value); 23string p = writer.LookupPrefix(ns.Value);