29 references to CodeCommentStatement
PresentationBuildTasks (3)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (3)
1496
CodeCommentStatement ccs = new
CodeCommentStatement
(SummaryStartTag, true);
1498
ccs = new
CodeCommentStatement
(comment, true);
1500
ccs = new
CodeCommentStatement
(SummaryEndTag, true);
System.Data.Entity.Design (15)
System\Data\Entity\Design\EntityViewGeneration\EntityViewGenerator.cs (8)
492
getViewAtMethod.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryStartElement, true /*docComment*/));
494
getViewAtMethod.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryEndElement, true /*docComment*/));
544
viewMethod.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryStartElement, true /*docComment*/));
546
viewMethod.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryEndElement, true /*docComment*/));
659
constructor.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryStartElement, true /*docComment*/));
661
constructor.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryEndElement, true /*docComment*/));
677
typeDecl.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryStartElement, true /*docComment*/));
679
typeDecl.Comments.Add(new
CodeCommentStatement
(EntityViewGenerationConstants.SummaryEndElement, true /*docComment*/));
System\Data\EntityModel\Emitters\CommentEmitter.cs (4)
136
commentCollection.Add(new
CodeCommentStatement
(comment, docComment));
154
commentCollection.Add(new
CodeCommentStatement
(paramComment, true));
328
commentCollection.Add(new
CodeCommentStatement
(string.Format(CultureInfo.InvariantCulture, "<{0}>", tag), true));
330
commentCollection.Add(new
CodeCommentStatement
(string.Format(CultureInfo.InvariantCulture, "</{0}>", tag), true));
System\Data\EntityModel\Emitters\EntityTypeEmitter.cs (3)
60
typeDecl.Comments.Add( new
CodeCommentStatement
( "<KeyProperties>", true ) );
64
typeDecl.Comments.Add( new
CodeCommentStatement
( name, true ) );
66
typeDecl.Comments.Add( new
CodeCommentStatement
( "</KeyProperties>", true ) );
System.Data.Services.Design (7)
System\Data\EntityModel\Emitters\CommentEmitter.cs (4)
129
commentCollection.Add(new
CodeCommentStatement
(comment, docComment));
149
commentCollection.Add(new
CodeCommentStatement
(paramComment, true));
327
commentCollection.Add(new
CodeCommentStatement
(string.Format(CultureInfo.InvariantCulture, "<{0}>", tag), true));
329
commentCollection.Add(new
CodeCommentStatement
(string.Format(CultureInfo.InvariantCulture, "</{0}>", tag), true));
System\Data\EntityModel\Emitters\EntityTypeEmitter.cs (3)
61
typeDecl.Comments.Add(new
CodeCommentStatement
("<KeyProperties>", true));
65
typeDecl.Comments.Add(new
CodeCommentStatement
(name, true));
67
typeDecl.Comments.Add(new
CodeCommentStatement
("</KeyProperties>", true));
System.Xml (1)
System\Xml\Serialization\Advanced\SchemaImporterExtension.cs (1)
179
type.Comments.Add(new
CodeCommentStatement
(comment, false));
XamlBuildTask (3)
Microsoft\Build\Tasks\Xaml\ClassGenerator.cs (3)
1007
new
CodeCommentStatement
("<summary>", true),
1008
new
CodeCommentStatement
(comment, true),
1009
new
CodeCommentStatement
("</summary>", true)