7 references to GetApplicableNamingRuleAsync
Microsoft.CodeAnalysis.Features (7)
ConvertTupleToStruct\AbstractConvertTupleToStructCodeRefactoringProvider.cs (1)
287
var parameterNamingRule = await document.
GetApplicableNamingRuleAsync
(SymbolKind.Parameter, Accessibility.NotApplicable, fallbackOptions, cancellationToken).ConfigureAwait(false);
GenerateMember\GenerateConstructor\AbstractGenerateConstructorService.State.cs (3)
79
var fieldNamingRule = await document.Document.
GetApplicableNamingRuleAsync
(SymbolKind.Field, Accessibility.Private, fallbackOptions, cancellationToken).ConfigureAwait(false);
80
var propertyNamingRule = await document.Document.
GetApplicableNamingRuleAsync
(SymbolKind.Property, Accessibility.Public, fallbackOptions, cancellationToken).ConfigureAwait(false);
81
var parameterNamingRule = await document.Document.
GetApplicableNamingRuleAsync
(SymbolKind.Parameter, Accessibility.NotApplicable, fallbackOptions, cancellationToken).ConfigureAwait(false);
GenerateMember\GenerateVariable\AbstractGenerateVariableService.cs (1)
133
var namingStyle = await document.
GetApplicableNamingRuleAsync
(kind, accessibility, fallbackOptions, cancellationToken).ConfigureAwait(false);
GenerateType\AbstractGenerateTypeService.Editor.cs (1)
621
var fieldNamingRule = await _semanticDocument.Document.
GetApplicableNamingRuleAsync
(SymbolKind.Field, Accessibility.Private, _fallbackOptions, _cancellationToken).ConfigureAwait(false);
ImplementInterface\AbstractImplementInterfaceService.DisposePatternCodeAction.cs (1)
351
var rule = await document.
GetApplicableNamingRuleAsync
(