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)
404codeBaseNode.Value = updatedApplicationPath; 413publicKeyTokenNode.Value = appManifest.PublicKeyToken;
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
2367n.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;
98 references to Value
Microsoft.Build (5)
Construction\ProjectElement.cs (1)
409XmlElement.AppendChild(XmlElement.OwnerDocument.CreateTextNode(element.XmlElement.FirstChild.Value));
Construction\ProjectElementContainer.cs (3)
515var newWhitespaceNode = XmlDocument.CreateWhitespace(referenceSibling.XmlElement.PreviousSibling.Value); 531var newWhitespaceNode = XmlDocument.CreateWhitespace(child.XmlElement.PreviousSibling.Value); 568var leadingWhiteSpace = xmlElement.PreviousSibling.Value;
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementLink.cs (1)
140result = xml.XmlElement.FirstChild.Value;
Microsoft.Build.Engine.UnitTests (11)
Construction\ElementLocation_Tests.cs (1)
440locations += ((XmlNode)node).Name + "==" + ((XmlNode)node).Value ?? String.Empty + ": " + value.LocationString + "\r\n";
Construction\ProjectRootElement_Tests.cs (4)
83Assert.Equal("Initial Comment", children[0].ChildNodes[0].Value); 84Assert.Equal("Ending Comment", children[0].ChildNodes[1].Value); 115Assert.Equal(string.Empty, children[0].ChildNodes[0].Value); 116Assert.Equal(string.Empty, children[0].ChildNodes[1].Value);
Evaluation\ProjectStringCache_Tests.cs (6)
72Assert.Same(node1.Value, node2.Value); 143Assert.Same(node1.Value, node2.Value); 219Assert.Same(node1.Value, node2.Value);
Microsoft.Build.Tasks.Core (10)
BootstrapperUtil\BootstrapperBuilder.cs (1)
1763_results?.AddMessage(BuildMessage.CreateMessage(BuildMessageSeverity.Error, "GenerateBootstrapper.NoStringsForCulture", resourcesNode.Attributes.GetNamedItem("Culture").Value));
ManifestUtil\AssemblyIdentity.cs (6)
239string name = node?.Value; 241string version = node?.Value; 243string publicKeyToken = node?.Value; 245string culture = node?.Value; 247string processorArchitecture = node?.Value; 249string 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));
PresentationFramework (2)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
528else if (oldValue.Value != value)
MS\Internal\Globalization\BamlTreeUpdater.cs (1)
491node.Value,
PresentationFramework-SystemXml (2)
SystemXmlExtension.cs (2)
155value += node.ChildNodes[i].Value; 161value = node.Value;
ReachFramework (2)
PrintConfig\PrtTicket_Base.cs (2)
844return valueNode.FirstChild.Value; 1314value = 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)
565return _node.Value;
System\Xml\RegionIterator.cs (2)
181value = n.Value; 192sb.Append(n.Value);
System\Xml\XPathNodePointer.cs (2)
309string? strRet = _node.Value; 319strRet += 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)
121return IsDefaultNamespaceNode(n) && n.Value!.Length == 0; 480nsattrib.Value = attrib.Value;