├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .snyk ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── Neo4j.Driver ├── .editorconfig ├── IdentityPubKey.snk ├── Neo4j-icon-color.png ├── Neo4j.Driver.Reactive │ ├── DriverExtensions.cs │ ├── IRxResult.cs │ ├── IRxRunnable.cs │ ├── IRxSession.cs │ ├── IRxTransaction.cs │ ├── Internal │ │ ├── InternalRxSession.cs │ │ ├── InternalRxTransaction.cs │ │ ├── RxExtensions.cs │ │ ├── RxResult.cs │ │ └── RxRetryLogic.cs │ ├── Neo4j.Driver.Reactive.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Neo4j.Driver.Simple │ ├── DriverExtensions.cs │ ├── IQueryRunner.cs │ ├── IResult.cs │ ├── ISession.cs │ ├── ITransaction.cs │ ├── Internal │ │ ├── BlockingExecutor.cs │ │ ├── InternalResult.cs │ │ ├── InternalSession.cs │ │ ├── InternalTransaction.cs │ │ ├── RecordSet.cs │ │ └── RetryLogic.cs │ ├── Neo4j.Driver.Simple.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Neo4j.Driver.Tests.BenchkitBackend │ ├── Abstractions │ │ ├── IRecordConsumer.cs │ │ ├── IWorkloadExecutor.cs │ │ ├── IWorkloadExecutorSelector.cs │ │ ├── IWorkloadSessionBuilder.cs │ │ └── IWorkloadStore.cs │ ├── BenchkitBackendModule.cs │ ├── Configuration │ │ └── BenchkitBackendConfiguration.cs │ ├── Controllers │ │ ├── ReadyController.cs │ │ └── WorkloadController.cs │ ├── Dockerfile │ ├── Implementations │ │ ├── ExecuteQueryWorkloadExecutor.cs │ │ ├── ExecuteReadWriteWorkloadExecutor.cs │ │ ├── RecordConsumer.cs │ │ ├── SessionRunWorkloadExecutor.cs │ │ ├── WorkloadExecutorSelector.cs │ │ ├── WorkloadSessionBuilder.cs │ │ └── WorkloadStore.cs │ ├── InfrastructureExtensions │ │ ├── JsonConverters │ │ │ └── ObjectToPrimitiveConverter.cs │ │ ├── LogEnrichers │ │ │ └── ClassNameEnricher.cs │ │ └── WebExtensions │ │ │ ├── ConfigurationBuilderExtensions.cs │ │ │ └── Neo4jDriverServiceExtension.cs │ ├── LogoWriter.cs │ ├── Neo4j.Driver.Tests.BenchkitBackend.csproj │ ├── Neo4j.Driver.Tests.BenchkitBackend.csproj.DotSettings │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Types │ │ ├── Method.cs │ │ ├── Mode.cs │ │ ├── Routing.cs │ │ ├── Workload.cs │ │ └── WorkloadQuery.cs │ └── appsettings.json ├── Neo4j.Driver.Tests.Integration │ ├── App.config │ ├── Direct │ │ ├── AuthenticationIT.cs │ │ ├── BoltV4IT.cs │ │ ├── BookmarkIT.cs │ │ ├── CertificateTrustIT.cs │ │ ├── CypherParametersIT.cs │ │ ├── DirectDriverTestBase.cs │ │ ├── DriverIT.cs │ │ ├── EncryptionIT.cs │ │ ├── ErrorIT.cs │ │ ├── NestedQueriesIT.cs │ │ ├── ResultIT.cs │ │ ├── SessionIT.cs │ │ └── TransactionIT.cs │ ├── Examples.cs │ ├── ExamplesAsync.cs │ ├── ExamplesRx.cs │ ├── Extensions │ │ ├── CollectionExtensions.cs │ │ ├── DatabaseExtensions.cs │ │ └── SessionExtensions.cs │ ├── Internals │ │ ├── BoltStubServer.cs │ │ ├── BoltkitHelper.cs │ │ ├── CausalClusterIntegrationTestFixture.cs │ │ ├── CcIntegrationCollection.cs │ │ ├── CertificateUtils.cs │ │ ├── Cluster │ │ │ ├── CausalCluster.cs │ │ │ ├── ExistingCluster.cs │ │ │ ├── ExternalBoltkitClusterInstaller.cs │ │ │ ├── ICausalCluster.cs │ │ │ └── SingleInstance.cs │ │ ├── IInstaller.cs │ │ ├── IShellCommandRunner.cs │ │ ├── ISingleInstance.cs │ │ ├── IntegrationTestAttribute.cs │ │ ├── IntegrationTestFixture.cs │ │ ├── ProcessBasedCommandRunner.cs │ │ ├── SaIntegrationCollection.cs │ │ ├── ShellCommandRunnerTests.cs │ │ └── StandAlone │ │ │ ├── DefaultInstallation.cs │ │ │ ├── ExternalBoltkitInstaller.cs │ │ │ ├── LocalStandAloneInstance.cs │ │ │ ├── SettingsHelper.cs │ │ │ └── StandAlone.cs │ ├── Neo4j.Driver.Tests.Integration.csproj │ ├── Neo4j.Driver.Tests.Integration.csproj.DotSettings │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Reactive │ │ ├── AbstractRxIT.cs │ │ ├── NavigationIT.cs │ │ ├── NestedQueriesIT.cs │ │ ├── SessionIT.cs │ │ ├── SummaryIT.cs │ │ └── TransactionIT.cs │ ├── Resources │ │ ├── V3 │ │ │ ├── connection_error_on_commit.script │ │ │ ├── fail_to_auth.script │ │ │ ├── get_routing_table.script │ │ │ ├── get_routing_table_with_context.script │ │ │ ├── rollback_error.script │ │ │ ├── supports_multidb.script │ │ │ └── verify_connectivity.script │ │ ├── V4 │ │ │ ├── accessmode_reader_explicit.script │ │ │ ├── accessmode_reader_func.script │ │ │ ├── accessmode_reader_implicit.script │ │ │ ├── accessmode_router.script │ │ │ ├── accessmode_writer_explicit.script │ │ │ ├── accessmode_writer_func.script │ │ │ ├── accessmode_writer_implicit.script │ │ │ ├── acquire_endpoints_aDatabase.script │ │ │ ├── acquire_endpoints_aDatabase_no_servers.script │ │ │ ├── acquire_endpoints_aDatabase_with_bookmark.script │ │ │ ├── acquire_endpoints_db_not_found.script │ │ │ ├── acquire_endpoints_default_database.script │ │ │ ├── connection_error_on_commit.script │ │ │ ├── discard_streaming_records.script │ │ │ ├── discard_streaming_records_tx.script │ │ │ ├── fail_to_auth.script │ │ │ ├── get_routing_table.script │ │ │ ├── get_routing_table_only.script │ │ │ ├── get_routing_table_with_context.script │ │ │ ├── multiple_bookmarks.script │ │ │ ├── read.script │ │ │ ├── read_from_aDatabase.script │ │ │ ├── read_from_aDatabase_with_bookmark.script │ │ │ ├── return_1.script │ │ │ ├── rollback_error.script │ │ │ ├── streaming_records.script │ │ │ ├── streaming_records_all.script │ │ │ ├── supports_multidb.script │ │ │ ├── verify_connectivity.script │ │ │ └── write_to_aDatabase.script │ │ └── V4_1 │ │ │ └── noop.script │ ├── Routing │ │ ├── BoltV4IT.cs │ │ ├── RoutingDriverAsyncIT.cs │ │ ├── RoutingDriverIT.cs │ │ └── RoutingDriverTestBase.cs │ ├── Stress │ │ ├── Async │ │ │ ├── AsyncFailingCommandTxFunc.cs │ │ │ ├── AsyncReadCommandTxFunc.cs │ │ │ ├── AsyncWriteCommandTxFunc.cs │ │ │ ├── AsyncWriteCommandUsingReadSessionTxFunc.cs │ │ │ └── AsyncWrongCommandTxFunc.cs │ │ ├── AsyncCommand.cs │ │ ├── Blocking │ │ │ ├── BlockingFailingCommandTxFunc.cs │ │ │ ├── BlockingReadCommandTxFunc.cs │ │ │ ├── BlockingWriteCommandTxFunc.cs │ │ │ ├── BlockingWriteCommandUsingReadSessionTxFunc.cs │ │ │ └── BlockingWrongCommandTxFunc.cs │ │ ├── BlockingCommand.cs │ │ ├── CausalClusterStressTests.cs │ │ ├── IAsyncCommand.cs │ │ ├── IBlockingCommand.cs │ │ ├── IRxCommand.cs │ │ ├── Reactive │ │ │ ├── RxFailingCommandInTx.cs │ │ │ ├── RxReadCommandInTx.cs │ │ │ ├── RxWriteCommandInTx.cs │ │ │ └── RxWrongCommandInTx.cs │ │ ├── RxCommand.cs │ │ ├── SingleInstanceStressTests.cs │ │ ├── StressTest.cs │ │ └── StressTestContext.cs │ ├── Stub │ │ ├── AccessModeTests.cs │ │ ├── DirectDriverTests.cs │ │ ├── MultiDatabasesTests.cs │ │ ├── ResultStreamingTests.cs │ │ ├── RoutingDriverTests.cs │ │ └── TransactionTests.cs │ ├── Types │ │ ├── PointsIT.cs │ │ └── TemporalTypesIT.cs │ ├── packages.config │ └── xunit.runner.json ├── Neo4j.Driver.Tests.TestBackend │ ├── .editorconfig │ ├── Controller.cs │ ├── Exceptions │ │ ├── DriverExceptionWrapper.cs │ │ ├── ExceptionManager.cs │ │ └── FrontendException.cs │ ├── IO │ │ ├── Connection.cs │ │ ├── RequestReader.cs │ │ ├── ResponseWriter.cs │ │ └── StreamBuffer.cs │ ├── Neo4j.Driver.Tests.TestBackend.csproj │ ├── Program.cs │ ├── Program.runtimeconfig.json │ ├── Properties │ │ └── launchSettings.json │ ├── Protocol │ │ ├── Auth │ │ │ ├── AuthTokenManagerClose.cs │ │ │ ├── AuthTokenManagerGetAuthCompleted.cs │ │ │ ├── AuthTokenManagerHandleSecurityExceptionCompleted.cs │ │ │ ├── AuthorizationToken.cs │ │ │ ├── BasicAuthTokenProviderCompleted.cs │ │ │ ├── BearerAuthTokenProviderCompleted.cs │ │ │ ├── CheckSessionAuthSupport.cs │ │ │ ├── ClientCertificate.cs │ │ │ ├── ClientCertificateProviderClose.cs │ │ │ ├── ClientCertificateProviderCompleted.cs │ │ │ ├── NewAuthTokenManager.cs │ │ │ ├── NewBasicAuthTokenManager.cs │ │ │ ├── NewBearerAuthTokenManager.cs │ │ │ ├── NewClientCertificateProvider.cs │ │ │ ├── TemporalAuthTokenProviderCompleted.cs │ │ │ └── VerifyAuthentication.cs │ │ ├── BookmarkManager │ │ │ ├── BookmarkManagerClose.cs │ │ │ ├── BookmarkManagerConsumerRequest.cs │ │ │ ├── BookmarkManagerSupplierRequest.cs │ │ │ ├── BookmarksConsumerCompleted.cs │ │ │ ├── BookmarksSupplierCompleted.cs │ │ │ └── NewBookmarkManager.cs │ │ ├── Driver │ │ │ ├── DriverClose.cs │ │ │ ├── GetConnectionPoolMetrics.cs │ │ │ ├── NewDriver.cs │ │ │ ├── NewDriverConverter.cs │ │ │ └── SimpleNeo4JLogger.cs │ │ ├── DriverQuery │ │ │ └── ExecuteQuery.cs │ │ ├── Handshake │ │ │ ├── GetFeatures.cs │ │ │ └── StartTest.cs │ │ ├── JsonConverters │ │ │ ├── BaseSessionTypeJsonConverter.cs │ │ │ ├── QueryParameterConverter.cs │ │ │ └── SessionTypeJsonConverter.cs │ │ ├── Protocol.cs │ │ ├── ProtocolException.cs │ │ ├── ProtocolObjectFactory.cs │ │ ├── ProtocolObjectManager.cs │ │ ├── ProtocolResponse.cs │ │ ├── Result │ │ │ ├── CypherTypeField.cs │ │ │ ├── Result.cs │ │ │ ├── ResultConsume.cs │ │ │ ├── ResultList.cs │ │ │ ├── ResultNext.cs │ │ │ ├── ResultPeek.cs │ │ │ ├── ResultSingle.cs │ │ │ └── SummaryJsonSerializer.cs │ │ ├── Session │ │ │ ├── BaseSessionType.cs │ │ │ ├── JsonCypherParameterParser.cs │ │ │ ├── NewSession.cs │ │ │ ├── RetryableNegative.cs │ │ │ ├── RetryablePositive.cs │ │ │ ├── SessionBeginTransaction.cs │ │ │ ├── SessionClose.cs │ │ │ ├── SessionLastBookmarks.cs │ │ │ ├── SessionReadTransaction.cs │ │ │ ├── SessionRun.cs │ │ │ └── SessionWriteTransaction.cs │ │ ├── SupportFunctions │ │ │ ├── CheckDriverIsEncrypted.cs │ │ │ ├── CheckMultiDBSupport.cs │ │ │ ├── GetRoutingTable.cs │ │ │ ├── GetServerInfo.cs │ │ │ ├── ResolverResolutionCompleted.cs │ │ │ └── VerifyConnectivity.cs │ │ ├── TestkitConstants.cs │ │ ├── Time │ │ │ └── FakeTime.cs │ │ ├── Transaction │ │ │ ├── TransactionClose.cs │ │ │ ├── TransactionCommit.cs │ │ │ ├── TransactionRollback.cs │ │ │ └── TransactionRun.cs │ │ └── UI │ │ │ └── ConsoleTextWriter.cs │ ├── Resolvers │ │ └── ListAddressResolver.cs │ ├── SupportedFeatures.cs │ ├── TestBlackList.cs │ ├── Transaction │ │ └── TransactionManager.cs │ └── Types │ │ ├── CypherToNative.cs │ │ └── NativeToCypher.cs ├── Neo4j.Driver.Tests │ ├── .editorconfig │ ├── AsyncRetryLogicTests.cs │ ├── AsyncSessionTests.cs │ ├── Auth │ │ └── Neo4jAuthTokenManagerTests.cs │ ├── AuthTokenTests.cs │ ├── BookmarkTests.cs │ ├── ConfigTests.cs │ ├── ConnectionPoolTests.cs │ ├── ConnectionValidatorTests.cs │ ├── Connector │ │ ├── BoltHandshakerTests.cs │ │ ├── CachingResolverTests.cs │ │ ├── DefaultResolverTests.cs │ │ ├── DelegatedConnectionTests.cs │ │ ├── EncryptionManagerTests.cs │ │ ├── MockedMessagingClient.cs │ │ ├── PooledConnectionTests.cs │ │ ├── SocketClientTests.cs │ │ ├── SocketConnectionTests.cs │ │ └── TcpSocketClientTests.cs │ ├── DriverTests.cs │ ├── Exceptions │ │ └── Neo4jExceptionFactoryTests.cs │ ├── ExecutableQuery │ │ └── ExecutableQueryTests.cs │ ├── Extensions │ │ └── StreamExtensionTests.cs │ ├── Filters │ │ ├── OSFilters.cs │ │ └── RuntimeFilters.cs │ ├── GqlCompliance │ │ └── GqlErrorTests.cs │ ├── HomeDbCaching │ │ └── HomeDbCacheTests.cs │ ├── Internal │ │ ├── BookmarkManager │ │ │ ├── BookmarkManagerFactoryTests.cs │ │ │ └── DefaultBookmarkManagerTests.cs │ │ ├── IO │ │ │ ├── ChunkReaderTests.cs │ │ │ ├── ChunkWriterTests.cs │ │ │ ├── MessageSerializers │ │ │ │ ├── BeginMessageSerializerTests.cs │ │ │ │ ├── CommitMessageSerializerTests.cs │ │ │ │ ├── DiscardMessageSerializerTests.cs │ │ │ │ ├── FailureMessageSerializerTests.cs │ │ │ │ ├── GoodbyeMessageSerializerTests.cs │ │ │ │ ├── HelloMessageSerializerTests.cs │ │ │ │ ├── IgnoredMessageSerializerTests.cs │ │ │ │ ├── PullAllMessageSerializerTests.cs │ │ │ │ ├── PullMessageSerializerTests.cs │ │ │ │ ├── RecordMessageSerializerTests.cs │ │ │ │ ├── ResetMessageSerializerTests.cs │ │ │ │ ├── RollbackMessageSerializerTests.cs │ │ │ │ ├── RouteMessageSerializerTests.cs │ │ │ │ ├── RouteMessageSerializerV43Tests.cs │ │ │ │ ├── RunWithMetadataMessageSerializerTests.cs │ │ │ │ └── SuccessMessageSerializerTests.cs │ │ │ ├── PackStreamSerializerTests.cs │ │ │ ├── PackStreamTestSpecs.cs │ │ │ ├── PackStreamTests.cs │ │ │ ├── Utils │ │ │ │ ├── Machines.cs │ │ │ │ └── Streams.cs │ │ │ └── ValueSerializers │ │ │ │ ├── ElementNodeSerializerTests.cs │ │ │ │ ├── ElementPathSerializerTests.cs │ │ │ │ ├── ElementRelationshipSerializerTests.cs │ │ │ │ ├── ElementUnboundRelationshipSerializerTests.cs │ │ │ │ ├── NodeSerializerTests.cs │ │ │ │ ├── PathSerializerTests.cs │ │ │ │ ├── PointSerializerTests.cs │ │ │ │ ├── RelationshipSerializerTests.cs │ │ │ │ ├── Temporal │ │ │ │ ├── DurationSerializerTests.cs │ │ │ │ ├── LocalDateSerializerTests.cs │ │ │ │ ├── LocalDateTimeSerializerTests.cs │ │ │ │ ├── LocalTimeSerializerTests.cs │ │ │ │ ├── OffsetTimeSerializerTests.cs │ │ │ │ ├── SystemDateTimeOffsetHandlerTests.cs │ │ │ │ ├── SystemDateTimeSerializerTests.cs │ │ │ │ ├── SystemTimeSpanSerializerTests.cs │ │ │ │ ├── UtcZonedDateTimeSerializerTests.cs │ │ │ │ └── ZonedDateTimeSerializerTests.cs │ │ │ │ ├── UnboundRelationshipSerializerTests.cs │ │ │ │ ├── UnsupportedTypeSerializerTests.cs │ │ │ │ └── VectorSerializerTests.cs │ │ ├── MessageHandling │ │ │ ├── InMemoryPipelinedMessageReaderTests.cs │ │ │ ├── MessageFomatTests.cs │ │ │ ├── Messages │ │ │ │ ├── BeginMessageTests.cs │ │ │ │ ├── BoltAgentBuilderTests.cs │ │ │ │ ├── CommitMessageTests.cs │ │ │ │ ├── DiscardMessageTests.cs │ │ │ │ ├── FailureMessageTests.cs │ │ │ │ ├── GoodbyeMessageTests.cs │ │ │ │ ├── HelloMessageTests.cs │ │ │ │ ├── IgnoredMessageTests.cs │ │ │ │ ├── PullAllMessageTests.cs │ │ │ │ ├── PullMessageTests.cs │ │ │ │ ├── RecordMessageTests.cs │ │ │ │ ├── ResetMessageTests.cs │ │ │ │ ├── RollbackMessageTests.cs │ │ │ │ ├── RouteMessageTests.cs │ │ │ │ ├── RouteMessageV43Tests.cs │ │ │ │ ├── RunWithMetaDataMessageTests.cs │ │ │ │ └── SuccessMessageTests.cs │ │ │ ├── Metadata │ │ │ │ ├── BookmarkCollectorTests.cs │ │ │ │ ├── ConfigurationHintsCollectorTests.cs │ │ │ │ ├── ConnectionIdCollectorTests.cs │ │ │ │ ├── CountersCollectorTests.cs │ │ │ │ ├── DatabaseInfoCollectorTests.cs │ │ │ │ ├── DurationCollectorsTests.cs │ │ │ │ ├── FieldsCollectorTests.cs │ │ │ │ ├── GqlStatusObjectsAndNotificationsCollectorTests.cs │ │ │ │ ├── GqlStatusObjectsAndNotificationsTests.cs │ │ │ │ ├── HasMoreCollectorTests.cs │ │ │ │ ├── PlanCollectorTests.cs │ │ │ │ ├── ProfiledPlanCollectorTests.cs │ │ │ │ ├── QueryIdCollectorTests.cs │ │ │ │ ├── RoutingTableCollectorTest.cs │ │ │ │ ├── ServerVersionCollectorTests.cs │ │ │ │ └── TypeCollectorTests.cs │ │ │ ├── MetadataCollectingResponseHandlerTests.cs │ │ │ ├── NetworkedPipelinedMessageReaderTests.cs │ │ │ └── ResponsePipelineTests.cs │ │ ├── Protocol │ │ │ ├── BoltProtocolFactoryTests.cs │ │ │ ├── BoltProtocolHandlerFactoryTests.cs │ │ │ ├── BoltProtocolTests.cs │ │ │ ├── BoltProtocolV3Tests.cs │ │ │ └── BoltProtocolVersionTests.cs │ │ └── Util │ │ │ ├── BytesToTypedArrayTests.cs │ │ │ ├── ConcurrentOrderedSetTests.cs │ │ │ ├── ConfigBuildersTests.cs │ │ │ ├── ObjectToDictionaryConverterTests.cs │ │ │ ├── ParameterValueTransformerTests.cs │ │ │ ├── PipeReaderMemoryPoolTests.cs │ │ │ ├── TransactionTimeoutTests.cs │ │ │ └── VarLongTests.cs │ ├── Mapping │ │ ├── AsyncEnumerableExtensionsTests.cs │ │ ├── BlueprintMappingTests.cs │ │ ├── BuiltMapperTests.cs │ │ ├── ConventionTranslation │ │ │ ├── FormatterTests.cs │ │ │ ├── ParserTests.cs │ │ │ ├── TranslationEndToEndTests.cs │ │ │ └── TranslatorTests.cs │ │ ├── DefaultMapperTests.cs │ │ ├── DelegateExecutableQueryMappingExtensionsTests.cs │ │ ├── DelegateMapperTests.cs │ │ ├── DictAsRecordTests.cs │ │ ├── LabelCaptureTests.cs │ │ ├── LambdaMappingRecordExtensionsTests.cs │ │ ├── MappableValueProviderTests.cs │ │ ├── MappedListCreatorTests.cs │ │ ├── MappingBuilderTests.cs │ │ ├── MappingConcurrencyTests.cs │ │ ├── MappingProviderTests.cs │ │ ├── MappingSourceDelegateBuilderTests.cs │ │ ├── MappingTestWithGlobalState.cs │ │ ├── OptionalMappingTests.cs │ │ ├── RecordMappingTests.cs │ │ ├── RecordPathFinderTests.cs │ │ ├── TypeConversion │ │ │ ├── TypeConversionManagerTests.cs │ │ │ └── TypeConversionTests.cs │ │ └── VectorMappingTests.cs │ ├── Neo4j.Driver.Tests.csproj │ ├── Neo4j.Driver.Tests.csproj.DotSettings │ ├── NodeTests.cs │ ├── PathTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Reactive │ │ ├── AbstractRxTest.cs │ │ ├── DriverExtensionTests.cs │ │ ├── Internal │ │ │ ├── InternalRxResultTests.cs │ │ │ ├── InternalRxSessionTests.cs │ │ │ ├── InternalRxTransactionTests.cs │ │ │ └── RxRetryLogicTests.cs │ │ └── Utils │ │ │ ├── Extensions.cs │ │ │ └── Utils.cs │ ├── RelationshipTests.cs │ ├── Result │ │ ├── RecordSetTests.cs │ │ ├── RecordTests.cs │ │ ├── ResultCursorBuilderTests.cs │ │ ├── ResultCursorTests.cs │ │ ├── ResultTests.cs │ │ └── SummaryBuilderTests.cs │ ├── ResultCursorExtensionsTests.cs │ ├── Routing │ │ ├── ClusterConnectionPoolTests.cs │ │ ├── ClusterConnectionTests.cs │ │ ├── ClusterDiscoveryTests.cs │ │ ├── LeastConnectedLoadBalancingStrategyTests.cs │ │ ├── LoadBalancerTests.cs │ │ ├── RoundRobinArrayIndexTests.cs │ │ ├── RoutingTableManagerTests.cs │ │ ├── RoutingTableTests.cs │ │ └── ServerVersionTests.cs │ ├── SessionConfigBuilderTests.cs │ ├── SessionConfigTests.cs │ ├── Simple │ │ └── Internal │ │ │ ├── InternalSessionTests.cs │ │ │ └── InternalTransactionTests.cs │ ├── Synchronous │ │ └── Internal │ │ │ └── SyncRetryLogicTests.cs │ ├── Temporal │ │ └── TimeZoneMappingTests.cs │ ├── TestDriverContext.cs │ ├── TestUtil │ │ ├── Assertions.cs │ │ ├── CollectionExtensionsTests.cs │ │ ├── LoggingHelper.cs │ │ ├── MockExtensions.cs │ │ ├── MockExtensionsTests.cs │ │ ├── Neo4jUriTests.cs │ │ ├── SocketClientTestHarness.cs │ │ ├── TestDriverLogger.cs │ │ └── TestRecord.cs │ ├── TransactionConfigTests.cs │ ├── TransactionTests.cs │ ├── Types │ │ ├── DurationTests.cs │ │ ├── LocalDateTests.cs │ │ ├── LocalDateTimeTests.cs │ │ ├── LocalTimeTests.cs │ │ ├── NotificationTests.cs │ │ ├── OffsetTimeTests.cs │ │ ├── PointTests.cs │ │ ├── UnsupportedTypeTests.cs │ │ ├── VectorTests.cs │ │ ├── ZonedDateTimeWithOffsetTests.cs │ │ └── ZonedDateTimeWithZoneIdTests.cs │ ├── ValueExtensionsTests.cs │ └── app.config ├── Neo4j.Driver.sln ├── Neo4j.Driver.sln.DotSettings ├── Neo4j.Driver │ ├── Internal │ │ ├── AcquireStatus.cs │ │ ├── AsyncQueryRunner.cs │ │ ├── AsyncRetryLogic.cs │ │ ├── AsyncSession.cs │ │ ├── AsyncSessionResourceManager.cs │ │ ├── AsyncTransaction.cs │ │ ├── Auth │ │ │ ├── AuthToken.cs │ │ │ ├── AuthTokenExtensions.cs │ │ │ ├── BasicAuthToken.cs │ │ │ ├── BearerAuthToken.cs │ │ │ ├── CustomAuthToken.cs │ │ │ ├── DefaultTlsNegotiator.cs │ │ │ ├── DelegateTlsNegotiator.cs │ │ │ ├── KerberosAuthToken.cs │ │ │ ├── Neo4jAuthTokenManager.cs │ │ │ ├── RotatingClientCertificateProvider.cs │ │ │ ├── StaticAuthTokenManager.cs │ │ │ └── StaticClientCertificateProvider.cs │ │ ├── BookmarkManagerFactory.cs │ │ ├── ConnectionPool.cs │ │ ├── ConnectionPoolStatus.cs │ │ ├── ConnectionValidator.cs │ │ ├── Connector │ │ │ ├── BoltHandshaker.cs │ │ │ ├── ByteBuffers.cs │ │ │ ├── DelegatedConnection.cs │ │ │ ├── IConnection.cs │ │ │ ├── IHostResolver.cs │ │ │ ├── IMessageWriter.cs │ │ │ ├── ISocketClient.cs │ │ │ ├── ITcpSocketClient.cs │ │ │ ├── PooledConnection.cs │ │ │ ├── Resolvers │ │ │ │ ├── CachingHostResolver.cs │ │ │ │ ├── DefaultHostResolver.cs │ │ │ │ ├── SystemHostResolver.cs │ │ │ │ └── SystemNetCoreHostResolver.cs │ │ │ ├── SocketClient.cs │ │ │ ├── SocketClientIoFactory.cs │ │ │ ├── SocketConnection.cs │ │ │ ├── TcpSocketClient.cs │ │ │ └── Trust │ │ │ │ ├── CertificateTrustManager.cs │ │ │ │ ├── ChainTrustManager.cs │ │ │ │ ├── InsecureTrustManager.cs │ │ │ │ └── PeerTrustManager.cs │ │ ├── DefaultBookmarkManager.cs │ │ ├── Driver.cs │ │ ├── DriverContext.cs │ │ ├── EncryptionManager.cs │ │ ├── ExceptionHandling │ │ │ ├── ErrorCodeAttribute.cs │ │ │ └── Neo4jExceptionFactory.cs │ │ ├── ExecuteQuery │ │ │ ├── DriverRowSource.cs │ │ │ ├── ExecutableQuery.cs │ │ │ ├── IQueryRowSource.cs │ │ │ ├── ReduceToList.cs │ │ │ ├── ReducedExecutableQuery.cs │ │ │ └── StreamProcessorExecutableQuery.cs │ │ ├── Extensions │ │ │ ├── ByteExtensions.cs │ │ │ ├── CollectionExtensions.cs │ │ │ ├── ConnectionExtensions.cs │ │ │ ├── ErrorExtensions.cs │ │ │ ├── MappingExtensions.cs │ │ │ ├── StreamExtensions.cs │ │ │ ├── TaskExtensions.cs │ │ │ ├── TypeExtensions.cs │ │ │ └── UtilityExtensions.cs │ │ ├── GqlCompliance │ │ │ └── GqlErrors.cs │ │ ├── Helpers │ │ │ ├── CertHelper.cs │ │ │ ├── RuntimeHelper.cs │ │ │ ├── SimpleWildcardHelper.cs │ │ │ ├── TemporalHelpers.cs │ │ │ ├── Throw.cs │ │ │ └── UniqueIdGenerator.cs │ │ ├── HomeDbCaching │ │ │ ├── HomeDbCache.cs │ │ │ ├── HomeDbCacheKey.cs │ │ │ ├── HomeDbCacheKeyProvider.cs │ │ │ └── IHomeDbCache.cs │ │ ├── IConnectionPool.cs │ │ ├── IConnectionProvider.cs │ │ ├── IConnectionReleaseManager.cs │ │ ├── IInternalAsyncSession.cs │ │ ├── IInternalAsyncTransaction.cs │ │ ├── IInternalDriver.cs │ │ ├── IInternalResultCursor.cs │ │ ├── IO │ │ │ ├── ChunkReader.cs │ │ │ ├── ChunkWriter.cs │ │ │ ├── Constants.cs │ │ │ ├── IChunkReader.cs │ │ │ ├── IMessageReader.cs │ │ │ ├── IPackStreamSerializer.cs │ │ │ ├── MessageReader.cs │ │ │ ├── MessageSerializers │ │ │ │ ├── BeginMessageSerializer.cs │ │ │ │ ├── CommitMessageSerializer.cs │ │ │ │ ├── DiscardMessageSerializer.cs │ │ │ │ ├── FailureMessageSerializer.cs │ │ │ │ ├── GoodbyeMessageSerializer.cs │ │ │ │ ├── HelloMessageSerializer.cs │ │ │ │ ├── IgnoredMessageSerializer.cs │ │ │ │ ├── LogoffMessageSerializer.cs │ │ │ │ ├── LogonMessageSerializer.cs │ │ │ │ ├── PullAllMessageSerializer.cs │ │ │ │ ├── PullMessageSerializer.cs │ │ │ │ ├── RecordMessageSerializer.cs │ │ │ │ ├── ResetMessageSerializer.cs │ │ │ │ ├── RollbackMessageSerializer.cs │ │ │ │ ├── RouteMessageSerializer.cs │ │ │ │ ├── RouteMessageSerializerV43.cs │ │ │ │ ├── RunWithMetadataMessageSerializer.cs │ │ │ │ ├── SuccessMessageSerializer.cs │ │ │ │ └── TelemetryMessageSerializer.cs │ │ │ ├── MessageWriter.cs │ │ │ ├── PackStream.cs │ │ │ ├── PackStreamBitConverter.cs │ │ │ ├── PackStreamFactory.cs │ │ │ ├── PackStreamReader.cs │ │ │ ├── PackStreamType.cs │ │ │ ├── PackStreamWriter.cs │ │ │ ├── PipelinedMessageReader.cs │ │ │ ├── ReadOnlySerializer.cs │ │ │ ├── SpanPackStreamReader.cs │ │ │ ├── ValueSerializers │ │ │ │ ├── ElementNodeSerializer.cs │ │ │ │ ├── ElementRelationshipSerializer.cs │ │ │ │ ├── ElementUnboundRelationshipSerializer.cs │ │ │ │ ├── NodeSerializer.cs │ │ │ │ ├── PathSerializer.cs │ │ │ │ ├── PointSerializer.cs │ │ │ │ ├── RelationshipSerializer.cs │ │ │ │ ├── Temporal │ │ │ │ │ ├── DurationSerializer.cs │ │ │ │ │ ├── LocalDateSerializer.cs │ │ │ │ │ ├── LocalDateTimeSerializer.cs │ │ │ │ │ ├── LocalTimeSerializer.cs │ │ │ │ │ ├── OffsetTimeSerializer.cs │ │ │ │ │ ├── SystemDateTimeOffsetSerializer.cs │ │ │ │ │ ├── SystemDateTimeSerializer.cs │ │ │ │ │ ├── SystemTimeSpanSerializer.cs │ │ │ │ │ ├── UtcZonedDateTimeSerializer.cs │ │ │ │ │ └── ZonedDateTimeSerializer.cs │ │ │ │ ├── UnboundRelationshipSerializer.cs │ │ │ │ ├── UnsupportedTypeSerializer.cs │ │ │ │ └── VectorSerializer.cs │ │ │ └── WriteOnlySerializer.cs │ │ ├── IPooledConnection.cs │ │ ├── InitialServerAddressProvider.cs │ │ ├── InternalBookmarks.cs │ │ ├── Logging │ │ │ ├── DriverLoggerUtil.cs │ │ │ ├── NullNeo4JLogger.cs │ │ │ ├── PrefixNeo4JLogger.cs │ │ │ └── ReformattedNeo4JLogger.cs │ │ ├── Mapping │ │ │ ├── BuiltMapper.cs │ │ │ ├── ConventionTranslation │ │ │ │ └── NoOpConventionTranslator.cs │ │ │ ├── DefaultMapper.cs │ │ │ ├── DelegateMapper.cs │ │ │ ├── DictAsRecord.cs │ │ │ ├── EntityMappingInfo.cs │ │ │ ├── MappableValueProvider.cs │ │ │ ├── MappedListCreator.cs │ │ │ ├── MappingBuilder.cs │ │ │ ├── MappingSourceDelegateBuilder.cs │ │ │ ├── ParameterMapper.cs │ │ │ ├── RecordPathFinder.cs │ │ │ └── TypeConversion │ │ │ │ ├── DefaultConverters.cs │ │ │ │ ├── IMappingTypeConversionManager.cs │ │ │ │ └── MappingTypeConversionManager.cs │ │ ├── MessageHandling │ │ │ ├── CommitResponseHandler.cs │ │ │ ├── HelloResponseHandler.cs │ │ │ ├── IBookmarksTracker.cs │ │ │ ├── IMetadataCollector.cs │ │ │ ├── IResponseHandler.cs │ │ │ ├── IResponsePipeline.cs │ │ │ ├── IResponsePipelineError.cs │ │ │ ├── Metadata │ │ │ │ ├── BoltPatchCollector.cs │ │ │ │ ├── BookmarkCollector.cs │ │ │ │ ├── ConfigurationHintsCollector.cs │ │ │ │ ├── ConnectionIdCollector.cs │ │ │ │ ├── CountersCollector.cs │ │ │ │ ├── DatabaseInfoCollector.cs │ │ │ │ ├── DurationCollectors.cs │ │ │ │ ├── FieldsCollector.cs │ │ │ │ ├── GqlStatusObjectsAndNotifications.cs │ │ │ │ ├── GqlStatusObjectsAndNotificationsCollector.cs │ │ │ │ ├── HasMoreCollector.cs │ │ │ │ ├── PlanCollector.cs │ │ │ │ ├── ProfiledPlanCollector.cs │ │ │ │ ├── QueryIdCollector.cs │ │ │ │ ├── RoutingTableCollector.cs │ │ │ │ ├── ServerVersionCollector.cs │ │ │ │ └── TypeCollector.cs │ │ │ ├── MetadataCollectingResponseHandler.cs │ │ │ ├── NoOpResponseHandler.cs │ │ │ ├── ResponsePipeline.cs │ │ │ ├── ResponsePipelineError.cs │ │ │ ├── RouteResponseHandler.cs │ │ │ ├── TelemetryResponseHandler.cs │ │ │ ├── V3 │ │ │ │ ├── PullAllResponseHandler.cs │ │ │ │ └── RunResponseHandlerV3.cs │ │ │ └── V4 │ │ │ │ ├── BeginResponseHandler.cs │ │ │ │ ├── PullResponseHandler.cs │ │ │ │ └── RunResponseHandler.cs │ │ ├── Messaging │ │ │ ├── BeginMessage.cs │ │ │ ├── CommitMessage.cs │ │ │ ├── DiscardMessage.cs │ │ │ ├── FailureMessage.cs │ │ │ ├── GoodbyeMessage.cs │ │ │ ├── HelloMessage.cs │ │ │ ├── IMessage.cs │ │ │ ├── IgnoredMessage.cs │ │ │ ├── LogoffMessage.cs │ │ │ ├── LogonMessage.cs │ │ │ ├── PullAllMessage.cs │ │ │ ├── PullMessage.cs │ │ │ ├── RecordMessage.cs │ │ │ ├── ResetMessage.cs │ │ │ ├── ResultHandleMessage.cs │ │ │ ├── RollbackMessage.cs │ │ │ ├── RouteMessage.cs │ │ │ ├── RouteMessageV43.cs │ │ │ ├── RunWithMetadataMessage.cs │ │ │ ├── SuccessMessage.cs │ │ │ ├── TelemetryMessage.cs │ │ │ ├── TransactionStartingMessage.cs │ │ │ └── Utils │ │ │ │ ├── BoltAgentBuilder.cs │ │ │ │ └── NotificationsMetadataWriter.cs │ │ ├── Metrics │ │ │ ├── ConnectionPoolMetrics.cs │ │ │ ├── DefaultMetrics.cs │ │ │ ├── IConnectionPoolListener.cs │ │ │ └── IMetrics.cs │ │ ├── PassthroughServerAddressResolver.cs │ │ ├── PoolStatus.cs │ │ ├── PooledConnectionFactory.cs │ │ ├── Protocol │ │ │ ├── AutoCommitParams.cs │ │ │ ├── BeginTransactionParams.cs │ │ │ ├── BoltProtocol.cs │ │ │ ├── BoltProtocolFactory.cs │ │ │ ├── BoltProtocolHandlerFactory.cs │ │ │ ├── BoltProtocolMessageFactory.cs │ │ │ ├── BoltProtocolV3.cs │ │ │ ├── BoltProtocolVersion.cs │ │ │ ├── IBoltProtocol.cs │ │ │ ├── MessageFormat.cs │ │ │ └── Utility │ │ │ │ ├── BookmarksTracker.cs │ │ │ │ ├── ConnectionResourceHandler.cs │ │ │ │ └── NullTransaction.cs │ │ ├── Result │ │ │ ├── CursorEnumerator.cs │ │ │ ├── IResultStream.cs │ │ │ ├── IResultStreamBuilder.cs │ │ │ ├── Record.cs │ │ │ ├── ResultCursor.cs │ │ │ ├── ResultCursorBuilder.cs │ │ │ └── Summary │ │ │ │ ├── Counters.cs │ │ │ │ ├── CursorMetadata.cs │ │ │ │ ├── DatabaseInfo.cs │ │ │ │ ├── GqlStatusObject.cs │ │ │ │ ├── IUpdateableInfo.cs │ │ │ │ ├── InputPosition.cs │ │ │ │ ├── Notification.cs │ │ │ │ ├── Plan.cs │ │ │ │ ├── ProfiledPlan.cs │ │ │ │ ├── ServerInfo.cs │ │ │ │ └── SummaryBuilder.cs │ │ ├── Routing │ │ │ ├── ClusterConnection.cs │ │ │ ├── ClusterConnectionPool.cs │ │ │ ├── ClusterDiscovery.cs │ │ │ ├── ConnectionPoolFactory.cs │ │ │ ├── IClusterConnectionPool.cs │ │ │ ├── IClusterConnectionPoolManager.cs │ │ │ ├── IDiscovery.cs │ │ │ ├── IErrorHandler.cs │ │ │ ├── ILoadBalancingStrategy.cs │ │ │ ├── IRoutingTable.cs │ │ │ ├── IRoutingTableManager.cs │ │ │ ├── LeastConnectedLoadBalancingStrategy.cs │ │ │ ├── LoadBalancer.cs │ │ │ ├── RoundRobinArrayIndex.cs │ │ │ ├── RoutingTable.cs │ │ │ └── RoutingTableManager.cs │ │ ├── Services │ │ │ └── DateTimeProvider.cs │ │ ├── Telemetry │ │ │ └── QueryApiType.cs │ │ ├── Temporal │ │ │ ├── TimeZoneMapping.cs │ │ │ └── windowsZones.xml │ │ ├── Types │ │ │ ├── IHasDateComponents.cs │ │ │ ├── IHasDateTimeComponents.cs │ │ │ ├── IHasTimeComponents.cs │ │ │ ├── ISegment.cs │ │ │ ├── IValue.cs │ │ │ ├── Node.cs │ │ │ ├── NotificationConfig.cs │ │ │ ├── NotificationsDisabledConfig.cs │ │ │ ├── Path.cs │ │ │ ├── Relationship.cs │ │ │ └── Segment.cs │ │ └── Util │ │ │ ├── BytesToTypedArrayHelper.cs │ │ │ ├── ConcurrentHashSet.cs │ │ │ ├── ConcurrentOrderedSet.cs │ │ │ ├── ConfigBuilders.cs │ │ │ ├── ConnectionContext.cs │ │ │ ├── Neo4jUri.cs │ │ │ ├── ObjectToDictionary │ │ │ ├── DictionaryAccessWrapper.cs │ │ │ ├── IObjectToDictionaryConverter.cs │ │ │ ├── IParameterValueTransformer.cs │ │ │ ├── ObjectToDictionaryConverter.cs │ │ │ └── ParameterValueTransformer.cs │ │ │ ├── PipeReaderMemoryPool.cs │ │ │ ├── ServerVersion.cs │ │ │ └── VarLong.cs │ ├── Neo4j.Driver.csproj │ ├── Neo4j.Driver.csproj.DotSettings │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Public │ │ ├── AccessMode.cs │ │ ├── Auth │ │ ├── AuthSchemes.cs │ │ ├── AuthTokenAndExpiration.cs │ │ ├── AuthTokenManagers.cs │ │ ├── AuthTokens.cs │ │ ├── ClientCertificateProviders.cs │ │ ├── IAuthToken.cs │ │ ├── IAuthTokenManager.cs │ │ ├── IClientCertificateProvider.cs │ │ ├── IRotatingClientCertificateProvider.cs │ │ └── ITlsNegotiator.cs │ │ ├── Bookmark.cs │ │ ├── BookmarkManagerConfig.cs │ │ ├── CertificateTrustRule.cs │ │ ├── Config.cs │ │ ├── ConfigBuilder.cs │ │ ├── EncryptionLevel.cs │ │ ├── Exceptions │ │ ├── AuthenticationException.cs │ │ ├── AuthorizationException.cs │ │ ├── ClientException.cs │ │ ├── ConnectionReadTimeoutException.cs │ │ ├── DatabaseException.cs │ │ ├── FatalDiscoveryException.cs │ │ ├── ForbiddenException.cs │ │ ├── InvalidBookmarkException.cs │ │ ├── InvalidBookmarkMixtureException.cs │ │ ├── Neo4jException.cs │ │ ├── ProtocolException.cs │ │ ├── ResultConsumedException.cs │ │ ├── SecurityException.cs │ │ ├── ServiceUnavailableException.cs │ │ ├── SessionExpiredException.cs │ │ ├── StatementArgumentException.cs │ │ ├── TokenExpiredException.cs │ │ ├── TransactionClosedException.cs │ │ ├── TransactionNestingException.cs │ │ ├── TransactionTerminatedException.cs │ │ ├── TransientException.cs │ │ ├── TypeException.cs │ │ ├── UnknownSecurityException.cs │ │ ├── UnsupportedFeatureException.cs │ │ ├── ValueOverflowException.cs │ │ └── ValueTruncationException.cs │ │ ├── ExecuteQuery │ │ ├── EagerResult.cs │ │ ├── IExecutableQuery.cs │ │ └── QueryConfig.cs │ │ ├── Extensions │ │ ├── ResultCursorExtensions.cs │ │ └── ValueExtensions.cs │ │ ├── GraphDatabase.cs │ │ ├── IAsyncQueryRunner.cs │ │ ├── IAsyncSession.cs │ │ ├── IAsyncTransaction.cs │ │ ├── IBookmarkManager.cs │ │ ├── IBookmarkManagerFactory.cs │ │ ├── IDriver.cs │ │ ├── INeo4jLogger.cs │ │ ├── IRecord.cs │ │ ├── IResultCursor.cs │ │ ├── IServerAddressResolver.cs │ │ ├── IsExternalInit.cs │ │ ├── Mapping │ │ ├── AsyncEnumerableExtensions.cs │ │ ├── ConventionTranslation │ │ │ ├── ConventionTranslator.cs │ │ │ ├── FieldCaseConvention.cs │ │ │ ├── IConventionTranslator.cs │ │ │ ├── IFieldFormatter.cs │ │ │ ├── IIdentifierParser.cs │ │ │ ├── IdentifierCaseConvention.cs │ │ │ ├── StandardCaseFormatter.cs │ │ │ └── StandardCaseParser.cs │ │ ├── DelegateAsyncEnumerableExtensions.cs │ │ ├── DelegateExecutableQueryMappingExtensions.cs │ │ ├── DelegateMappingRecordExtensions.cs │ │ ├── EntityExtensions.cs │ │ ├── ExecutableQueryMappingExtensions.cs │ │ ├── IMappingBuilder.cs │ │ ├── IMappingProvider.cs │ │ ├── IRecordMapper.cs │ │ ├── MappingConstructorAttribute.cs │ │ ├── MappingFailedException.cs │ │ ├── MappingIgnoredAttribute.cs │ │ ├── MappingOptionalAttribute.cs │ │ ├── MappingSourceAttribute.cs │ │ ├── RecordExtensions.cs │ │ └── RecordObjectMapping.cs │ │ ├── Query.cs │ │ ├── RoutingControl.cs │ │ ├── ServerAddress.cs │ │ ├── SessionConfig.cs │ │ ├── Summary │ │ ├── ICounters.cs │ │ ├── IDatabaseInfo.cs │ │ ├── IGqlStatusObject.cs │ │ ├── IInputPosition.cs │ │ ├── INotification.cs │ │ ├── IPlan.cs │ │ ├── IProfiledPlan.cs │ │ ├── IResultSummary.cs │ │ ├── IServerInfo.cs │ │ ├── NotificationCategory.cs │ │ ├── NotificationClassification.cs │ │ ├── NotificationSeverity.cs │ │ └── QueryType.cs │ │ ├── TransactionConfig.cs │ │ ├── TrustManager.cs │ │ └── Types │ │ ├── Category.cs │ │ ├── Classification.cs │ │ ├── Duration.cs │ │ ├── IEntity.cs │ │ ├── INode.cs │ │ ├── INotificationsConfig.cs │ │ ├── IPath.cs │ │ ├── IRelationship.cs │ │ ├── IVector.cs │ │ ├── LocalDate.cs │ │ ├── LocalDateTime.cs │ │ ├── LocalTime.cs │ │ ├── OffsetTime.cs │ │ ├── Point.cs │ │ ├── Severity.cs │ │ ├── TemporalValue.cs │ │ ├── UnsupportedType.cs │ │ ├── Vector.cs │ │ ├── Zone.cs │ │ ├── ZoneId.cs │ │ ├── ZoneOffset.cs │ │ └── ZonedDateTime.cs ├── common.props └── runTests.ps1 ├── README.md ├── docfx ├── .gitignore ├── docfx.json ├── filterConfig.yaml ├── images │ └── neo4j-logo.png ├── index.md ├── neo4j-template │ └── public │ │ └── main.css └── toc.yml └── testkit ├── Dockerfile ├── backend.py ├── build.py ├── integration.py ├── stress.py ├── testkit.json └── unittests.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/.snyk -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/NOTICE -------------------------------------------------------------------------------- /Neo4j.Driver/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/.editorconfig -------------------------------------------------------------------------------- /Neo4j.Driver/IdentityPubKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/IdentityPubKey.snk -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j-icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j-icon-color.png -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/DriverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/DriverExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/IRxResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/IRxResult.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/IRxRunnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/IRxRunnable.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/IRxSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/IRxSession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/IRxTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/IRxTransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/Internal/InternalRxSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/Internal/InternalRxSession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/Internal/InternalRxTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/Internal/InternalRxTransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/Internal/RxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/Internal/RxExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/Internal/RxResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/Internal/RxResult.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/Internal/RxRetryLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/Internal/RxRetryLogic.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/Neo4j.Driver.Reactive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/Neo4j.Driver.Reactive.csproj -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Reactive/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Reactive/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/DriverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/DriverExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/IQueryRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/IQueryRunner.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/IResult.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/ISession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/ISession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/ITransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/ITransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Internal/BlockingExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Internal/BlockingExecutor.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Internal/InternalResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Internal/InternalResult.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Internal/InternalSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Internal/InternalSession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Internal/InternalTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Internal/InternalTransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Internal/RecordSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Internal/RecordSet.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Internal/RetryLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Internal/RetryLogic.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Neo4j.Driver.Simple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Neo4j.Driver.Simple.csproj -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Simple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Simple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Abstractions/IRecordConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Abstractions/IRecordConsumer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Abstractions/IWorkloadExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Abstractions/IWorkloadExecutor.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Abstractions/IWorkloadStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Abstractions/IWorkloadStore.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/BenchkitBackendModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/BenchkitBackendModule.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Controllers/ReadyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Controllers/ReadyController.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Controllers/WorkloadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Controllers/WorkloadController.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Dockerfile -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Implementations/RecordConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Implementations/RecordConsumer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Implementations/WorkloadStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Implementations/WorkloadStore.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/LogoWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/LogoWriter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Program.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Properties/launchSettings.json -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Method.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Mode.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Routing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Routing.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Workload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/Workload.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/WorkloadQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/Types/WorkloadQuery.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.BenchkitBackend/appsettings.json -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/App.config -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/AuthenticationIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/AuthenticationIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/BoltV4IT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/BoltV4IT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/BookmarkIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/BookmarkIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/CertificateTrustIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/CertificateTrustIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/CypherParametersIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/CypherParametersIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/DirectDriverTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/DirectDriverTestBase.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/DriverIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/DriverIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/EncryptionIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/EncryptionIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/ErrorIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/ErrorIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/NestedQueriesIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/NestedQueriesIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/ResultIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/ResultIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/SessionIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/SessionIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/TransactionIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Direct/TransactionIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Examples.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/ExamplesAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/ExamplesAsync.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/ExamplesRx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/ExamplesRx.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Extensions/DatabaseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Extensions/DatabaseExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Extensions/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Extensions/SessionExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/BoltStubServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/BoltStubServer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/BoltkitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/BoltkitHelper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/CcIntegrationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/CcIntegrationCollection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/CertificateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/CertificateUtils.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/CausalCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/CausalCluster.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/ExistingCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/ExistingCluster.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/ICausalCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/ICausalCluster.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/SingleInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/Cluster/SingleInstance.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IInstaller.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IShellCommandRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IShellCommandRunner.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/ISingleInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/ISingleInstance.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IntegrationTestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IntegrationTestAttribute.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IntegrationTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/IntegrationTestFixture.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/SaIntegrationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/SaIntegrationCollection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/ShellCommandRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/ShellCommandRunnerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/StandAlone/StandAlone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Internals/StandAlone/StandAlone.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Neo4j.Driver.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Neo4j.Driver.Tests.Integration.csproj -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/AbstractRxIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/AbstractRxIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/NavigationIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/NavigationIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/NestedQueriesIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/NestedQueriesIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/SessionIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/SessionIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/SummaryIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/SummaryIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/TransactionIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Reactive/TransactionIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/fail_to_auth.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/fail_to_auth.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/get_routing_table.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/get_routing_table.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/rollback_error.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/rollback_error.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/supports_multidb.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V3/supports_multidb.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/accessmode_router.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/accessmode_router.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/fail_to_auth.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/fail_to_auth.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/get_routing_table.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/get_routing_table.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/read.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/read.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/return_1.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/return_1.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/rollback_error.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/rollback_error.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/streaming_records.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/streaming_records.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/supports_multidb.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4/supports_multidb.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4_1/noop.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Resources/V4_1/noop.script -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/BoltV4IT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/BoltV4IT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/RoutingDriverAsyncIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/RoutingDriverAsyncIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/RoutingDriverIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/RoutingDriverIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/RoutingDriverTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Routing/RoutingDriverTestBase.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/AsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/AsyncCommand.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/BlockingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/BlockingCommand.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/CausalClusterStressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/CausalClusterStressTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/IAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/IAsyncCommand.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/IBlockingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/IBlockingCommand.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/IRxCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/IRxCommand.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/Reactive/RxReadCommandInTx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/Reactive/RxReadCommandInTx.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/Reactive/RxWriteCommandInTx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/Reactive/RxWriteCommandInTx.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/Reactive/RxWrongCommandInTx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/Reactive/RxWrongCommandInTx.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/RxCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/RxCommand.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/SingleInstanceStressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/SingleInstanceStressTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/StressTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/StressTest.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/StressTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stress/StressTestContext.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/AccessModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/AccessModeTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/DirectDriverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/DirectDriverTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/MultiDatabasesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/MultiDatabasesTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/ResultStreamingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/ResultStreamingTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/RoutingDriverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/RoutingDriverTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/TransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Stub/TransactionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Types/PointsIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Types/PointsIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/Types/TemporalTypesIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/Types/TemporalTypesIT.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/packages.config -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.Integration/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.Integration/xunit.runner.json -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/.editorconfig: -------------------------------------------------------------------------------- 1 | [Protocol/**/*.cs] 2 | resharper_unused_type_global_highlighting = None -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Controller.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Exceptions/DriverExceptionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Exceptions/DriverExceptionWrapper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Exceptions/ExceptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Exceptions/ExceptionManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Exceptions/FrontendException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Exceptions/FrontendException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/Connection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/RequestReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/RequestReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/ResponseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/ResponseWriter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/StreamBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/IO/StreamBuffer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Neo4j.Driver.Tests.TestBackend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Neo4j.Driver.Tests.TestBackend.csproj -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Program.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Program.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Program.runtimeconfig.json -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Properties/launchSettings.json -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/AuthorizationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/AuthorizationToken.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/ClientCertificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/ClientCertificate.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/NewAuthTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/NewAuthTokenManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/VerifyAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Auth/VerifyAuthentication.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/DriverClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/DriverClose.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/NewDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/NewDriver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/NewDriverConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/NewDriverConverter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/SimpleNeo4JLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Driver/SimpleNeo4JLogger.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/DriverQuery/ExecuteQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/DriverQuery/ExecuteQuery.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Handshake/GetFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Handshake/GetFeatures.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Handshake/StartTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Handshake/StartTest.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Protocol.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolObjectFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolObjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolObjectManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/ProtocolResponse.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/CypherTypeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/CypherTypeField.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/Result.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultConsume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultConsume.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultList.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultNext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultNext.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultPeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultPeek.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultSingle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Result/ResultSingle.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/BaseSessionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/BaseSessionType.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/NewSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/NewSession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/RetryableNegative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/RetryableNegative.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/RetryablePositive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/RetryablePositive.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/SessionClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/SessionClose.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/SessionRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Session/SessionRun.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/TestkitConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/TestkitConstants.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Time/FakeTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/Time/FakeTime.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/UI/ConsoleTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Protocol/UI/ConsoleTextWriter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Resolvers/ListAddressResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Resolvers/ListAddressResolver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/SupportedFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/SupportedFeatures.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/TestBlackList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/TestBlackList.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Transaction/TransactionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Transaction/TransactionManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Types/CypherToNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Types/CypherToNative.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Types/NativeToCypher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests.TestBackend/Types/NativeToCypher.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/.editorconfig -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/AsyncRetryLogicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/AsyncRetryLogicTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/AsyncSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/AsyncSessionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Auth/Neo4jAuthTokenManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Auth/Neo4jAuthTokenManagerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/AuthTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/AuthTokenTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/BookmarkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/BookmarkTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/ConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/ConfigTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/ConnectionPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/ConnectionPoolTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/ConnectionValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/ConnectionValidatorTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/BoltHandshakerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/BoltHandshakerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/CachingResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/CachingResolverTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/DefaultResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/DefaultResolverTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/DelegatedConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/DelegatedConnectionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/EncryptionManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/EncryptionManagerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/MockedMessagingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/MockedMessagingClient.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/PooledConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/PooledConnectionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/SocketClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/SocketClientTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/SocketConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/SocketConnectionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Connector/TcpSocketClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Connector/TcpSocketClientTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/DriverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/DriverTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Exceptions/Neo4jExceptionFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Exceptions/Neo4jExceptionFactoryTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/ExecutableQuery/ExecutableQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/ExecutableQuery/ExecutableQueryTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Extensions/StreamExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Extensions/StreamExtensionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Filters/OSFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Filters/OSFilters.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Filters/RuntimeFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Filters/RuntimeFilters.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/GqlCompliance/GqlErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/GqlCompliance/GqlErrorTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/HomeDbCaching/HomeDbCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/HomeDbCaching/HomeDbCacheTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/ChunkReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/ChunkReaderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/ChunkWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/ChunkWriterTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/PackStreamSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/PackStreamSerializerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/PackStreamTestSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/PackStreamTestSpecs.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/PackStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/PackStreamTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/Utils/Machines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/Utils/Machines.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/Utils/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/IO/Utils/Streams.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/MessageHandling/MessageFomatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/MessageHandling/MessageFomatTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/MessageHandling/ResponsePipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/MessageHandling/ResponsePipelineTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolFactoryTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolV3Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolV3Tests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Protocol/BoltProtocolVersionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/BytesToTypedArrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/BytesToTypedArrayTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ConcurrentOrderedSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ConcurrentOrderedSetTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ConfigBuildersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ConfigBuildersTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ObjectToDictionaryConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ObjectToDictionaryConverterTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ParameterValueTransformerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/ParameterValueTransformerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/PipeReaderMemoryPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/PipeReaderMemoryPoolTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/TransactionTimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/TransactionTimeoutTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/VarLongTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Internal/Util/VarLongTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/AsyncEnumerableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/AsyncEnumerableExtensionsTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/BlueprintMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/BlueprintMappingTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/BuiltMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/BuiltMapperTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/ConventionTranslation/FormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/ConventionTranslation/FormatterTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/ConventionTranslation/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/ConventionTranslation/ParserTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/ConventionTranslation/TranslatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/ConventionTranslation/TranslatorTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/DefaultMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/DefaultMapperTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/DelegateMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/DelegateMapperTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/DictAsRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/DictAsRecordTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/LabelCaptureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/LabelCaptureTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/LambdaMappingRecordExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/LambdaMappingRecordExtensionsTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappableValueProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappableValueProviderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappedListCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappedListCreatorTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingBuilderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingConcurrencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingConcurrencyTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingProviderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingSourceDelegateBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingSourceDelegateBuilderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingTestWithGlobalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/MappingTestWithGlobalState.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/OptionalMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/OptionalMappingTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/RecordMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/RecordMappingTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/RecordPathFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/RecordPathFinderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/TypeConversion/TypeConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/TypeConversion/TypeConversionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Mapping/VectorMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Mapping/VectorMappingTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Neo4j.Driver.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Neo4j.Driver.Tests.csproj -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Neo4j.Driver.Tests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Neo4j.Driver.Tests.csproj.DotSettings -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/NodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/NodeTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/PathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/PathTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/AbstractRxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/AbstractRxTest.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/DriverExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/DriverExtensionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/InternalRxResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/InternalRxResultTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/InternalRxSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/InternalRxSessionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/InternalRxTransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/InternalRxTransactionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/RxRetryLogicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Internal/RxRetryLogicTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Utils/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Utils/Extensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Reactive/Utils/Utils.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/RelationshipTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/RelationshipTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Result/RecordSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Result/RecordSetTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Result/RecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Result/RecordTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Result/ResultCursorBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Result/ResultCursorBuilderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Result/ResultCursorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Result/ResultCursorTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Result/ResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Result/ResultTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Result/SummaryBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Result/SummaryBuilderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/ResultCursorExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/ResultCursorExtensionsTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/ClusterConnectionPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/ClusterConnectionPoolTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/ClusterConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/ClusterConnectionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/ClusterDiscoveryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/ClusterDiscoveryTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/LoadBalancerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/LoadBalancerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/RoundRobinArrayIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/RoundRobinArrayIndexTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/RoutingTableManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/RoutingTableManagerTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/RoutingTableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/RoutingTableTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Routing/ServerVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Routing/ServerVersionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/SessionConfigBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/SessionConfigBuilderTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/SessionConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/SessionConfigTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Simple/Internal/InternalSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Simple/Internal/InternalSessionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Simple/Internal/InternalTransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Simple/Internal/InternalTransactionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Synchronous/Internal/SyncRetryLogicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Synchronous/Internal/SyncRetryLogicTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Temporal/TimeZoneMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Temporal/TimeZoneMappingTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestDriverContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestDriverContext.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/Assertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/Assertions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/CollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/CollectionExtensionsTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/LoggingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/LoggingHelper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/MockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/MockExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/MockExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/MockExtensionsTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/Neo4jUriTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/Neo4jUriTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/SocketClientTestHarness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/SocketClientTestHarness.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/TestDriverLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/TestDriverLogger.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/TestRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TestUtil/TestRecord.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TransactionConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TransactionConfigTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/TransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/TransactionTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/DurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/DurationTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/LocalDateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/LocalDateTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/LocalDateTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/LocalDateTimeTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/LocalTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/LocalTimeTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/NotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/NotificationTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/OffsetTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/OffsetTimeTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/PointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/PointTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/UnsupportedTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/UnsupportedTypeTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/VectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/VectorTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/ZonedDateTimeWithOffsetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/ZonedDateTimeWithOffsetTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/Types/ZonedDateTimeWithZoneIdTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/Types/ZonedDateTimeWithZoneIdTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/ValueExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/ValueExtensionsTests.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.Tests/app.config -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.sln -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver.sln.DotSettings -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/AcquireStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/AcquireStatus.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/AsyncQueryRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/AsyncQueryRunner.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/AsyncRetryLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/AsyncRetryLogic.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/AsyncSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/AsyncSession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/AsyncSessionResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/AsyncSessionResourceManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/AsyncTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/AsyncTransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/AuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/AuthToken.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/AuthTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/AuthTokenExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/BasicAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/BasicAuthToken.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/BearerAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/BearerAuthToken.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/CustomAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/CustomAuthToken.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/DefaultTlsNegotiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/DefaultTlsNegotiator.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/DelegateTlsNegotiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/DelegateTlsNegotiator.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/KerberosAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/KerberosAuthToken.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/Neo4jAuthTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/Neo4jAuthTokenManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/RotatingClientCertificateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/RotatingClientCertificateProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/StaticAuthTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/StaticAuthTokenManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Auth/StaticClientCertificateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Auth/StaticClientCertificateProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/BookmarkManagerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/BookmarkManagerFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ConnectionPool.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ConnectionPoolStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ConnectionPoolStatus.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ConnectionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ConnectionValidator.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/BoltHandshaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/BoltHandshaker.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/ByteBuffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/ByteBuffers.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/DelegatedConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/DelegatedConnection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/IConnection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/IHostResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/IHostResolver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/IMessageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/IMessageWriter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/ISocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/ISocketClient.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/ITcpSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/ITcpSocketClient.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/PooledConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/PooledConnection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/Resolvers/CachingHostResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/Resolvers/CachingHostResolver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/Resolvers/DefaultHostResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/Resolvers/DefaultHostResolver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/Resolvers/SystemHostResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/Resolvers/SystemHostResolver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/SocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/SocketClient.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/SocketClientIoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/SocketClientIoFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/SocketConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/SocketConnection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/TcpSocketClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/TcpSocketClient.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/CertificateTrustManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/CertificateTrustManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/ChainTrustManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/ChainTrustManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/InsecureTrustManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/InsecureTrustManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/PeerTrustManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Connector/Trust/PeerTrustManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/DefaultBookmarkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/DefaultBookmarkManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Driver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/DriverContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/DriverContext.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/EncryptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/EncryptionManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ExceptionHandling/ErrorCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ExceptionHandling/ErrorCodeAttribute.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ExceptionHandling/Neo4jExceptionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ExceptionHandling/Neo4jExceptionFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/DriverRowSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/DriverRowSource.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/ExecutableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/ExecutableQuery.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/IQueryRowSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/IQueryRowSource.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/ReduceToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/ReduceToList.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/ReducedExecutableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/ExecuteQuery/ReducedExecutableQuery.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/ByteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/ByteExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/ConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/ConnectionExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/ErrorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/ErrorExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/MappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/MappingExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Extensions/UtilityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Extensions/UtilityExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/GqlCompliance/GqlErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/GqlCompliance/GqlErrors.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Helpers/CertHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Helpers/CertHelper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Helpers/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Helpers/RuntimeHelper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Helpers/SimpleWildcardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Helpers/SimpleWildcardHelper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Helpers/TemporalHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Helpers/TemporalHelpers.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Helpers/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Helpers/Throw.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Helpers/UniqueIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Helpers/UniqueIdGenerator.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/HomeDbCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/HomeDbCache.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/HomeDbCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/HomeDbCacheKey.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/HomeDbCacheKeyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/HomeDbCacheKeyProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/IHomeDbCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/HomeDbCaching/IHomeDbCache.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IConnectionPool.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IConnectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IConnectionProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IConnectionReleaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IConnectionReleaseManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IInternalAsyncSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IInternalAsyncSession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IInternalAsyncTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IInternalAsyncTransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IInternalDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IInternalDriver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IInternalResultCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IInternalResultCursor.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/ChunkReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/ChunkReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/ChunkWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/ChunkWriter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/Constants.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/IChunkReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/IChunkReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/IMessageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/IMessageReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/IPackStreamSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/IPackStreamSerializer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/MessageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/MessageReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/MessageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/MessageWriter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStream.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamBitConverter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamType.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/PackStreamWriter.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/PipelinedMessageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/PipelinedMessageReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/ReadOnlySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/ReadOnlySerializer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/SpanPackStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/SpanPackStreamReader.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/NodeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/NodeSerializer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/PathSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/PathSerializer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/PointSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/PointSerializer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/VectorSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/ValueSerializers/VectorSerializer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IO/WriteOnlySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IO/WriteOnlySerializer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/IPooledConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/IPooledConnection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/InitialServerAddressProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/InitialServerAddressProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/InternalBookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/InternalBookmarks.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Logging/DriverLoggerUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Logging/DriverLoggerUtil.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Logging/NullNeo4JLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Logging/NullNeo4JLogger.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Logging/PrefixNeo4JLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Logging/PrefixNeo4JLogger.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Logging/ReformattedNeo4JLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Logging/ReformattedNeo4JLogger.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/BuiltMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/BuiltMapper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/DefaultMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/DefaultMapper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/DelegateMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/DelegateMapper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/DictAsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/DictAsRecord.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/EntityMappingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/EntityMappingInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappableValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappableValueProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappedListCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappedListCreator.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappingBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappingBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappingSourceDelegateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/MappingSourceDelegateBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/ParameterMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/ParameterMapper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/RecordPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/RecordPathFinder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Mapping/TypeConversion/DefaultConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Mapping/TypeConversion/DefaultConverters.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/CommitResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/CommitResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/HelloResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/HelloResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IBookmarksTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IBookmarksTracker.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IMetadataCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IMetadataCollector.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IResponsePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IResponsePipeline.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IResponsePipelineError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/IResponsePipelineError.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/Metadata/FieldsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/Metadata/FieldsCollector.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/Metadata/PlanCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/Metadata/PlanCollector.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/Metadata/TypeCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/Metadata/TypeCollector.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/NoOpResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/NoOpResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/ResponsePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/ResponsePipeline.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/ResponsePipelineError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/ResponsePipelineError.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/RouteResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/RouteResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/TelemetryResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/TelemetryResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V3/RunResponseHandlerV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V3/RunResponseHandlerV3.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V4/BeginResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V4/BeginResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V4/PullResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V4/PullResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V4/RunResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/MessageHandling/V4/RunResponseHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/BeginMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/BeginMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/CommitMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/CommitMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/DiscardMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/DiscardMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/FailureMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/FailureMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/GoodbyeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/GoodbyeMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/HelloMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/HelloMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/IMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/IgnoredMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/IgnoredMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/LogoffMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/LogoffMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/LogonMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/LogonMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/PullAllMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/PullAllMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/PullMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/PullMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RecordMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RecordMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/ResetMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/ResetMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/ResultHandleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/ResultHandleMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RollbackMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RollbackMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RouteMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RouteMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RouteMessageV43.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RouteMessageV43.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RunWithMetadataMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/RunWithMetadataMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/SuccessMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/SuccessMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/TelemetryMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/TelemetryMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/TransactionStartingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/TransactionStartingMessage.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Messaging/Utils/BoltAgentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Messaging/Utils/BoltAgentBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Metrics/ConnectionPoolMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Metrics/ConnectionPoolMetrics.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Metrics/DefaultMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Metrics/DefaultMetrics.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Metrics/IConnectionPoolListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Metrics/IConnectionPoolListener.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Metrics/IMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Metrics/IMetrics.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/PassthroughServerAddressResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/PassthroughServerAddressResolver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/PoolStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/PoolStatus.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/PooledConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/PooledConnectionFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/AutoCommitParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/AutoCommitParams.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BeginTransactionParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BeginTransactionParams.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocol.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolHandlerFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolMessageFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolV3.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/BoltProtocolVersion.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/IBoltProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/IBoltProtocol.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/MessageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/MessageFormat.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/Utility/BookmarksTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/Utility/BookmarksTracker.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Protocol/Utility/NullTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Protocol/Utility/NullTransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/CursorEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/CursorEnumerator.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/IResultStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/IResultStream.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/IResultStreamBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/IResultStreamBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Record.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/ResultCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/ResultCursor.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/ResultCursorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/ResultCursorBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/Counters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/Counters.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/CursorMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/CursorMetadata.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/DatabaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/DatabaseInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/GqlStatusObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/GqlStatusObject.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/IUpdateableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/IUpdateableInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/InputPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/InputPosition.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/Notification.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/Plan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/Plan.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/ProfiledPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/ProfiledPlan.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/ServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/ServerInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/SummaryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Result/Summary/SummaryBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/ClusterConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/ClusterConnection.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/ClusterConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/ClusterConnectionPool.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/ClusterDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/ClusterDiscovery.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/ConnectionPoolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/ConnectionPoolFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/IClusterConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/IClusterConnectionPool.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/IClusterConnectionPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/IClusterConnectionPoolManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/IDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/IDiscovery.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/IErrorHandler.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/ILoadBalancingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/ILoadBalancingStrategy.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/IRoutingTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/IRoutingTable.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/IRoutingTableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/IRoutingTableManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/LoadBalancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/LoadBalancer.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/RoundRobinArrayIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/RoundRobinArrayIndex.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/RoutingTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/RoutingTable.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Routing/RoutingTableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Routing/RoutingTableManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Services/DateTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Services/DateTimeProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Telemetry/QueryApiType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Telemetry/QueryApiType.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Temporal/TimeZoneMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Temporal/TimeZoneMapping.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Temporal/windowsZones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Temporal/windowsZones.xml -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/IHasDateComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/IHasDateComponents.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/IHasDateTimeComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/IHasDateTimeComponents.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/IHasTimeComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/IHasTimeComponents.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/ISegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/ISegment.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/IValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/IValue.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/Node.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/NotificationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/NotificationConfig.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/NotificationsDisabledConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/NotificationsDisabledConfig.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/Path.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/Relationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/Relationship.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Types/Segment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Types/Segment.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/BytesToTypedArrayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/BytesToTypedArrayHelper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/ConcurrentHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/ConcurrentHashSet.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/ConcurrentOrderedSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/ConcurrentOrderedSet.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/ConfigBuilders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/ConfigBuilders.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/ConnectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/ConnectionContext.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/Neo4jUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/Neo4jUri.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/PipeReaderMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/PipeReaderMemoryPool.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/ServerVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/ServerVersion.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Internal/Util/VarLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Internal/Util/VarLong.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Neo4j.Driver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Neo4j.Driver.csproj -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Neo4j.Driver.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Neo4j.Driver.csproj.DotSettings -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/AccessMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/AccessMode.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthSchemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthSchemes.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthTokenAndExpiration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthTokenAndExpiration.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthTokenManagers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthTokenManagers.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/AuthTokens.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/ClientCertificateProviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/ClientCertificateProviders.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/IAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/IAuthToken.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/IAuthTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/IAuthTokenManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/IClientCertificateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/IClientCertificateProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/IRotatingClientCertificateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/IRotatingClientCertificateProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Auth/ITlsNegotiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Auth/ITlsNegotiator.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Bookmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Bookmark.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/BookmarkManagerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/BookmarkManagerConfig.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/CertificateTrustRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/CertificateTrustRule.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Config.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/ConfigBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/ConfigBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/EncryptionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/EncryptionLevel.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/AuthenticationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/AuthenticationException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/AuthorizationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/AuthorizationException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ClientException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ClientException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ConnectionReadTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ConnectionReadTimeoutException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/DatabaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/DatabaseException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/FatalDiscoveryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/FatalDiscoveryException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ForbiddenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ForbiddenException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/InvalidBookmarkException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/InvalidBookmarkException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/InvalidBookmarkMixtureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/InvalidBookmarkMixtureException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/Neo4jException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/Neo4jException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ProtocolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ProtocolException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ResultConsumedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ResultConsumedException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/SecurityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/SecurityException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ServiceUnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ServiceUnavailableException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/SessionExpiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/SessionExpiredException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/StatementArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/StatementArgumentException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TokenExpiredException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TokenExpiredException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransactionClosedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransactionClosedException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransactionNestingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransactionNestingException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransactionTerminatedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransactionTerminatedException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransientException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TransientException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/TypeException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/UnknownSecurityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/UnknownSecurityException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/UnsupportedFeatureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/UnsupportedFeatureException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ValueOverflowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ValueOverflowException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ValueTruncationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Exceptions/ValueTruncationException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/ExecuteQuery/EagerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/ExecuteQuery/EagerResult.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/ExecuteQuery/IExecutableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/ExecuteQuery/IExecutableQuery.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/ExecuteQuery/QueryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/ExecuteQuery/QueryConfig.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Extensions/ResultCursorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Extensions/ResultCursorExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Extensions/ValueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Extensions/ValueExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/GraphDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/GraphDatabase.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IAsyncQueryRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IAsyncQueryRunner.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IAsyncSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IAsyncSession.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IAsyncTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IAsyncTransaction.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IBookmarkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IBookmarkManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IBookmarkManagerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IBookmarkManagerFactory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IDriver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/INeo4jLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/INeo4jLogger.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IRecord.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IResultCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IResultCursor.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IServerAddressResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IServerAddressResolver.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/IsExternalInit.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/AsyncEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/AsyncEnumerableExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/DelegateAsyncEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/DelegateAsyncEnumerableExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/DelegateMappingRecordExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/DelegateMappingRecordExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/EntityExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/ExecutableQueryMappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/ExecutableQueryMappingExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/IMappingBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/IMappingBuilder.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/IMappingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/IMappingProvider.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/IRecordMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/IRecordMapper.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingConstructorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingConstructorAttribute.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingFailedException.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingIgnoredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingIgnoredAttribute.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingOptionalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingOptionalAttribute.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingSourceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/MappingSourceAttribute.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/RecordExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/RecordExtensions.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Mapping/RecordObjectMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Mapping/RecordObjectMapping.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Query.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/RoutingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/RoutingControl.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/ServerAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/ServerAddress.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/SessionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/SessionConfig.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/ICounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/ICounters.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/IDatabaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/IDatabaseInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/IGqlStatusObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/IGqlStatusObject.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/IInputPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/IInputPosition.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/INotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/INotification.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/IPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/IPlan.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/IProfiledPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/IProfiledPlan.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/IResultSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/IResultSummary.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/IServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/IServerInfo.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/NotificationCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/NotificationCategory.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/NotificationClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/NotificationClassification.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/NotificationSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/NotificationSeverity.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Summary/QueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Summary/QueryType.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/TransactionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/TransactionConfig.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/TrustManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/TrustManager.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/Category.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/Classification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/Classification.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/Duration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/Duration.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/IEntity.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/INode.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/INotificationsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/INotificationsConfig.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/IPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/IPath.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/IRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/IRelationship.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/IVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/IVector.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/LocalDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/LocalDate.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/LocalDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/LocalDateTime.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/LocalTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/LocalTime.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/OffsetTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/OffsetTime.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/Point.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/Severity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/Severity.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/TemporalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/TemporalValue.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/UnsupportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/UnsupportedType.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/Vector.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/Zone.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/ZoneId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/ZoneId.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/ZoneOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/ZoneOffset.cs -------------------------------------------------------------------------------- /Neo4j.Driver/Neo4j.Driver/Public/Types/ZonedDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/Neo4j.Driver/Public/Types/ZonedDateTime.cs -------------------------------------------------------------------------------- /Neo4j.Driver/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/common.props -------------------------------------------------------------------------------- /Neo4j.Driver/runTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/Neo4j.Driver/runTests.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/README.md -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/docfx/.gitignore -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/filterConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/docfx/filterConfig.yaml -------------------------------------------------------------------------------- /docfx/images/neo4j-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/docfx/images/neo4j-logo.png -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_url: api/Neo4j.Driver.html 3 | --- -------------------------------------------------------------------------------- /docfx/neo4j-template/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/docfx/neo4j-template/public/main.css -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Neo4j Bolt Driver for .NET 2 | href: api/toc.yml 3 | 4 | -------------------------------------------------------------------------------- /testkit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/testkit/Dockerfile -------------------------------------------------------------------------------- /testkit/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/testkit/backend.py -------------------------------------------------------------------------------- /testkit/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/testkit/build.py -------------------------------------------------------------------------------- /testkit/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/testkit/integration.py -------------------------------------------------------------------------------- /testkit/stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/testkit/stress.py -------------------------------------------------------------------------------- /testkit/testkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/testkit/testkit.json -------------------------------------------------------------------------------- /testkit/unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j/neo4j-dotnet-driver/HEAD/testkit/unittests.py --------------------------------------------------------------------------------