16 instantiations of CodeCommentStatement
dotnet-svcutil-lib (16)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Advanced\SchemaImporterExtension.cs (1)
212type.Comments.Add(new CodeCommentStatement(comment, false));
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeExporter.cs (3)
177comments.Add(new CodeCommentStatement(string.Format(ResXml.XmlCodegenWarningDetails, text), false)); 243codeClass.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 309field.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true));
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapCodeExporter.cs (5)
137codeClass.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 243field.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 251field.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 268prop.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 279prop.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCodeExporter.cs (5)
573codeClass.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 814field.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 822field.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 839prop.Comments.Add(new CodeCommentStatement(ResXml.XmlRemarks, true)); 850prop.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))); 221method.Comments.Add(new CodeCommentStatement(string.Format(SRServiceModel.SFxCodeGenWarning, ex.Message)));
29 references to CodeCommentStatement
dotnet-svcutil-lib (29)
CodeDomFixup\CodeDomVisitors\CodeDomVisitor.cs (4)
151protected override void Visit(CodeCommentStatement statement) 684else if (statement is CodeCommentStatement) 685Visit((CodeCommentStatement)statement); 715protected virtual void Visit(CodeCommentStatement statement) { }
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (4)
1076if (e is CodeCommentStatement) 1078GenerateCommentStatement((CodeCommentStatement)e); 1908protected virtual void GenerateCommentStatement(CodeCommentStatement e) 1920foreach (CodeCommentStatement comment in e)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (4)
422foreach (CodeCommentStatement comment in e) 428private void ValidateCommentStatement(CodeCommentStatement e) 442if (e is CodeCommentStatement) 444ValidateCommentStatement((CodeCommentStatement)e);
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (4)
1152if (e is CodeCommentStatement) 1154GenerateCommentStatement((CodeCommentStatement)e); 1585private void GenerateCommentStatement(CodeCommentStatement e) 1597foreach (CodeCommentStatement comment in e)
FrameworkFork\Microsoft.CodeDom\Microsoft\VBCodeProvider.cs (3)
1617private bool IsDocComment(CodeCommentStatement comment) 1634foreach (CodeCommentStatement comment in e) 1642foreach (CodeCommentStatement comment in e)
FrameworkFork\Microsoft.CodeDom\System\CodeCommentStatementCollection.cs (10)
48public CodeCommentStatementCollection(CodeCommentStatement[] value) 56public CodeCommentStatement this[int index] 60return ((CodeCommentStatement)(List[index])); 72public int Add(CodeCommentStatement value) 80public void AddRange(CodeCommentStatement[] value) 114public bool Contains(CodeCommentStatement value) 123public void CopyTo(CodeCommentStatement[] array, int index) 132public int IndexOf(CodeCommentStatement value) 140public void Insert(int index, CodeCommentStatement value) 149public void Remove(CodeCommentStatement value)