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