5 overrides of IsStartElement
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
702public override bool IsStartElement(string localname, string ns)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCountingReader.cs (1)
83public override bool IsStartElement(string localname, string ns) { return _innerReader.IsStartElement(localname, ns); }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableReader.cs (1)
112public override bool IsStartElement(string localname, string ns) { return InnerReader.IsStartElement(localname, ns); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (1)
1041public override bool IsStartElement(string localName, string namespaceUri)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReader.cs (1)
1303public override bool IsStartElement(string localName, string namespaceUri)
35 references to IsStartElement
dotnet-svcutil-lib (35)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
705return _coreReader.IsStartElement(localname, ns);
FrameworkFork\Microsoft.Xml\Xml\Serialization\Compilation.cs (1)
137return xmlReader.IsStartElement(method.name, method.ns);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCountingReader.cs (1)
83public override bool IsStartElement(string localname, string ns) { return _innerReader.IsStartElement(localname, ns); }
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (1)
512return xmlReader.IsStartElement(typeDesc.DataType.Name, string.Empty);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlReaderDelegator.cs (2)
124return !isEndOfEmptyElement && reader.IsStartElement(localname, ns); 134return !isEndOfEmptyElement && reader.IsStartElement(localname.Value, ns.Value);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableReader.cs (1)
112public override bool IsStartElement(string localname, string ns) { return InnerReader.IsStartElement(localname, ns); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReader.cs (13)
148if (!IsStartElement(localName, namespaceUri)) 225return IsStartElement(XmlDictionaryString.GetString(localName), XmlDictionaryString.GetString(namespaceUri)); 932while (actual < count && IsStartElement(localName, namespaceUri)) 960while (actual < count && IsStartElement(localName, namespaceUri)) 991while (actual < count && IsStartElement(localName, namespaceUri)) 1019while (actual < count && IsStartElement(localName, namespaceUri)) 1047while (actual < count && IsStartElement(localName, namespaceUri)) 1075while (actual < count && IsStartElement(localName, namespaceUri)) 1103while (actual < count && IsStartElement(localName, namespaceUri)) 1131while (actual < count && IsStartElement(localName, namespaceUri)) 1159while (actual < count && IsStartElement(localName, namespaceUri)) 1187while (actual < count && IsStartElement(localName, namespaceUri)) 1305return _reader.IsStartElement(localName, namespaceUri);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (1)
2022return reader.IsStartElement(_name, _ns) &&
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityBindingElement.cs (1)
149sslBindingElement.RequireClientCertificate = reader.IsStartElement(
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
110if (reader.IsStartElement(
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSet.cs (1)
985return xmlReader.IsStartElement(@"Metadata", @"http://schemas.xmlsoap.org/ws/2004/09/mex");
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (1)
118return reader.IsStartElement(_rootName, _rootNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\EndpointAddress.cs (1)
854if (reader.IsStartElement(System.ServiceModel.Description.MetadataStrings.MetadataExchangeStrings.Metadata,
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (3)
241while (reader.IsStartElement(DriverDictionary.RequestSecurityTokenResponse.Value, DriverDictionary.Namespace.Value)) 503return reader.IsStartElement(DriverDictionary.RequestSecurityTokenResponse.Value, DriverDictionary.Namespace.Value); 511return reader.IsStartElement(DriverDictionary.RequestSecurityTokenResponseCollection.Value, DriverDictionary.Namespace.Value);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (1)
253return xmlReader.IsStartElement("definitions", ServiceDescription.Namespace);
Metadata\MetadataDocumentLoader.cs (5)
601if (reader.IsStartElement(MetadataConstants.WSDL.Elements.Root, MetadataConstants.WSDL.NamespaceUri)) 605else if (reader.IsStartElement(MetadataConstants.XmlSchema.Elements.Root, MetadataConstants.XmlSchema.NamespaceUri)) 609else if (reader.IsStartElement(MetadataConstants.WSPolicy.Elements.Policy, MetadataConstants.WSPolicy.NamespaceUri) 610|| reader.IsStartElement(MetadataConstants.WSPolicy.Elements.Policy, MetadataConstants.WSPolicy.NamespaceUri15)) 614else if (reader.IsStartElement(MetadataConstants.WSAddressing.Elements.EndpointReference, MetadataConstants.WSAddressing.NamespaceUri))