5 overrides of Value
System.Xml (5)
System\Xml\Dom\XmlAttribute.cs (1)
95public override String Value {
System\Xml\Dom\XmlCharacterData.cs (1)
22public override String Value {
System\Xml\Dom\XmlDeclaration.cs (1)
60public override String Value {
System\Xml\Dom\XmlEntityReference.cs (1)
59public override String Value {
System\Xml\Dom\XmlProcessingInstruction.cs (1)
41public override String Value {
7 writes to Value
System.Data (1)
fx\src\data\System\NewXml\XmlDataDocument.cs (1)
2102n.Value = value;
System.ServiceModel (2)
System\ServiceModel\Description\WsdlHelper.cs (2)
166policyId.Value = policyIdStringWithNewBindingName + policyIdString.Substring(policyIdStringWithOldBindingName.Length); 204policyReference.Value = policyReferenceValueWithNewBindingName + policyReference.Value.Substring(policyReferenceValueWithOldBindingName.Length);
System.Xml (4)
System\Xml\Dom\XmlElement.cs (1)
504linkedNode.Value = value;
System\Xml\Dom\XmlNode.cs (3)
657firstChildTextLikeNode.Value = sb.ToString(); 667firstChildTextLikeNode.Value = sb.ToString(); 812firstChild.Value = value;
79 references to Value
ComSvcConfig (2)
EndpointConfigContainer.cs (2)
783if (IsValidVersion(xmlNodeS.Attributes.GetNamedItem("version").Value)) 792string requiredVersion = requiredRuntime.Attributes.GetNamedItem("version").Value;
PresentationFramework (2)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
534else if (oldValue.Value != value)
src\Framework\MS\Internal\Globalization\BamlTreeUpdater.cs (1)
490node.Value,
System.Data (11)
fx\src\data\System\Data\Common\DbProviderConfigurationHandler.cs (1)
127string value = attribute.Value;
fx\src\data\System\Data\Common\HandlerBase.cs (1)
53string value = attribute.Value;
fx\src\data\System\Data\XmlDataLoader.cs (4)
139value = n.Value; 145sb.Append( n.Value ); 168value = n.Value; 174sb.Append( n.Value );
fx\src\data\System\NewXml\DataPointer.cs (1)
457return this.node.Value;
fx\src\data\System\NewXml\RegionIterator.cs (2)
157value = n.Value; 165sb.Append( n.Value );
fx\src\data\System\NewXml\XPathNodePointer.cs (2)
282string strRet = this._node.Value; 290strRet += n.Value;
System.IdentityModel (4)
System\IdentityModel\Tokens\ConfigurationBasedIssuerNameRegistry.cs (4)
91string thumbprint = thumbprintAttribute.Value; 94string issuerName = ((nameAttribute == null) || string.IsNullOrEmpty(nameAttribute.Value)) ? String.Empty : String.Intern(nameAttribute.Value); 108string thumbprint = childElement.Attributes.GetNamedItem(ConfigurationStrings.Thumbprint).Value;
System.Runtime.Serialization (9)
System\Runtime\Serialization\SchemaImporter.cs (9)
1040string emitDefaultValueString = (emitDefaultValueAttribute == null) ? null : emitDefaultValueAttribute.Value; 1053string name = (nameAttribute == null) ? null : nameAttribute.Value; 1057string ns = (nsAttribute == null) ? null : nsAttribute.Value; 1299string name = (nameAttribute == null) ? null : nameAttribute.Value; 1303string ns = (nsAttribute == null) ? null : nsAttribute.Value; 1323if (!Int32.TryParse(nestedLevelAttribute.Value, out argumentLevel)) 1324throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidDataContractException(SR.GetString(SR.GenericAnnotationHasInvalidAttributeValue, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name, nestedLevelAttribute.Value, nestedLevelAttribute.LocalName, Globals.TypeOfInt.Name))); 1337if (!Int32.TryParse(typeNestedLevelsAttribute.Value, out nestedLevels)) 1338throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidDataContractException(SR.GetString(SR.GenericAnnotationHasInvalidAttributeValue, typeElement.LocalName, typeElement.NamespaceURI, type.Name, typeNestedLevelsAttribute.Value, typeNestedLevelsAttribute.LocalName, Globals.TypeOfInt.Name)));
System.ServiceModel (4)
System\ServiceModel\Description\WsdlHelper.cs (3)
161string policyIdString = policyId.Value; 199string policyReferenceValue = policyReference.Value; 204policyReference.Value = policyReferenceValueWithNewBindingName + policyReference.Value.Substring(policyReferenceValueWithOldBindingName.Length);
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (1)
856if (claimType != null && claimType.Value == wsidPPIClaim)
System.Web (12)
Configuration\HandlerBase.cs (10)
49val = a.Value; 86if (a.Value == "true") { 89else if (a.Value == "false") { 109if (a.Value.Trim() != a.Value) { 116val = int.Parse(a.Value, CultureInfo.InvariantCulture); 150val = ConfigUtil.GetType(a.Value, a); 188return attribute.Value; 208if (attribute.Value.Length == 0 && !allowEmpty) { 214return attribute.Value;
Configuration\HttpCapabilitiesSectionHandler.cs (1)
180AppendLines(result, child.Value, node);
UI\WebControls\XmlHierarchyData.cs (1)
230return data._item.Value;
System.Web.Extensions (4)
Script\Services\WebServiceTypeData.cs (4)
262Debug.Assert(nameAttribute.Value != null); 263string name = nameAttribute.Value; 267Debug.Assert(nsAttribute.Value != null); 268string ns = nsAttribute.Value;
System.Web.Mobile (4)
Mobile\ConfigurationSectionHelper.cs (3)
58if(required && (attributeNode.Value != null && attributeNode.Value.Length == 0)) 64return attributeNode.Value;
UI\MobileControls\MobileControlsSectionHandler.cs (1)
40config[attribute.Name] = attribute.Value;
System.Xml (27)
System\Xml\Dom\DocumentSchemaValidator.cs (3)
435return currentNode.Value; 659validator.ValidateText(child.Value); 664validator.ValidateWhitespace(child.Value);
System\Xml\Dom\DocumentXPathNavigator.cs (3)
156return source.Value; 175string value = source.Value; 181builder.Append(nextSibling.Value);
System\Xml\Dom\XmlDocument.cs (7)
808newNode = CreateTextNode( node.Value ); 811newNode = CreateComment( node.Value); 814newNode = CreateProcessingInstruction( node.Name, node.Value ); 821newNode = CreateCDataSection( node.Value ); 840newNode = CreateWhitespace( node.Value ); 844newNode = CreateSignificantWhitespace( node.Value ); 1347string nodeValue = node.Value;
System\Xml\Dom\XmlNamedNodemap.cs (3)
126string nodeValue = node.Value; 157string oldNodeValue = oldNode.Value; 185string nodeValue = node.Value;
System\Xml\Dom\XmlNode.cs (8)
250string newChildValue = newChild.Value; 351string newChildValue = newChild.Value; 423string oldNodeValue = oldNode.Value; 530string newChildValue = newChild.Value; 639sb.Append( crtChild.Value ); 797return fc.Value; 1218result += ", Name=\"" + node.Name + "\", Value=\"" + XmlConvert.EscapeValueForDebuggerDisplay(node.Value) + "\""; 1226result += ", Value=\"" + XmlConvert.EscapeValueForDebuggerDisplay(node.Value) + "\"";
System\Xml\Dom\XmlNodeReader.cs (2)
211if ( curNode.Value != null || curNode.NodeType == XmlNodeType.DocumentType ) 244retValue = curNode.Value;
System\Xml\Serialization\_Events.cs (1)
209get { return xmlNode.Value; }