10 references to SymbolApiConventionNameMatchBehavior
Microsoft.AspNetCore.Mvc.Api.Analyzers (10)
SymbolApiConventionMatcher.cs (10)
18var methodNameMatchBehavior = GetNameMatchBehavior(symbolCache, conventionMethod); 45var nameMatchBehavior = GetNameMatchBehavior(symbolCache, conventionParameter); 61internal static SymbolApiConventionNameMatchBehavior GetNameMatchBehavior(ApiControllerSymbolCache symbolCache, ISymbol symbol) 68return SymbolApiConventionNameMatchBehavior.Exact; 80return (SymbolApiConventionNameMatchBehavior)intValue; 105internal static bool IsNameMatch(string name, string conventionName, SymbolApiConventionNameMatchBehavior nameMatchBehavior) 109case SymbolApiConventionNameMatchBehavior.Any: 112case SymbolApiConventionNameMatchBehavior.Exact: 115case SymbolApiConventionNameMatchBehavior.Prefix: 118case SymbolApiConventionNameMatchBehavior.Suffix: