Table of Contents

Enum NotificationCategory

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

Represents the category of server notifications surfaced by INotification.
Used in conjunction with NotificationSeverity.

public enum NotificationCategory
Extension Methods

Fields

Unknown = 0

the INotification's category is a value unknown to this driver version.

Hint = 1

The given hint cannot be satisfied.

Unrecognized = 2

The query or command mentions entities that are unknown to the system.

Unsupported = 3

The 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.

Performance = 4

The query uses costly operations and might be slow.

Deprecation = 5

The query/command use deprecated features that should be replaced.

Security = 6

The result of the query or command indicates a potential security issue.

Topology = 7

Information provided while executing database and server related commands.

Schema = 8

Information provided while managing indexes and constraints.

Generic = 9

Notification not covered by other categories.