4 writes to Text
dotnet-svcutil-lib (4)
CodeDomFixup\CodeDomVisitors\NamespaceFixer.cs (2)
63
comment.
Text
= comment.Text.Replace(s_microsoftXml, s_systemXml);
67
comment.
Text
= comment.Text.Replace(s_microsoftCodeDom, s_systemCodeDom);
FrameworkFork\Microsoft.CodeDom\System\CodeComment.cs (2)
43
Text
= text;
51
Text
= text;
7 references to Text
dotnet-svcutil-lib (7)
CodeDomFixup\CodeDomVisitors\NamespaceFixer.cs (6)
61
if (comment.
Text
.Contains(s_microsoftXml) && _xmlTypes.ContainsKey(comment.
Text
))
63
comment.Text = comment.
Text
.Replace(s_microsoftXml, s_systemXml);
65
if (comment.
Text
.Contains(s_microsoftCodeDom) && _codeDomTypes.ContainsKey(comment.
Text
))
67
comment.Text = comment.
Text
.Replace(s_microsoftCodeDom, s_systemCodeDom);
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
1547
string value = e.
Text
;