7 references to EventDeclaration
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (3)
5657
=> SyntaxFactory.
EventDeclaration
(attributeLists, modifiers, SyntaxFactory.Token(SyntaxKind.EventKeyword), type, explicitInterfaceSpecifier, identifier, accessorList, default);
5661
=> SyntaxFactory.
EventDeclaration
(default, default(SyntaxTokenList), SyntaxFactory.Token(SyntaxKind.EventKeyword), type, default, identifier, default, default);
5665
=> SyntaxFactory.
EventDeclaration
(default, default(SyntaxTokenList), SyntaxFactory.Token(SyntaxKind.EventKeyword), type, default, SyntaxFactory.Identifier(identifier), default, default);
Syntax.xml.Syntax.Generated.cs (1)
13280
var newNode = SyntaxFactory.
EventDeclaration
(attributeLists, modifiers, eventKeyword, type, explicitInterfaceSpecifier, identifier, accessorList, semicolonToken);
Syntax\SyntaxFactory.cs (2)
2720
return
EventDeclaration
(attributeLists, modifiers, eventKeyword, type, explicitInterfaceSpecifier, identifier, accessorList, semicolonToken: default);
2726
return
EventDeclaration
(attributeLists, modifiers, eventKeyword, type, explicitInterfaceSpecifier, identifier, accessorList: null, semicolonToken);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.cs (1)
10940
=> SyntaxFactory.
EventDeclaration
(new SyntaxList<AttributeListSyntax>(), new SyntaxTokenList(), SyntaxFactory.Token(SyntaxKind.EventKeyword), GenerateIdentifierName(), default(ExplicitInterfaceSpecifierSyntax), SyntaxFactory.Identifier("Identifier"), default(AccessorListSyntax), default(SyntaxToken));