5 overrides of Value
System.Private.Xml (5)
System\Xml\Dom\XmlAttribute.cs (1)
110public override string Value
System\Xml\Dom\XmlCharacterData.cs (1)
23public override string? Value
System\Xml\Dom\XmlDeclaration.cs (1)
69public override string? Value
System\Xml\Dom\XmlEntityReference.cs (1)
62public override string? Value
System\Xml\Dom\XmlProcessingInstruction.cs (1)
33public override string Value
7 writes to Value
Microsoft.Build.Tasks.Core (2)
ManifestUtil\Manifest.cs (2)
403codeBaseNode.Value = updatedApplicationPath; 412publicKeyTokenNode.Value = appManifest.PublicKeyToken;
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
2336n.Value = value;
System.Private.Xml (4)
System\Xml\Dom\XmlElement.cs (1)
605linkedNode.Value = value;
System\Xml\Dom\XmlNode.cs (3)
770firstChildTextLikeNode.Value = sb.ToString(); 781firstChildTextLikeNode.Value = sb.ToString(); 954firstChild.Value = value;
93 references to Value
Microsoft.Build (5)
Construction\ProjectElement.cs (1)
409XmlElement.AppendChild(XmlElement.OwnerDocument.CreateTextNode(element.XmlElement.FirstChild.Value));
Construction\ProjectElementContainer.cs (3)
532var newWhitespaceNode = XmlDocument.CreateWhitespace(referenceSibling.XmlElement.PreviousSibling.Value); 548var newWhitespaceNode = XmlDocument.CreateWhitespace(child.XmlElement.PreviousSibling.Value); 585var leadingWhiteSpace = xmlElement.PreviousSibling.Value;
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementLink.cs (1)
140result = xml.XmlElement.FirstChild.Value;
Microsoft.Build.Engine.UnitTests (5)
Construction\ElementLocation_Tests.cs (1)
440locations += ((XmlNode)node).Name + "==" + ((XmlNode)node).Value ?? String.Empty + ": " + value.LocationString + "\r\n";
Construction\ProjectRootElement_Tests.cs (4)
84Assert.Equal("Initial Comment", children[0].ChildNodes[0].Value); 85Assert.Equal("Ending Comment", children[0].ChildNodes[1].Value); 116Assert.Equal(string.Empty, children[0].ChildNodes[0].Value); 117Assert.Equal(string.Empty, children[0].ChildNodes[1].Value);
Microsoft.Build.Tasks.Core (10)
BootstrapperUtil\BootstrapperBuilder.cs (1)
1767_results?.AddMessage(BuildMessage.CreateMessage(BuildMessageSeverity.Error, "GenerateBootstrapper.NoStringsForCulture", resourcesNode.Attributes.GetNamedItem("Culture").Value));
ManifestUtil\AssemblyIdentity.cs (6)
250string name = node?.Value; 252string version = node?.Value; 254string publicKeyToken = node?.Value; 256string culture = node?.Value; 258string processorArchitecture = node?.Value; 260string type = node?.Value;
ManifestUtil\ManifestReader.cs (3)
34string componentFileName = nameNode?.Value; 39comInfoList.Add(new ComInfo(manifestFileName, componentFileName, clsidNode.Value, null)); 45comInfoList.Add(new ComInfo(manifestFileName, componentFileName, null, tlbidNode.Value));
Microsoft.Maui.Controls.SourceGen (1)
CodeBehindGenerator.cs (1)
691 var plats = platforms.Value.Split(',');
PresentationFramework (2)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
517else if (oldValue.Value != value)
MS\Internal\Globalization\BamlTreeUpdater.cs (1)
464node.Value,
PresentationFramework-SystemXml (2)
SystemXmlExtension.cs (2)
154value += node.ChildNodes[i].Value; 160value = node.Value;
ReachFramework (2)
PrintConfig\PrtTicket_Base.cs (2)
832return valueNode.FirstChild.Value; 1295value = valueNode.FirstChild.Value;
System.Configuration.ConfigurationManager (10)
System\Configuration\HandlerBase.cs (8)
30val = a.Value; 48val = bool.Parse(a.Value); 72if (a.Value.Trim() != a.Value) 80val = int.Parse(a.Value, CultureInfo.InvariantCulture); 116return attribute.Value; 139if (string.IsNullOrEmpty(attribute.Value) && allowEmpty == false) 146return attribute.Value;
System\Configuration\NameValueFileSectionHandler.cs (2)
29if (fileAttribute != null && fileAttribute.Value.Length != 0) 32filename = fileAttribute.Value;
System.Data.Common (9)
System\Data\XmlDataLoader.cs (4)
152value = n.Value; 159sb.Append(n.Value); 182value = n.Value; 190sb.Append(n.Value);
System\Xml\DataPointer.cs (1)
566return _node.Value;
System\Xml\RegionIterator.cs (2)
181value = n.Value; 192sb.Append(n.Value);
System\Xml\XPathNodePointer.cs (2)
310string? strRet = _node.Value; 320strRet += n.Value;
System.Private.DataContractSerialization (12)
System\Runtime\Serialization\SchemaImporter.cs (12)
1027if (emitDefaultValueAttribute?.Value == null) 1029return XmlConvert.ToBoolean(emitDefaultValueAttribute.Value); 1039if (nameAttribute?.Value == null) 1042if (nsAttribute?.Value == null) 1044return new XmlQualifiedName(nameAttribute.Value, nsAttribute.Value); 1285string? name = typeElement.Attributes.GetNamedItem(Globals.GenericNameAttribute)?.Value; 1288string? ns = typeElement.Attributes.GetNamedItem(Globals.GenericNamespaceAttribute)?.Value; 1307if (!int.TryParse(nestedLevelAttribute.Value, out argumentLevel)) 1308throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidAttributeValue, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name, nestedLevelAttribute.Value, nestedLevelAttribute.LocalName, Globals.TypeOfInt.Name)); 1322if (!int.TryParse(typeNestedLevelsAttribute.Value, out nestedLevels)) 1323throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidAttributeValue, typeElement.LocalName, typeElement.NamespaceURI, type.Name, typeNestedLevelsAttribute.Value, typeNestedLevelsAttribute.LocalName, Globals.TypeOfInt.Name));
System.Private.Xml (28)
System\Xml\Dom\DocumentSchemaValidator.cs (3)
478return _currentNode!.Value; 740_validator!.ValidateText(child.Value!); 745_validator!.ValidateWhitespace(child.Value!);
System\Xml\Dom\DocumentXPathNavigator.cs (4)
179Debug.Assert(_source.Value != null); 180return _source.Value; 204string? value = _source.Value; 212builder.Append(nextSibling.Value);
System\Xml\Dom\XmlDocument.cs (7)
983newNode = CreateTextNode(node.Value); 986newNode = CreateComment(node.Value); 989newNode = CreateProcessingInstruction(node.Name, node.Value!); 996newNode = CreateCDataSection(node.Value); 1015newNode = CreateWhitespace(node.Value); 1019newNode = CreateSignificantWhitespace(node.Value); 1616string? nodeValue = node.Value;
System\Xml\Dom\XmlNamedNodemap.cs (3)
150string? nodeValue = node.Value; 187string? oldNodeValue = oldNode.Value; 217string? nodeValue = node.Value;
System\Xml\Dom\XmlNode.cs (8)
297string? newChildValue = newChild.Value; 412string? newChildValue = newChild.Value; 498string? oldNodeValue = oldNode.Value; 618string? newChildValue = newChild.Value; 746sb.Append(crtChild.Value); 937return fc.Value!; 1471result += $", Name=\"{_node.Name}\", Value=\"{XmlConvert.EscapeValueForDebuggerDisplay(_node.Value!)}\""; 1479result += $", Value=\"{XmlConvert.EscapeValueForDebuggerDisplay(_node.Value!)}\"";
System\Xml\Dom\XmlNodeReader.cs (2)
218if (_curNode.Value != null || _curNode.NodeType == XmlNodeType.DocumentType) 267retValue = _curNode.Value;
System\Xml\Serialization\_Events.cs (1)
161get { return _xmlNode.Value; }
System.Runtime.Serialization.Schema (4)
System\Runtime\Serialization\Schema\XsdDataContractImporter.cs (4)
371if (nameAttribute?.Value == null) 374if (nsAttribute?.Value == null) 376return new XmlQualifiedName(nameAttribute.Value, nsAttribute.Value);
System.Security.Cryptography.Xml (3)
System\Security\Cryptography\Xml\Transform.cs (1)
216_propagatedNamespaces.Add(key, attrib.Value);
System\Security\Cryptography\Xml\Utils.cs (2)
115return IsDefaultNamespaceNode(n) && n.Value!.Length == 0; 468nsattrib.Value = attrib.Value;