20 overrides of Name
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
42public override string Name { get { return _reader.Name; } }
System.Data.Common (1)
System\Data\xmlsaver.cs (1)
3331public override string Name
System.IO.Packaging (1)
System\IO\Packaging\XmlWrappingReader.cs (1)
27public override string Name { get { return _reader.Name; } }
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\ExtensionDataReader.cs (1)
347public override string Name
System\Runtime\Serialization\XmlSerializableReader.cs (1)
72public override string Name { get { return InnerReader.Name; } }
System\Xml\XmlDictionaryReader.cs (1)
1463public override string Name
System.Private.Xml (10)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
91public override string Name
System\Xml\Core\XmlTextReader.cs (1)
117public override string Name
System\Xml\Core\XmlTextReaderImpl.cs (1)
866public override string Name
System\Xml\Core\XmlValidatingReader.cs (1)
55public override string Name
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
296public override string Name
System\Xml\Core\XmlWrappingReader.cs (1)
35public override string Name { get { return reader.Name; } }
System\Xml\Core\XsdCachingReader.cs (1)
117public override string Name
System\Xml\Core\XsdValidatingReader.cs (1)
237public override string Name
System\Xml\Dom\XmlNodeReader.cs (1)
1175public override string Name
System\Xml\Xsl\XsltOld\ReaderOutput.cs (1)
62public override string Name
System.Private.Xml.Linq (1)
System\Xml\Linq\XNodeReader.cs (1)
227public override string Name
System.ServiceModel.Primitives (2)
Internals\System\Xml\XmlMtomReader.cs (2)
720public override string Name 1637public override string Name
System.Xaml (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
42public override string Name { get { return _reader.Name; } }
338 references to Name
Microsoft.Build (5)
BackEnd\Components\SdkResolution\SdkResolverManifest.cs (5)
78if (reader.NodeType == XmlNodeType.Element && reader.Name == "SdkResolver") 93throw new XmlException(ResourceUtilities.FormatResourceStringStripCodeAndKeyword("UnrecognizedElement", reader.Name)); 114switch (reader.Name) 136throw new XmlException(ResourceUtilities.FormatResourceStringStripCodeAndKeyword("UnrecognizedElement", reader.Name)); 146throw new XmlException(ResourceUtilities.FormatResourceStringStripCodeAndKeyword("UnrecognizedElement", reader.Name));
Microsoft.Build.Tasks.Core (21)
AppConfig\AppConfig.cs (1)
84if (reader.NodeType == XmlNodeType.Element && StringEquals(reader.Name, "runtime"))
AppConfig\DependentAssembly.cs (6)
54if (reader.NodeType == XmlNodeType.EndElement && AppConfig.StringEquals(reader.Name, "dependentassembly")) 60if (reader.NodeType == XmlNodeType.Element && AppConfig.StringEquals(reader.Name, "assemblyIdentity")) 69if (AppConfig.StringEquals(reader.Name, "name")) 74if (AppConfig.StringEquals(reader.Name, "publicKeyToken")) 79if (AppConfig.StringEquals(reader.Name, "culture")) 104if (reader.NodeType == XmlNodeType.Element && AppConfig.StringEquals(reader.Name, "bindingRedirect"))
AppConfig\RuntimeSection.cs (2)
24if (reader.NodeType == XmlNodeType.EndElement && AppConfig.StringEquals(reader.Name, "runtime")) 30if (reader.NodeType == XmlNodeType.Element && AppConfig.StringEquals(reader.Name, "dependentAssembly"))
ManifestUtil\ManifestReader.cs (1)
238string tn = String.Format(CultureInfo.InvariantCulture, "{0}.{1}", ns, r.Name);
RedistList.cs (11)
671if (string.Equals(reader.Name, "FileList", StringComparison.OrdinalIgnoreCase)) 676if (string.Equals(reader.Name, "Redist", StringComparison.OrdinalIgnoreCase)) 688if (string.Equals(reader.Name, "Remap", StringComparison.OrdinalIgnoreCase)) 736if (string.Equals(reader.Name, "From", StringComparison.OrdinalIgnoreCase) && !reader.IsEmptyElement && fromEntry == null) 745if (string.Equals(reader.Name, "To", StringComparison.OrdinalIgnoreCase) && fromEntry != null && toEntry == null) 768if (reader.NodeType == XmlNodeType.EndElement && string.Equals(reader.Name, "From", StringComparison.OrdinalIgnoreCase)) 774if (reader.NodeType == XmlNodeType.EndElement && string.Equals(reader.Name, "Remap", StringComparison.OrdinalIgnoreCase)) 790if (string.Equals(reader.Name, "File", StringComparison.OrdinalIgnoreCase)) 808if (string.Equals(reader.Name, "Remap", StringComparison.OrdinalIgnoreCase)) 818if (reader.NodeType == XmlNodeType.EndElement && string.Equals(reader.Name, "FileList", StringComparison.OrdinalIgnoreCase)) 835attributes.Add(reader.Name, reader.Value);
Microsoft.Build.Utilities.Core (3)
ToolLocationHelper.cs (3)
3139if (string.Equals(reader.Name, "FileList", StringComparison.OrdinalIgnoreCase)) 3144if (string.Equals(reader.Name, "IncludeFramework", StringComparison.OrdinalIgnoreCase)) 3150if (string.Equals(reader.Name, "Name", StringComparison.OrdinalIgnoreCase))
Microsoft.CodeAnalysis (1)
DocumentationComments\XmlDocumentationCommentTextReader.XmlStream.cs (1)
78&& reader.Name == s_currentElementName;
PresentationBuildTasks (12)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (1)
820xmlReader.Name,
MS\Internal\MarkupCompiler\ParserExtension.cs (1)
419string attrName = (xmlReader.NodeType == XmlNodeType.Attribute) ? xmlReader.Name : null;
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (6)
1232ThrowException(nameof(SR.ParserEmptyComplexProp), XmlReader.Name); 2109ThrowException(nameof(SR.ParserEntityReference), XmlReader.Name); 2141WriteDefTag(XmlReader.Name); 2214string attribName = XmlReader.Name; 2345string attribName = XmlReader.Name; 2798string attribName = XmlReader.Name;
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlCompatibilityReader.cs (3)
271Error(SR.XCRInvalidACChild, Reader.Name); 747_currentName = Reader.Name; 1160Error(SR.Format(SR.XCRInvalidACChild, Reader.Name));
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
42public override string Name { get { return _reader.Name; } }
PresentationFramework (2)
System\Windows\Documents\FixedFindEngine.cs (1)
394if (xmlReader.Name == "Glyphs")
System\Windows\Documents\XPSS0ValidatingLoader.cs (1)
145if (!rootElement.Equals(xpsSchemaValidator.XmlReader.Name))
ReachFramework (12)
Packaging\XpsFixedDocumentReaderWriter.cs (2)
1098reader.Name == XpsS0Markup.SignatureDefinition 1107reader.Name == XpsS0Markup.SignatureDefinitions
Packaging\XPSSignatureDefinition.cs (10)
421reader.Name != XpsS0Markup.SignatureDefinition 461string nodeName = reader.Name; 466ValidateSignatureDefinitionAttribute(reader.Name, reader.Value); 470ValidateSpotLocationAttribute(reader.Name, reader.Value); 549if (reader.Name == XpsS0Markup.SpotLocation) 553else if (reader.Name == XpsS0Markup.Intent) 557else if (reader.Name == XpsS0Markup.SignBy) 561else if (reader.Name == XpsS0Markup.SigningLocale) 567throw new XpsPackagingException(SR.Format(SR.ReachPackaging_NotValidSignatureDefinitionElement, reader.Name)); 609if( reader.Name == XpsS0Markup.SignatureDefinition )
System.Configuration.ConfigurationManager (11)
System\Configuration\AppSettingsSection.cs (1)
90string elementName = reader.Name;
System\Configuration\ConfigurationElement.cs (9)
1400ElementTagName = reader.Name; 1402Values.SetValue(reader.Name, null, ConfigurationValueFlags.Modified, rootInfo); 1406if (((_lockedElementsList != null) && (_lockedElementsList.Contains(reader.Name) || 1407(_lockedElementsList.Contains(LockAll) && (reader.Name != ElementTagName)))) || 1409!_lockedAllExceptElementsList.Contains(reader.Name)) || 1413throw new ConfigurationErrorsException(SR.Format(SR.Config_base_element_locked, reader.Name), reader); 1420string propertyName = reader.Name; 1505string propertyName = reader.Name; 1698ConfigurationLockCollectionType.LockedElementsExceptionList, reader.Name);
System\Configuration\ConfigurationElementCollection.cs (1)
1123string propertyName = reader.Name;
System.Data.Common (6)
System\Data\DataSet.cs (3)
1714topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 2127topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 2666topNode.SetAttribute(reader.Name, reader.GetAttribute(i));
System\Data\DataTable.cs (2)
5822topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 6090topNode.SetAttribute(reader.Name, reader.GetAttribute(i));
System\Data\xmlsaver.cs (1)
3335return _xmlreader.Name;
System.IO.Packaging (16)
System\IO\Packaging\PackagingUtilities.cs (1)
97if (!string.Equals(reader.Name, XmlNamespace, StringComparison.Ordinal) &&
System\IO\Packaging\PartBasedPackageProperties.cs (7)
389throw new XmlException(SR.Format(SR.DuplicateCorePropertyName, reader!.Name), 505throw new XmlException(SR.Format(SR.PropertyWrongNumbOfAttribsDefinedOn, reader.Name), 562throw new XmlException(SR.Format(SR.PropertyWrongNumbOfAttribsDefinedOn, reader.Name), 577throw new XmlException(SR.Format(SR.PropertyWrongNumbOfAttribsDefinedOn, reader.Name), 611throw new XmlException(SR.Format(SR.UnknownDCDateTimeXsiType, reader.Name), 620throw new XmlException(SR.Format(SR.UnknownDCDateTimeXsiType, reader.Name), 630throw new XmlException(SR.Format(SR.UnknownDCDateTimeXsiType, reader.Name),
System\IO\Packaging\XmlCompatibilityReader.cs (3)
252Error(SR.XCRInvalidACChild, Reader.Name); 690_currentName = Reader.Name; 1101Error(SR.Format(SR.XCRInvalidACChild, Reader.Name));
System\IO\Packaging\XmlWrappingReader.cs (1)
27public override string Name { get { return _reader.Name; } }
System\IO\Packaging\ZipPackage.cs (4)
983&& (reader.Name == TypesTagName)) 1009&& (reader.Name == DefaultTagName)) 1016&& (reader.Name == OverrideTagName)) 1020else if (reader.NodeType == XmlNodeType.EndElement && reader.Depth == 0 && reader.Name == TypesTagName)
System.Private.DataContractSerialization (7)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
1092internal string Name { get { return reader.Name; } }
System\Runtime\Serialization\XmlSerializableReader.cs (1)
72public override string Name { get { return InnerReader.Name; } }
System\Xml\XmlDictionaryReader.cs (1)
1467return _reader.Name;
System\Xml\XmlDictionaryWriter.cs (4)
271WriteEntityRef(reader.Name); 413WriteEntityRef(reader.Name); 417WriteProcessingInstruction(reader.Name, reader.Value); 420WriteDocType(reader.Name, reader.GetAttribute("PUBLIC"), reader.GetAttribute("SYSTEM"), reader.Value);
System.Private.Xml (53)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
96return _coreReader.Name;
System\Xml\Core\XmlCharCheckingReader.cs (3)
265ValidateQName(base.reader.Name); 276ValidateQName(base.reader.Name); 303ValidateQName(base.reader.Name);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (3)
127ValidateQName(base.reader.Name); 138ValidateQName(base.reader.Name); 165ValidateQName(base.reader.Name);
System\Xml\Core\XmlReader.cs (14)
762if (Name == name) 827if (Name != name) 902return MoveToContent() == XmlNodeType.Element && Name == name; 923if (NodeType == XmlNodeType.Element && Ref.Equal(name, Name)) 983if (NodeType == XmlNodeType.Element && Ref.Equal(name, Name)) 1051if (nt == XmlNodeType.Element && Ref.Equal(name, Name)) 1164xtw.WriteEntityRef(Name); 1168xtw.WriteProcessingInstruction(Name, Value); 1171xtw.WriteDocType(Name, GetAttribute("PUBLIC"), GetAttribute("SYSTEM"), Value); 1190string attrName = Name; 1195xtw.WriteEntityRef(Name); 1787result += $", Name=\"{_reader.Name}\""; 1791result += $", Name=\"{_reader.Name}\", Value=\"{XmlConvert.EscapeValueForDebuggerDisplay(_reader.Value)}\""; 1802result += $", Name=\"{_reader.Name}'";
System\Xml\Core\XmlReaderAsync.cs (3)
238xtw.WriteEntityRef(Name); 242xtw.WriteProcessingInstruction(Name, Value); 245xtw.WriteDocType(Name, GetAttribute("PUBLIC"), GetAttribute("SYSTEM"), Value);
System\Xml\Core\XmlSubtreeReader.cs (1)
127return _useCurNode ? _curNode.name : reader.Name;
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
300return _coreReader.Name;
System\Xml\Core\XmlWrappingReader.cs (1)
35public override string Name { get { return reader.Name; } }
System\Xml\Core\XmlWriter.cs (4)
342WriteEntityRef(reader.Name); 401WriteEntityRef(reader.Name); 405WriteProcessingInstruction(reader.Name, reader.Value); 408WriteDocType(reader.Name, reader.GetAttribute("PUBLIC"), reader.GetAttribute("SYSTEM"), reader.Value);
System\Xml\Core\XmlWriterAsync.cs (7)
263await WriteEntityRefAsync(reader.Name).ConfigureAwait(false); 335await WriteEntityRefAsync(reader.Name).ConfigureAwait(false); 339await WriteProcessingInstructionAsync(reader.Name, reader.Value).ConfigureAwait(false); 342await WriteDocTypeAsync(reader.Name, reader.GetAttribute("PUBLIC"), reader.GetAttribute("SYSTEM"), reader.Value).ConfigureAwait(false); 398await WriteEntityRefAsync(reader.Name).ConfigureAwait(false); 402await WriteProcessingInstructionAsync(reader.Name, reader.Value).ConfigureAwait(false); 405await WriteDocTypeAsync(reader.Name, reader.GetAttribute("PUBLIC"), reader.GetAttribute("SYSTEM"), reader.Value).ConfigureAwait(false);
System\Xml\Core\XsdValidatingReader.cs (1)
253return _coreReader.Name;
System\Xml\Dom\XmlLoader.cs (6)
210node = _doc!.CreateProcessingInstruction(r.Name, r.Value); 359XmlEntityReference eref = direct ? new XmlEntityReference(_reader.Name, _doc!) : _doc!.CreateEntityReference(_reader.Name); 392switch (_reader.Name) 427switch (_reader.Name) 538node = new XmlProcessingInstruction(_reader!.Name, _reader.Value, _doc!);
System\Xml\Schema\Parser.cs (2)
301currentNode = _dummyDocument.CreateEntityReference(_reader.Name); 309currentNode = _dummyDocument.CreateProcessingInstruction(_reader.Name, _reader.Value);
System\Xml\Serialization\ReflectionXmlSerializationReader.cs (3)
1936if (IsXmlnsAttribute(Reader.Name)) 1939xmlnsMember.XmlnsSource(Reader.Name.Length == 5 ? string.Empty : Reader.LocalName, Reader.Value); 1946else if (!IsXmlnsAttribute(Reader.Name))
System\Xml\Serialization\XmlSerializationReader.cs (3)
1866string elemName = Reader.Name; 1884if (IsXmlnsAttribute(Reader.Name) || (Reader.Name == "id" && (!_soap12 || Reader.NamespaceURI == Soap12.Encoding)))
System.Private.Xml.Linq (8)
System\Xml\Linq\XContainer.cs (4)
938_currentContainer.AddNodeSkipNotify(new XProcessingInstruction(r.Name, r.Value)); 994_currentContainer.AddNodeSkipNotify(new XProcessingInstruction(r.Name, await r.GetValueAsync().ConfigureAwait(false))); 1092newNode = new XProcessingInstruction(r.Name, r.Value); 1208newNode = new XProcessingInstruction(r.Name, await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XDocumentType.cs (1)
48_name = r.Name;
System\Xml\Linq\XNode.cs (2)
493var name = reader.Name; 503var target = reader.Name;
System\Xml\Linq\XProcessingInstruction.cs (1)
53target = r.Name;
System.ServiceModel.Primitives (23)
Internals\System\Xml\XmlMtomReader.cs (2)
724return _xmlReader.Name; 1641return (_readState == ReadState.Interactive) ? string.Empty : _parentReader.Name;
System\ServiceModel\Channels\WsrmMessageInfo.cs (8)
1145SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType, 1158SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType, 1173SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType, 1186SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType, 1213SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType, 1234SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType, 1240SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType, 1251SRP.Format(SRP.UnexpectedXmlChildNode, reader.Name, reader.NodeType,
System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (1)
436throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SRP.Format(SRP.SFxInvalidMessageBody, messageInfo.WrapperName, messageInfo.WrapperNamespace, reader.NodeType, reader.Name, reader.NamespaceURI)));
System\ServiceModel\Dispatcher\EndpointAddressProcessor.cs (1)
49if (reader.Prefix == "xmlns" || reader.Name == "xmlns")
System\ServiceModel\Dispatcher\PrimitiveOperationFormatter.cs (2)
579throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SRP.Format(SRP.SFxInvalidMessageBody, _requestWrapperName, _requestWrapperNamespace, reader.NodeType, reader.Name, reader.NamespaceURI))); 604throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new SerializationException(SRP.Format(SRP.SFxInvalidMessageBody, _responseWrapperName, _responseWrapperNamespace, reader.NodeType, reader.Name, reader.NamespaceURI)));
System\ServiceModel\EndpointAddress.cs (3)
482Fx.Assert(reader.Name == DummyName, "EndpointAddress: Expected dummy element not found"); 1252Fx.Assert(reader.Name == EndpointAddress.DummyName, "EndpointAddressBuilder: Expected dummy element not found"); 1286Fx.Assert(reader.Name == EndpointAddress.DummyName, "EndpointAddressBuilder: Expected dummy element not found");
System\ServiceModel\EndpointIdentity.cs (2)
181throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SRP.Format(SRP.UnrecognizedIdentityType, reader.Name, reader.NamespaceURI))); 190throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SRP.Format(SRP.UnrecognizedIdentityType, reader.Name, reader.NamespaceURI)));
System\ServiceModel\Security\WSTrust.cs (1)
397string rootName = reader.Name;
System\ServiceModel\Security\XmlHelper.cs (3)
181throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SRP.Format(SRP.EmptyXmlElementError, r.Name))); 211throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new XmlException(SRP.Format(SRP.UnexpectedXmlChildNode, r.Name, r.NodeType, parentName))); 245OnRequiredAttributeMissing(name.Value, reader == null ? null : reader.Name);
System.Web.Services.Description (151)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (151)
4879else if (IsXmlnsAttribute(Reader.Name)) { 4883} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 5010else if (IsXmlnsAttribute(Reader.Name)) { 5014} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 5100else if (IsXmlnsAttribute(Reader.Name)) { 5104} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 5207else if (!IsXmlnsAttribute(Reader.Name)) { 5267else if (!IsXmlnsAttribute(Reader.Name)) { 5327else if (!IsXmlnsAttribute(Reader.Name)) { 5391else if (IsXmlnsAttribute(Reader.Name)) { 5395} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 5508else if (IsXmlnsAttribute(Reader.Name)) { 5512} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 5632else if (IsXmlnsAttribute(Reader.Name)) { 5636} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 5741else if (!IsXmlnsAttribute(Reader.Name)) { 5821else if (!IsXmlnsAttribute(Reader.Name)) { 5888else if (IsXmlnsAttribute(Reader.Name)) { 5892} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 6061else if (!IsXmlnsAttribute(Reader.Name)) { 6143else if (!IsXmlnsAttribute(Reader.Name)) { 6215else if (!IsXmlnsAttribute(Reader.Name)) { 6291else if (!IsXmlnsAttribute(Reader.Name)) { 6373else if (!IsXmlnsAttribute(Reader.Name)) { 6445else if (!IsXmlnsAttribute(Reader.Name)) { 6502else if (!IsXmlnsAttribute(Reader.Name)) { 6595else if (!IsXmlnsAttribute(Reader.Name)) { 6664else if (!IsXmlnsAttribute(Reader.Name)) { 6733else if (!IsXmlnsAttribute(Reader.Name)) { 6845else if (!IsXmlnsAttribute(Reader.Name)) { 6909else if (!IsXmlnsAttribute(Reader.Name)) { 6968else if (IsXmlnsAttribute(Reader.Name)) { 6972} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 7141else if (!IsXmlnsAttribute(Reader.Name)) { 7197else if (!IsXmlnsAttribute(Reader.Name)) { 7265else if (!IsXmlnsAttribute(Reader.Name)) { 7337else if (!IsXmlnsAttribute(Reader.Name)) { 7405else if (!IsXmlnsAttribute(Reader.Name)) { 7469else if (!IsXmlnsAttribute(Reader.Name)) { 7533else if (!IsXmlnsAttribute(Reader.Name)) { 7593else if (!IsXmlnsAttribute(Reader.Name)) { 7653else if (IsXmlnsAttribute(Reader.Name)) { 7657} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 7745else if (IsXmlnsAttribute(Reader.Name)) { 7749} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 7855else if (IsXmlnsAttribute(Reader.Name)) { 7859} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 7935else if (IsXmlnsAttribute(Reader.Name)) { 7939} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8015else if (IsXmlnsAttribute(Reader.Name)) { 8019} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8092else if (IsXmlnsAttribute(Reader.Name)) { 8096} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8186else if (IsXmlnsAttribute(Reader.Name)) { 8190} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8259if (IsXmlnsAttribute(Reader.Name)) { 8263} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8371else if (IsXmlnsAttribute(Reader.Name)) { 8375} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8558else if (IsXmlnsAttribute(Reader.Name)) { 8562} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8666else if (IsXmlnsAttribute(Reader.Name)) { 8670} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8743else if (IsXmlnsAttribute(Reader.Name)) { 8747} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8835else if (IsXmlnsAttribute(Reader.Name)) { 8839} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8912else if (IsXmlnsAttribute(Reader.Name)) { 8916} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 8998else if (IsXmlnsAttribute(Reader.Name)) { 9002} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9102else if (IsXmlnsAttribute(Reader.Name)) { 9106} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9190else if (IsXmlnsAttribute(Reader.Name)) { 9194} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9288else if (IsXmlnsAttribute(Reader.Name)) { 9292} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9382else if (IsXmlnsAttribute(Reader.Name)) { 9386} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9590else if (IsXmlnsAttribute(Reader.Name)) { 9594} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9674else if (IsXmlnsAttribute(Reader.Name)) { 9678} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9758else if (IsXmlnsAttribute(Reader.Name)) { 9762} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9842else if (IsXmlnsAttribute(Reader.Name)) { 9846} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 9926else if (IsXmlnsAttribute(Reader.Name)) { 9930} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10010else if (IsXmlnsAttribute(Reader.Name)) { 10014} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10094else if (IsXmlnsAttribute(Reader.Name)) { 10098} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10178else if (IsXmlnsAttribute(Reader.Name)) { 10182} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10262else if (IsXmlnsAttribute(Reader.Name)) { 10266} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10346else if (IsXmlnsAttribute(Reader.Name)) { 10350} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10430else if (IsXmlnsAttribute(Reader.Name)) { 10434} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10514else if (IsXmlnsAttribute(Reader.Name)) { 10518} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10594else if (IsXmlnsAttribute(Reader.Name)) { 10598} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10767else if (IsXmlnsAttribute(Reader.Name)) { 10771} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10890else if (IsXmlnsAttribute(Reader.Name)) { 10894} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 10984else if (IsXmlnsAttribute(Reader.Name)) { 10988} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11065else if (IsXmlnsAttribute(Reader.Name)) { 11069} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11160else if (IsXmlnsAttribute(Reader.Name)) { 11164} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11271else if (IsXmlnsAttribute(Reader.Name)) { 11275} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11404else if (IsXmlnsAttribute(Reader.Name)) { 11408} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11499else if (IsXmlnsAttribute(Reader.Name)) { 11503} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11637else if (IsXmlnsAttribute(Reader.Name)) { 11641} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11722else if (IsXmlnsAttribute(Reader.Name)) { 11726} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11864else if (IsXmlnsAttribute(Reader.Name)) { 11868} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 11940else if (IsXmlnsAttribute(Reader.Name)) { 11944} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12029else if (IsXmlnsAttribute(Reader.Name)) { 12033} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12135else if (IsXmlnsAttribute(Reader.Name)) { 12139} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12363else if (IsXmlnsAttribute(Reader.Name)) { 12367} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12452else if (IsXmlnsAttribute(Reader.Name)) { 12456} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12573else if (IsXmlnsAttribute(Reader.Name)) { 12577} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12693else if (IsXmlnsAttribute(Reader.Name)) { 12697} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12793else if (IsXmlnsAttribute(Reader.Name)) { 12797} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 12874else if (IsXmlnsAttribute(Reader.Name)) { 12878} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 13004else if (IsXmlnsAttribute(Reader.Name)) { 13008} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 13084else if (IsXmlnsAttribute(Reader.Name)) { 13088} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value); 13164else if (IsXmlnsAttribute(Reader.Name)) { 13168} ((global::System.Xml.Serialization.XmlSerializerNamespaces)o.@Namespaces).Add(Reader.Name.Length == 5 ? "" : Reader.LocalName, Reader.Value);
System.Xaml (7)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlCompatibilityReader.cs (3)
271Error(SR.XCRInvalidACChild, Reader.Name); 747_currentName = Reader.Name; 1160Error(SR.Format(SR.XCRInvalidACChild, Reader.Name));
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
42public override string Name { get { return _reader.Name; } }
System\Xaml\Parser\XamlScanner.cs (3)
249XamlPropertyName name = XamlPropertyName.Parse(_xmlReader.Name, _xmlReader.NamespaceURI); 252throw LineInfo(new XamlParseException(SR.Format(SR.ParentlessPropertyElement, _xmlReader.Name))); 556string xmlName = _xmlReader.Name;