Table of Contents

Enum Classification

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll
public enum Classification
Extension Methods

Fields

Hint = 0

Receive notifications when a hint in query cannot be satisfied.

Returned as Hint in Classification and as Hint in Category.

Unrecognized = 1

Receive 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 = 2

Receive 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 = 3

Receive notifications when a query uses costly operations and might be slow.

Returned as Performance in Classification and as Performance in Category.

Deprecation = 4

Receive notifications when a query/command use deprecated features that should be replaced.

Returned as Deprecation in Classification and as Deprecation in Category.

Security = 5

Receive 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 = 6

Receive notifications related to managing databases and servers.

Returned as Topology in Classification and as Topology in Category.

Schema = 7

Receive notifications related to managing indexes and constraints.

Returned as Schema in Classification and as Schema in Category.

Generic = 8

Receive notifications not covered by other categories.

Returned as Generic in Classification and as Generic in Category.