1 implementation of Finally
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4770public IBlockOperation? Finally { get; }
8 references to Finally
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (3)
3662if (operation.Catches.IsEmpty && operation.Finally == null) 3673bool haveFinally = operation.Finally != null; 3777VisitStatement(operation.Finally);
Operations\ControlFlowRegionKind.cs (2)
55/// Region representing <see cref="ITryOperation.Finally"/> 63/// An <see cref="ITryOperation"/> that has a set of <see cref="ITryOperation.Catches"/> and a <see cref="ITryOperation.Finally"/>
Microsoft.CodeAnalysis.NetAnalyzers (3)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\ImplementIDisposableCorrectly.cs (2)
729if (tryOperation.Finally == null || !tryOperation.Finally.IsImplicit)
Microsoft.CodeQuality.Analyzers\QualityGuidelines\DoNotRaiseExceptionsInExceptionClauses.cs (1)
80Visit(operation.Finally);