7 overrides of InnerText
System.Private.Xml (7)
System\Xml\Dom\XmlAttribute.cs (1)
124public override string InnerText
System\Xml\Dom\XmlCharacterData.cs (1)
31public override string InnerText
System\Xml\Dom\XmlDeclaration.cs (1)
78public override string InnerText
System\Xml\Dom\XmlDocument.cs (1)
1367public override string InnerText
System\Xml\Dom\XmlElement.cs (1)
591public override string InnerText
System\Xml\Dom\XmlEntity.cs (1)
60public override string InnerText
System\Xml\Dom\XmlProcessingInstruction.cs (1)
70public override string InnerText
8 writes to InnerText
Microsoft.Build.Engine (1)
Engine\Utilities.cs (1)
328node.InnerText = s;
PresentationFramework (2)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
221node.InnerText = Convert.ToBase64String(buffer.GetBuffer(), 0, (int)buffer.Length); 390node.InnerText = Convert.ToBase64String(buffer.GetBuffer(), 0, (int)buffer.Length);
System.Private.Xml (4)
System\Xml\Dom\DocumentXPathNavigator.cs (2)
55node.InnerText = value; 77node.InnerText = value;
System\Xml\Dom\XmlAttribute.cs (2)
131base.InnerText = value; 136base.InnerText = value;
WasmBuildTasks (1)
UpdateChromeVersions.cs (1)
176node.InnerText = newValue;
56 references to InnerText
Microsoft.Build (3)
Construction\Solution\SolutionFile.cs (2)
912string fileElementValue = referenceNode.SelectSingleNode("FILE").InnerText; 934proj.ProjectGuid = projGuidNode?.InnerText ?? String.Empty;
Xml\ProjectXmlUtilities.XmlElementChildIterator.cs (1)
91if (child.NodeType == XmlNodeType.Text && String.IsNullOrWhiteSpace(child.InnerText))
Microsoft.Build.Engine (6)
Engine\Utilities.cs (4)
428return node.InnerText; 439return node.InnerText; 449return node.InnerText; 458return node.InnerText;
Shared\SolutionParser.cs (2)
661string fileElementValue = referenceNode.SelectSingleNode("FILE").InnerText; 676proj.ProjectGuid = projGuidNode.InnerText;
Microsoft.Build.Tasks.Core (10)
AddToWin32Manifest.cs (2)
197if (!string.Equals(supportedArchitecturesNode.InnerText.Trim(), SupportedArchitectures, StringComparison.OrdinalIgnoreCase)) 199Log.LogErrorWithCodeFromResources(null, manifestPath, 0, 0, 0, 0, "AddToWin32Manifest.InvalidValueInSupportedArchitectures", supportedArchitecturesNode.InnerText);
BootstrapperUtil\BootstrapperBuilder.cs (8)
564string culture = stringNode.InnerText; 569newAttribute.Value = stringNode.InnerText; 577Debug.Fail("Already found resources for culture " + stringNode.InnerText); 1351AddAttribute(currentNode, "Text", stringNode.InnerText); 1647attribute.Value = stringNode.InnerText; 1775resourceUpdater.AddStringResource(MESSAGE_TABLE, resourceIdAttribute.Value.ToUpper(CultureInfo.InvariantCulture), stringNode.InnerText); 2184if (currentNode.Attributes.Count == 0 && currentNode.InnerText.Length > 0) 2186AddAttribute(node, currentNode.Name, currentNode.InnerText);
Microsoft.DotNet.SignCheckLibrary (2)
Verification\VsixVerifier.cs (2)
57if (encodedTimeNode != null && encodedTimeNode.InnerText != null) 63binaryTimestamp = Convert.FromBase64String(encodedTimeNode.InnerText);
PresentationFramework (4)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (3)
238using (MemoryStream buffer = new MemoryStream(Convert.FromBase64String(node.InnerText))) 404if (string.IsNullOrEmpty(node.InnerText)) 411using (MemoryStream stream = new MemoryStream(Convert.FromBase64String(node.InnerText)))
System\Windows\Annotations\Annotation.cs (1)
339_authors.Add(node.InnerText);
PresentationFramework-SystemXml (2)
SystemXmlExtension.cs (2)
98if (node != null && node.InnerText == innerTextString) 115return node.InnerText;
System.Configuration.ConfigurationManager (1)
System\Configuration\DpapiProtectedConfigurationProvider.cs (1)
34string encText = cipherValue.InnerText;
System.Data.Common (1)
System\Xml\XPathNodePointer.cs (1)
361return _node.InnerText;
System.Private.Xml (5)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
170return _source.InnerText;
System\Xml\Dom\XmlAttribute.cs (1)
130string innerText = base.InnerText;
System\Xml\Dom\XmlElement.cs (1)
595return base.InnerText;
System\Xml\Dom\XmlEntity.cs (1)
62get { return base.InnerText; }
System\Xml\Dom\XmlNode.cs (1)
908builder.Append(child.InnerText);
System.Security.Cryptography.Xml (18)
System\Security\Cryptography\Xml\CipherData.cs (1)
115_cipherValue = Convert.FromBase64String(Utils.DiscardWhiteSpaces(cipherValueNode.InnerText));
System\Security\Cryptography\Xml\DSAKeyValue.cs (7)
200P = (pNode != null) ? Convert.FromBase64String(pNode.InnerText) : null, 201Q = (qNode != null) ? Convert.FromBase64String(qNode.InnerText) : null, 202G = (gNode != null) ? Convert.FromBase64String(gNode.InnerText) : null, 203Y = Convert.FromBase64String(yNode.InnerText), 204J = (jNode != null) ? Convert.FromBase64String(jNode.InnerText) : null, 205Seed = (seedNode != null) ? Convert.FromBase64String(seedNode.InnerText) : null, 206Counter = (pgenCounterNode != null) ? Utils.ConvertByteArrayToInt(Convert.FromBase64String(pgenCounterNode.InnerText)) : 0
System\Security\Cryptography\Xml\EncryptedKey.cs (1)
111CarriedKeyName = carriedKeyNameNode.InnerText;
System\Security\Cryptography\Xml\EncryptionMethod.cs (1)
98KeySize = Convert.ToInt32(Utils.DiscardWhiteSpaces(keySizeNode.InnerText), null);
System\Security\Cryptography\Xml\KeyInfoX509Data.cs (6)
296_CRL = Convert.FromBase64String(Utils.DiscardWhiteSpaces(x509CRLNodes.Item(0)!.InnerText)); 304InternalAddIssuerSerial(x509IssuerNameNode.InnerText.Trim(), x509SerialNumberNode.InnerText.Trim()); 309AddSubjectKeyId(Convert.FromBase64String(Utils.DiscardWhiteSpaces(node.InnerText))); 314AddSubjectName(node.InnerText.Trim()); 319AddCertificate(new X509Certificate2(Convert.FromBase64String(Utils.DiscardWhiteSpaces(node.InnerText))));
System\Security\Cryptography\Xml\RSAKeyValue.cs (2)
136Modulus = Convert.FromBase64String(rsaKeyValueElement.SelectSingleNode($"{xmlDsigNamespacePrefix}:{ModulusElementName}", xmlNamespaceManager)!.InnerText), 137Exponent = Convert.FromBase64String(rsaKeyValueElement.SelectSingleNode($"{xmlDsigNamespacePrefix}:{ExponentElementName}", xmlNamespaceManager)!.InnerText)
System.ServiceModel.Primitives (2)
System\IdentityModel\Tokens\GenericXmlSecurityKeyIdentifierClause.cs (2)
48if (originalNode.LocalName != newNode.LocalName || originalNode.InnerText != newNode.InnerText)
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1510return node.InnerText;
WasmBuildTasks (1)
UpdateChromeVersions.cs (1)
122return node?.InnerText ?? string.Empty;