3 instantiations of CodeThrowExceptionStatement
dotnet-svcutil-lib (3)
CodeDomFixup\ArrayOfXElementTypeHelper.cs (1)
196CodeThrowExceptionStatement throwException = new CodeThrowExceptionStatement(
CodeDomFixup\MethodCreationHelper.cs (2)
2212new CodeThrowExceptionStatement( 2222new CodeThrowExceptionStatement(
16 references to CodeThrowExceptionStatement
dotnet-svcutil-lib (16)
CodeDomFixup\ArrayOfXElementTypeHelper.cs (1)
196CodeThrowExceptionStatement throwException = new CodeThrowExceptionStatement(
CodeDomFixup\CodeDomVisitors\CodeDomVisitor.cs (4)
436protected override void Visit(CodeThrowExceptionStatement statement) 704else if (statement is CodeThrowExceptionStatement) 705Visit((CodeThrowExceptionStatement)statement); 726protected virtual void Visit(CodeThrowExceptionStatement statement) { }
FrameworkFork\Microsoft.CodeDom\Compiler\CodeGenerator.cs (3)
1104else if (e is CodeThrowExceptionStatement) 1106GenerateThrowExceptionStatement((CodeThrowExceptionStatement)e); 1901protected abstract void GenerateThrowExceptionStatement(CodeThrowExceptionStatement e);
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (3)
470else if (e is CodeThrowExceptionStatement) 472ValidateThrowExceptionStatement((CodeThrowExceptionStatement)e); 526private void ValidateThrowExceptionStatement(CodeThrowExceptionStatement e)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (3)
1180else if (e is CodeThrowExceptionStatement) 1182GenerateThrowExceptionStatement((CodeThrowExceptionStatement)e); 1530private void GenerateThrowExceptionStatement(CodeThrowExceptionStatement e)
FrameworkFork\Microsoft.CodeDom\System\CodeThrowExceptionStatement.cs (2)
30/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeThrowExceptionStatement'/>. 39/// Initializes a new instance of <see cref='Microsoft.CodeDom.CodeThrowExceptionStatement'/> using the specified statement.