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
FindGetOrReadInvocationsWalker.cs
Go to the documentation of this file.
2using Microsoft.CodeAnalysis;
3using Microsoft.CodeAnalysis.CSharp;
4using Microsoft.CodeAnalysis.CSharp.Syntax;
5
6namespace Csla.Analyzers
7{
8 internal sealed class FindGetOrReadInvocationsWalker
9 : CSharpSyntaxWalker
10 {
11 internal FindGetOrReadInvocationsWalker(SyntaxNode node, SemanticModel model)
12 {
13 Model = model;
14 Visit(node);
15 }
16
17 public override void VisitInvocationExpression(InvocationExpressionSyntax node)
18 {
19 var symbol = Model.GetSymbolInfo(node);
20 var methodSymbol = symbol.Symbol as IMethodSymbol;
21
22 if (methodSymbol.IsPropertyInfoManagementMethod())
23 {
24 Invocation = node;
25 }
26 }
27
28 internal InvocationExpressionSyntax Invocation { get; private set; }
29 private SemanticModel Model { get; }
30 }
31}