16 instantiations of CodeCommentStatement
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Advanced\SchemaImporterExtension.cs (1)
212
type.Comments.Add(new
CodeCommentStatement
(comment, false));
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeExporter.cs (3)
177
comments.Add(new
CodeCommentStatement
(string.Format(ResXml.XmlCodegenWarningDetails, text), false));
243
codeClass.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
309
field.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapCodeExporter.cs (5)
137
codeClass.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
243
field.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
251
field.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
268
prop.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
279
prop.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCodeExporter.cs (5)
573
codeClass.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
814
field.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
822
field.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
839
prop.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
850
prop.Comments.Add(new
CodeCommentStatement
(ResXml.XmlRemarks, true));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (2)
183
_method.Comments.Add(new
CodeCommentStatement
(string.Format(SRServiceModel.SFxCodeGenWarning, SRServiceModel.SFxCannotImportAsParameters_OutputParameterAndTask)));
221
method.Comments.Add(new
CodeCommentStatement
(string.Format(SRServiceModel.SFxCodeGenWarning, ex.Message)));
36 references to CodeCommentStatement
dotnet-svcutil-lib (36)
CodeDomFixup\CodeDomVisitors\CodeDomVisitor.cs (4)
151
protected override void Visit(
CodeCommentStatement
statement)
684
else if (statement is
CodeCommentStatement
)
685
Visit((
CodeCommentStatement
)statement);
715
protected virtual void Visit(
CodeCommentStatement
statement) { }
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (4)
1076
if (e is
CodeCommentStatement
)
1078
GenerateCommentStatement((
CodeCommentStatement
)e);
1908
protected virtual void GenerateCommentStatement(
CodeCommentStatement
e)
1920
foreach (
CodeCommentStatement
comment in e)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (4)
422
foreach (
CodeCommentStatement
comment in e)
428
private void ValidateCommentStatement(
CodeCommentStatement
e)
442
if (e is
CodeCommentStatement
)
444
ValidateCommentStatement((
CodeCommentStatement
)e);
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (4)
1152
if (e is
CodeCommentStatement
)
1154
GenerateCommentStatement((
CodeCommentStatement
)e);
1585
private void GenerateCommentStatement(
CodeCommentStatement
e)
1597
foreach (
CodeCommentStatement
comment in e)
FrameworkFork\Microsoft.CodeDom\System\CodeCommentStatement.cs (2)
27
/// Initializes a new instance of <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/>.
44
/// Initializes a new instance of <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/> with the specified text as
FrameworkFork\Microsoft.CodeDom\System\CodeCommentStatementCollection.cs (18)
14
/// A collection that stores <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/> objects.
45
/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> containing any array of <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/> objects.
48
public CodeCommentStatementCollection(
CodeCommentStatement
[] value)
54
/// <para>Represents the entry at the specified index of the <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/>.</para>
56
public
CodeCommentStatement
this[int index]
60
return ((
CodeCommentStatement
)(List[index]));
69
/// <para>Adds a <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/> with the specified value to the
72
public int Add(
CodeCommentStatement
value)
80
public void AddRange(
CodeCommentStatement
[] value)
112
/// <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> contains the specified <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/>.</para>
114
public bool Contains(
CodeCommentStatement
value)
123
public void CopyTo(
CodeCommentStatement
[] array, int index)
129
/// <para>Returns the index of a <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/> in
132
public int IndexOf(
CodeCommentStatement
value)
138
/// <para>Inserts a <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/> into the <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> at the specified index.</para>
140
public void Insert(int index,
CodeCommentStatement
value)
146
/// <para> Removes a specific <see cref='Microsoft.CodeDom.
CodeCommentStatement
'/> from the
149
public void Remove(
CodeCommentStatement
value)