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
5 writes to Value
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
2334n.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;
73 references to 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) 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)
1026if (emitDefaultValueAttribute?.Value == null) 1028return XmlConvert.ToBoolean(emitDefaultValueAttribute.Value); 1038if (nameAttribute?.Value == null) 1041if (nsAttribute?.Value == null) 1043return new XmlQualifiedName(nameAttribute.Value, nsAttribute.Value); 1284string? name = typeElement.Attributes.GetNamedItem(Globals.GenericNameAttribute)?.Value; 1287string? ns = typeElement.Attributes.GetNamedItem(Globals.GenericNamespaceAttribute)?.Value; 1306if (!int.TryParse(nestedLevelAttribute.Value, out argumentLevel)) 1307throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidAttributeValue, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name, nestedLevelAttribute.Value, nestedLevelAttribute.LocalName, Globals.TypeOfInt.Name)); 1321if (!int.TryParse(typeNestedLevelsAttribute.Value, out nestedLevels)) 1322throw 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)
979newNode = CreateTextNode(node.Value); 982newNode = CreateComment(node.Value); 985newNode = CreateProcessingInstruction(node.Name, node.Value!); 992newNode = CreateCDataSection(node.Value); 1011newNode = CreateWhitespace(node.Value); 1015newNode = CreateSignificantWhitespace(node.Value); 1612string? 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)
370if (nameAttribute?.Value == null) 373if (nsAttribute?.Value == null) 375return 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;