1 implementation of Finally
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4770
public IBlockOperation?
Finally
{ get; }
8 references to Finally
Microsoft.CodeAnalysis (5)
Operations\ControlFlowGraphBuilder.cs (3)
3662
if (operation.Catches.IsEmpty && operation.
Finally
== null)
3673
bool haveFinally = operation.
Finally
!= null;
3777
VisitStatement(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)
729
if (tryOperation.
Finally
== null || !tryOperation.
Finally
.IsImplicit)
Microsoft.CodeQuality.Analyzers\QualityGuidelines\DoNotRaiseExceptionsInExceptionClauses.cs (1)
80
Visit(operation.
Finally
);