Enum Classification
Severity to filter which IGqlStatusObject and INotifications will be sent in
GqlStatusObjects and Notifications .
Can be used in
WithNotifications(Severity?, Category[], Classification[]) and
WithNotifications(Severity?, Category[], Classification[]).
public enum Classification
- Extension Methods
Fields
Hint = 0Receive notifications when a hint in query cannot be satisfied.
Returned as Hint in Classification and as Hint in Category.
Unrecognized = 1Receive notifications when a query or command mentions entities that are unknown to the system.
Returned as Unrecognized in Classification and as Unrecognized in Category.
Unsupported = 2Receive notifications when a query/command is trying to use features that are not supported by the current system or using features that are experimental and should not be used in production.
Returned as Unsupported in Classification and as Unsupported in Category.
Performance = 3Receive notifications when a query uses costly operations and might be slow.
Returned as Performance in Classification and as Performance in Category.
Deprecation = 4Receive notifications when a query/command use deprecated features that should be replaced.
Returned as Deprecation in Classification and as Deprecation in Category.
Security = 5Receive notifications when the result of the query or command indicates a potential security issue.
Returned as Security in Classification and as Security in Category.
Topology = 6Receive notifications related to managing databases and servers.
Returned as Topology in Classification and as Topology in Category.
Schema = 7Receive notifications related to managing indexes and constraints.
Returned as Schema in Classification and as Schema in Category.
Generic = 8Receive notifications not covered by other categories.
Returned as Generic in Classification and as Generic in Category.