Table of Contents

Method Deconstruct

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

Deconstruct(out T, out IResultSummary, out string[])

Deconstructs the result into its constituent parts.

public void Deconstruct(out T result, out IResultSummary summary, out string[] keys)

Parameters

result T

The result returned from the query.

summary IResultSummary

The summary of the result.

keys string[]

The keys present in the result.

Deconstruct(out T, out IResultSummary)

Deconstructs the result into its constituent parts.

public void Deconstruct(out T result, out IResultSummary summary)

Parameters

result T

The result returned from the query.

summary IResultSummary

The summary of the result.