1 implementation of Body
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4809public IOperation Body { get; }
7 references to Body
Microsoft.Analyzers.Extra (1)
AsyncCallInsideUsingBlockAnalyzer.cs (1)
68ValidateDisposable(analysisContext, disposable, operation.Body);
Microsoft.CodeAnalysis (2)
Generated\Operations.Generated.cs (1)
493/// Represents a <see cref="Body" /> of operations that are executed while using disposable <see cref="Resources" />.
Operations\ControlFlowGraphBuilder.cs (1)
3951HandleUsingOperationParts(operation.Resources, operation.Body, disposeInfo.DisposeMethod, disposeInfo.DisposeArguments, operation.Locals, operation.IsAsynchronous);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Analyzers\CSharp\Analyzers\UseSimpleUsingStatement\UseSimpleUsingStatementDiagnosticAnalyzer.cs (1)
158if (innerUsingOperation.Body is IBlockOperation innerUsingBlock)
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Analyzers\CSharp\Analyzers\UseSimpleUsingStatement\UseSimpleUsingStatementDiagnosticAnalyzer.cs (1)
158if (innerUsingOperation.Body is IBlockOperation innerUsingBlock)
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
758Visit(operation.Body, "Body");
Compilation\TestOperationVisitor.cs (1)
464AssertEx.Equal(new[] { operation.Resources, operation.Body }, operation.ChildOperations);