1 instantiation of CompilerError
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
577CompilerError ce = new CompilerError();
23 references to CompilerError
dotnet-svcutil-lib (23)
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerError.cs (2)
31/// Initializes a new instance of <see cref='Microsoft.CodeDom.Compiler.CompilerError'/>. 44/// Initializes a new instance of <see cref='Microsoft.CodeDom.Compiler.CompilerError'/> using the specified
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerErrorCollection.cs (20)
14/// A collection that stores <see cref='Microsoft.CodeDom.Compiler.CompilerError'/> objects. 42/// Initializes a new instance of <see cref='Microsoft.CodeDom.Compiler.CompilerErrorCollection'/> containing any array of <see cref='Microsoft.CodeDom.Compiler.CompilerError'/> objects. 45public CompilerErrorCollection(CompilerError[] value) 51/// <para>Represents the entry at the specified index of the <see cref='Microsoft.CodeDom.Compiler.CompilerError'/>.</para> 53public CompilerError this[int index] 57return ((CompilerError)(List[index])); 66/// <para>Adds a <see cref='Microsoft.CodeDom.Compiler.CompilerError'/> with the specified value to the 69public int Add(CompilerError value) 77public void AddRange(CompilerError[] value) 109/// <see cref='Microsoft.CodeDom.Compiler.CompilerErrorCollection'/> contains the specified <see cref='Microsoft.CodeDom.Compiler.CompilerError'/>.</para> 111public bool Contains(CompilerError value) 120public void CopyTo(CompilerError[] array, int index) 137foreach (CompilerError e in this) 161foreach (CompilerError e in this) 174/// <para>Returns the index of a <see cref='Microsoft.CodeDom.Compiler.CompilerError'/> in 177public int IndexOf(CompilerError value) 183/// <para>Inserts a <see cref='Microsoft.CodeDom.Compiler.CompilerError'/> into the <see cref='Microsoft.CodeDom.Compiler.CompilerErrorCollection'/> at the specified index.</para> 185public void Insert(int index, CompilerError value) 191/// <para> Removes a specific <see cref='Microsoft.CodeDom.Compiler.CompilerError'/> from the 194public void Remove(CompilerError value)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
577CompilerError ce = new CompilerError();