CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
ContainsInvocationExpressionWalker.cs
Go to the documentation of this file.
1using Microsoft.CodeAnalysis;
2using Microsoft.CodeAnalysis.CSharp;
3using Microsoft.CodeAnalysis.CSharp.Syntax;
4
5namespace Csla.Analyzers
6{
7 internal sealed class ContainsInvocationExpressionWalker
8 : CSharpSyntaxWalker
9 {
10 internal ContainsInvocationExpressionWalker(SyntaxNode node) => Visit(node);
11
12 public override void VisitInvocationExpression(InvocationExpressionSyntax node) => HasIssue = true;
13
14 internal bool HasIssue { get; private set; }
15 }
16}