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)));
36 references to CodeCommentStatement
dotnet-svcutil-lib (36)
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\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. 48public CodeCommentStatementCollection(CodeCommentStatement[] value) 54/// <para>Represents the entry at the specified index of the <see cref='Microsoft.CodeDom.CodeCommentStatement'/>.</para> 56public CodeCommentStatement this[int index] 60return ((CodeCommentStatement)(List[index])); 69/// <para>Adds a <see cref='Microsoft.CodeDom.CodeCommentStatement'/> with the specified value to the 72public int Add(CodeCommentStatement value) 80public void AddRange(CodeCommentStatement[] value) 112/// <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> contains the specified <see cref='Microsoft.CodeDom.CodeCommentStatement'/>.</para> 114public bool Contains(CodeCommentStatement value) 123public void CopyTo(CodeCommentStatement[] array, int index) 129/// <para>Returns the index of a <see cref='Microsoft.CodeDom.CodeCommentStatement'/> in 132public 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> 140public void Insert(int index, CodeCommentStatement value) 146/// <para> Removes a specific <see cref='Microsoft.CodeDom.CodeCommentStatement'/> from the 149public void Remove(CodeCommentStatement value)