Events Table (System_Runtime Schema)
[This content is no longer valid. For the latest information on "M", "Quadrant", SQL Server Modeling Services, and the Repository, see the Model Citizen blog.]
Contains instances of common language runtime (CLR) events.
Fields
The following table lists the fields in the Events table.
Column | Type | Required | Description |
---|---|---|---|
Folder |
yes |
The Modeling Services Folder that is associated with the event. References the [Repository.Item].[FoldersTable] view. |
|
Id |
bigint |
yes |
The identifier of the event. |
DeclaringType |
bigint |
yes |
The type definition that declares this event. References the [System_Runtime].[TypeDefinitions] view. |
Name |
nvarchar(max) |
yes |
The name of the event. |
AddMethod |
bigint |
yes |
The "add" method for this event. References the [System_Runtime].[MethodDefinitions] view. |
RemoveMethod |
bigint |
yes |
The "remove" method for this event. References the [System_Runtime].[MethodDefinitions] view. |
FireMethod |
bigint |
The "fire" method for this event. References the [System_Runtime].[MethodDefinitions] view. |
|
IsAbstract |
bit |
yes |
A bit flag that indicates that the event is abstract, meaning this event must be implement in a derived type. |
IsStatic |
bit |
yes |
A bit flag that indicates that the event is static. |
IsVirtual |
bit |
yes |
A bit flag that indicates that the event is virtual. |
IsFinal |
bit |
yes |
A bit flag that indicates that the event is final, meaning that this event cannot be overridden in derived types. |
IsToolSpecialName |
bit |
yes |
A bit flag that specifies that the event name is special and has a reserved use by tools other than the common language runtime (CLR). |
IsRuntimeSpecialName |
bit |
yes |
A bit flag that specifies that the event name is special and has a reserved use by the common language runtime (CLR). |
Documentation |
nvarchar(max) |
The XML Document fragment for the event. Note that this is not yet populated by the LoadAssembly.exe tool. |
|
Attributes |
nvarchar(max) |
The custom attributes for the event. Note that this is not yet populated by the LoadAssembly.exe tool. |