2 references to BeforeKeyword
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\EventsShouldNotHaveBeforeOrAfterPrefix.cs (2)
38
private static readonly ImmutableHashSet<string> s_invalidPrefixes = ImmutableHashSet.Create(AfterKeyword,
BeforeKeyword
);
49
if (!eventName.StartsWith(
BeforeKeyword
, StringComparison.Ordinal) &&