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