1 implementation of Catches
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4769public ImmutableArray<ICatchClauseOperation> Catches { get; }
5 references to Catches
Microsoft.CodeAnalysis (4)
Operations\ControlFlowGraphBuilder.cs (3)
3662if (operation.Catches.IsEmpty && operation.Finally == null) 3681bool haveCatches = !operation.Catches.IsEmpty; 3696foreach (ICatchClauseOperation catchClause in operation.Catches)
Operations\ControlFlowRegionKind.cs (1)
63/// An <see cref="ITryOperation"/> that has a set of <see cref="ITryOperation.Catches"/> and a <see cref="ITryOperation.Finally"/>
Microsoft.CodeAnalysis.NetAnalyzers (1)
Microsoft.CodeQuality.Analyzers\QualityGuidelines\DoNotRaiseExceptionsInExceptionClauses.cs (1)
74foreach (var catchClause in operation.Catches)