7 writes to Value
NuGet.Configuration (2)
Utility\XElementUtility.cs (2)
63textBeforeOrNull.Value = textBeforeOrNull.Value.Substring(0, textBeforeOrNull.Value.Length - oneIndentLevel.Length); 119lastChildText.Value += oneIndentLevel;
NuGet.PackageManagement (2)
Utility\XElementExtensions.cs (2)
291lastChildText.Value += oneIndentLevel; 330textBeforeOrNull.Value = textBeforeOrNull.Value.Substring(0, textBeforeOrNull.Value.Length - oneIndentLevel.Length);
System.Private.Xml.Linq (3)
System\Xml\Linq\XContainer.cs (1)
575tn.Value += s;
System\Xml\Linq\XLinq.cs (2)
66prevXText.Value += _text; 135prevXText.Value += _text;
36 references to Value
ConfigurationSchemaGenerator (1)
ConfigSchemaEmitter.cs (1)
507XText text => ConvertBlankLines(text.Value),
GenerateDocumentationAndConfigFiles (2)
src\roslyn\src\RoslynAnalyzers\Utilities\Compiler\RulesetToEditorconfigConverter.cs (2)
166if (xtext.Value.Contains("\r", StringComparison.Ordinal) || xtext.Value.Contains("\n", StringComparison.Ordinal))
Microsoft.CodeAnalysis.Analyzers (2)
src\roslyn\src\RoslynAnalyzers\Utilities\Compiler\RulesetToEditorconfigConverter.cs (2)
166if (xtext.Value.Contains("\r", StringComparison.Ordinal) || xtext.Value.Contains("\n", StringComparison.Ordinal))
Microsoft.CodeAnalysis.AnalyzerUtilities (2)
src\roslyn\src\RoslynAnalyzers\Utilities\Compiler\RulesetToEditorconfigConverter.cs (2)
166if (xtext.Value.Contains("\r", StringComparison.Ordinal) || xtext.Value.Contains("\n", StringComparison.Ordinal))
Microsoft.CodeAnalysis.Features (1)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (1)
573var rawText = element.Value;
Microsoft.CodeAnalysis.ResxSourceGenerator (2)
src\roslyn\src\RoslynAnalyzers\Utilities\Compiler\RulesetToEditorconfigConverter.cs (2)
166if (xtext.Value.Contains("\r", StringComparison.Ordinal) || xtext.Value.Contains("\n", StringComparison.Ordinal))
Microsoft.DotNet.SourceBuild.Tasks (1)
src\UsageReport\WriteUsageReports.cs (1)
254x.Nodes().OfType<XText>().First().Value))
NuGet.Configuration (11)
Settings\Items\OwnersItem.cs (1)
41var descendants = element.Nodes().Where(n => n is XText text && !string.IsNullOrWhiteSpace(text.Value) || n is XElement)
Settings\Items\PackageSourceMappingSourceItem.cs (1)
78var parsedDescendants = element.Nodes().Where(n => n is XElement || n is XText text && !string.IsNullOrWhiteSpace(text.Value))
Settings\Items\TrustedSignerItem.cs (2)
56IEnumerable<SettingBase> parsedDescendants = element.Nodes().Where(n => n is XElement || n is XText text && !string.IsNullOrWhiteSpace(text.Value)) 86return element.Nodes().Where(n => n is XElement || n is XText text && !string.IsNullOrWhiteSpace(text.Value))
Settings\Items\UnknownItem.cs (1)
29var descendants = element.Nodes().Where(n => n is XText text && !string.IsNullOrWhiteSpace(text.Value) || n is XElement)
Settings\SettingText.cs (1)
74var value = text.Value.Trim();
Utility\XElementUtility.cs (5)
31var parentIndent = leadingText != null ? leadingText.Value : Environment.NewLine; 63textBeforeOrNull.Value = textBeforeOrNull.Value.Substring(0, textBeforeOrNull.Value.Length - oneIndentLevel.Length); 79var indentString = textBeforeOrNull.Value.Trim(Environment.NewLine.ToCharArray()); 88return string.IsNullOrWhiteSpace(textNode.Value);
NuGet.PackageManagement (5)
Utility\XElementExtensions.cs (5)
267var parentIndent = leadingText != null ? leadingText.Value : Environment.NewLine; 330textBeforeOrNull.Value = textBeforeOrNull.Value.Substring(0, textBeforeOrNull.Value.Length - oneIndentLevel.Length); 336return string.IsNullOrWhiteSpace(textNode.Value); 350var indentString = textBeforeOrNull.Value.Trim(Environment.NewLine.ToCharArray());
Roslyn.Diagnostics.Analyzers (2)
src\roslyn\src\RoslynAnalyzers\Utilities\Compiler\RulesetToEditorconfigConverter.cs (2)
166if (xtext.Value.Contains("\r", StringComparison.Ordinal) || xtext.Value.Contains("\n", StringComparison.Ordinal))
System.Private.Xml.Linq (7)
System\Xml\Linq\XContainer.cs (2)
669s += ((XText)n).Value; 680s += ((XText)n).Value;
System\Xml\Linq\XDocument.cs (1)
909ValidateString(((XText)node).Value);
System\Xml\Linq\XNodeReader.cs (1)
373return ((XText)o).Value;
System\Xml\Schema\XNodeValidator.cs (1)
341string s = t.Value;
System\Xml\XPath\XNodeNavigator.cs (2)
726string s = n.Value; 733s += t.Value;