├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.yml │ └── config.yml ├── release.yml └── workflows │ ├── build-docs.yml │ ├── cherry-pick-pr-for-label.yml │ ├── dotnet.yml │ ├── load-configuration.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── Directory.Build.props ├── Directory.Build.targets ├── KurrentDB.Client.sln ├── KurrentDB.Client.sln.DotSettings ├── KurrentLogo-Black.png ├── KurrentLogo-Plum.png ├── KurrentLogo-White.png ├── LICENSE.md ├── README.md ├── docs ├── .eslintignore ├── .eslintrc.cjs ├── .node-version ├── .vuepress │ ├── client.ts │ ├── config.ts │ ├── configs │ │ └── theme.ts │ ├── lib │ │ ├── externalPlaceholders.ts │ │ ├── log.ts │ │ ├── types.ts │ │ ├── version.ts │ │ └── versioning.ts │ ├── markdown │ │ ├── linkCheck │ │ │ └── index.ts │ │ ├── replaceLink │ │ │ └── index.ts │ │ ├── resolver.ts │ │ ├── types.ts │ │ └── xode │ │ │ ├── createImportCodeBlockRule.ts │ │ │ ├── importCodePlugin.ts │ │ │ ├── normalizeWhitespace.ts │ │ │ ├── resolveImportCode.ts │ │ │ └── types.ts │ ├── public │ │ ├── Kurrent Logo - Black.svg │ │ ├── Kurrent Logo - Plum.svg │ │ ├── Kurrent Logo - White.svg │ │ ├── cloud.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── fonts │ │ │ ├── Solina-Bold.woff │ │ │ ├── Solina-Bold.woff2 │ │ │ ├── Solina-Light.woff │ │ │ ├── Solina-Light.woff2 │ │ │ ├── Solina-Medium.woff │ │ │ ├── Solina-Medium.woff2 │ │ │ ├── Solina-Regular.woff │ │ │ └── Solina-Regular.woff2 │ │ ├── js │ │ │ └── snippet.js │ │ ├── logo-white.png │ │ ├── robots.txt │ │ └── video.png │ └── styles │ │ ├── index.scss │ │ └── palette.scss ├── api │ ├── appending-events.md │ ├── authentication.md │ ├── delete-stream.md │ ├── getting-started.md │ ├── observability.md │ ├── persistent-subscriptions.md │ ├── projections.md │ ├── reading-events.md │ └── subscriptions.md ├── package.json ├── pnpm-lock.yaml └── tsconfig.json ├── gencert.ps1 ├── gencert.sh ├── ouro.png ├── ouro.svg ├── samples ├── Directory.Build.props ├── Samples.sln ├── Samples.sln.DotSettings ├── appending-events │ ├── Program.cs │ └── appending-events.csproj ├── connecting-to-a-cluster │ ├── Program.cs │ └── connecting-to-a-cluster.csproj ├── connecting-to-a-single-node │ ├── DemoInterceptor.cs │ ├── Program.cs │ └── connecting-to-a-single-node.csproj ├── diagnostics │ ├── Program.cs │ └── diagnostics.csproj ├── persistent-subscriptions │ ├── Program.cs │ └── persistent-subscriptions.csproj ├── projection-management │ ├── Program.cs │ └── projection-management.csproj ├── quick-start │ ├── Program.cs │ ├── docker-compose.yml │ └── quick-start.csproj ├── reading-events │ ├── Program.cs │ └── reading-events.csproj ├── secure-with-tls │ ├── .dockerignore │ ├── Dockerfile │ ├── Program.cs │ ├── README.md │ ├── create-certs.ps1 │ ├── create-certs.sh │ ├── docker-compose.app.yml │ ├── docker-compose.certs.yml │ ├── docker-compose.yml │ ├── run-app.sh │ └── secure-with-tls.csproj ├── server-side-filtering │ ├── Program.cs │ └── server-side-filtering.csproj ├── setting-up-dependency-injection │ ├── Controllers │ │ └── EventStoreController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ └── setting-up-dependency-injection.csproj ├── subscribing-to-streams │ ├── Program.cs │ └── subscribing-to-streams.csproj └── user-certificates │ ├── Program.cs │ └── user-certificates.csproj ├── src ├── Directory.Build.props └── KurrentDB.Client │ ├── Core │ ├── Certificates │ │ └── X509Certificates.cs │ ├── ChannelBaseExtensions.cs │ ├── ChannelCache.cs │ ├── ChannelFactory.cs │ ├── ChannelInfo.cs │ ├── ChannelSelector.cs │ ├── ClusterMessage.cs │ ├── Common │ │ ├── AsyncStreamReaderExtensions.cs │ │ ├── Constants.cs │ │ ├── Diagnostics │ │ │ ├── ActivitySourceExtensions.cs │ │ │ ├── ActivityTagsCollectionExtensions.cs │ │ │ ├── Core │ │ │ │ ├── ActivityExtensions.cs │ │ │ │ ├── ActivityStatus.cs │ │ │ │ ├── ActivityStatusCodeHelper.cs │ │ │ │ ├── ActivityTagsCollectionExtensions.cs │ │ │ │ ├── ExceptionExtensions.cs │ │ │ │ ├── Telemetry │ │ │ │ │ └── TelemetryTags.cs │ │ │ │ └── Tracing │ │ │ │ │ ├── TracingConstants.cs │ │ │ │ │ └── TracingMetadata.cs │ │ │ ├── EventMetadataExtensions.cs │ │ │ ├── KurrentDBClientDiagnostics.cs │ │ │ ├── Telemetry │ │ │ │ └── TelemetryTags.cs │ │ │ └── Tracing │ │ │ │ └── TracingConstants.cs │ │ ├── EnumerableTaskExtensions.cs │ │ ├── EpochExtensions.cs │ │ ├── KurrentDBCallOptions.cs │ │ ├── MetadataExtensions.cs │ │ └── Shims │ │ │ ├── Index.cs │ │ │ ├── IsExternalInit.cs │ │ │ ├── Range.cs │ │ │ └── TaskCompletionSource.cs │ ├── DefaultRequestVersionHandler.cs │ ├── EndPointExtensions.cs │ ├── EventData.cs │ ├── EventRecord.cs │ ├── EventTypeFilter.cs │ ├── Exceptions │ │ ├── AccessDeniedException.cs │ │ ├── AppendTransactionMaxSizeExceededException.cs │ │ ├── ConnectionString │ │ │ ├── ConnectionStringParseException.cs │ │ │ ├── DuplicateKeyException.cs │ │ │ ├── InvalidClientCertificateException.cs │ │ │ ├── InvalidHostException.cs │ │ │ ├── InvalidKeyValuePairException.cs │ │ │ ├── InvalidSchemeException.cs │ │ │ ├── InvalidSettingException.cs │ │ │ ├── InvalidUserCredentialsException.cs │ │ │ └── NoSchemeException.cs │ │ ├── DiscoveryException.cs │ │ ├── NotAuthenticatedException.cs │ │ ├── NotLeaderException.cs │ │ ├── RequiredMetadataPropertyMissingException.cs │ │ ├── ScavengeNotFoundException.cs │ │ ├── StreamDeletedException.cs │ │ ├── StreamNotFoundException.cs │ │ ├── StreamTombstonedException.cs │ │ ├── UserNotFoundException.cs │ │ └── WrongExpectedVersionException.cs │ ├── FromAll.cs │ ├── FromStream.cs │ ├── GossipChannelSelector.cs │ ├── GrpcGossipClient.cs │ ├── GrpcServerCapabilitiesClient.cs │ ├── HashCode.cs │ ├── HttpFallback.cs │ ├── IChannelSelector.cs │ ├── IEventFilter.cs │ ├── IGossipClient.cs │ ├── IPosition.cs │ ├── IServerCapabilitiesClient.cs │ ├── Interceptors │ │ ├── ConnectionNameInterceptor.cs │ │ ├── ReportLeaderInterceptor.cs │ │ ├── RequiresLeaderInterceptor.cs │ │ └── TypedExceptionInterceptor.cs │ ├── Internal │ │ ├── Exceptions │ │ │ └── Utf8JsonReaderExtensions.cs │ │ └── SystemTypes.cs │ ├── KurrentDBClientBase.cs │ ├── KurrentDBClientConnectivitySettings.cs │ ├── KurrentDBClientOperationOptions.cs │ ├── KurrentDBClientSettings.ConnectionString.cs │ ├── KurrentDBClientSettings.cs │ ├── NodePreference.cs │ ├── NodePreferenceComparers.cs │ ├── NodeSelector.cs │ ├── Position.cs │ ├── PrefixFilterExpression.cs │ ├── ReconnectionRequired.cs │ ├── RegularFilterExpression.cs │ ├── ResolvedEvent.cs │ ├── ServerCapabilities.cs │ ├── SharingProvider.cs │ ├── SingleNodeChannelSelector.cs │ ├── SingleNodeHttpHandler.cs │ ├── StreamFilter.cs │ ├── StreamIdentifier.cs │ ├── StreamPosition.cs │ ├── StreamState.cs │ ├── SubscriptionDroppedReason.cs │ ├── SystemRoles.cs │ ├── SystemStreams.cs │ ├── TaskExtensions.cs │ ├── UserCredentials.cs │ ├── Uuid.cs │ ├── ValueMapper.cs │ └── proto │ │ ├── kurrent │ │ └── rpc │ │ │ ├── errors.proto │ │ │ └── rpc.proto │ │ └── kurrentdb │ │ └── protocol │ │ ├── v1 │ │ ├── gossip.proto │ │ ├── operations.proto │ │ ├── persistentsubscriptions.proto │ │ ├── projectionmanagement.proto │ │ ├── serverfeatures.proto │ │ ├── shared.proto │ │ ├── streams.proto │ │ └── usermanagement.proto │ │ └── v2 │ │ └── streams │ │ ├── errors.proto │ │ └── streams.proto │ ├── KurrentDB.Client.csproj │ ├── OpenTelemetry │ └── TracerProviderBuilderExtensions.cs │ ├── Operations │ ├── DatabaseScavengeResult.cs │ ├── KurrentDBOperationsClient.Admin.cs │ ├── KurrentDBOperationsClient.Scavenge.cs │ ├── KurrentDBOperationsClient.cs │ ├── KurrentDBOperationsClientServiceCollectionExtensions.cs │ └── ScavengeResult.cs │ ├── PersistentSubscriptions │ ├── KurrentDBPersistentSubscriptionsClient.Create.cs │ ├── KurrentDBPersistentSubscriptionsClient.Delete.cs │ ├── KurrentDBPersistentSubscriptionsClient.Info.cs │ ├── KurrentDBPersistentSubscriptionsClient.List.cs │ ├── KurrentDBPersistentSubscriptionsClient.Read.cs │ ├── KurrentDBPersistentSubscriptionsClient.ReplayParked.cs │ ├── KurrentDBPersistentSubscriptionsClient.RestartSubsystem.cs │ ├── KurrentDBPersistentSubscriptionsClient.Update.cs │ ├── KurrentDBPersistentSubscriptionsClient.cs │ ├── KurrentDBPersistentSubscriptionsClientCollectionExtensions.cs │ ├── MaximumSubscribersReachedException.cs │ ├── PersistentSubscription.cs │ ├── PersistentSubscriptionDroppedByServerException.cs │ ├── PersistentSubscriptionExtraStatistic.cs │ ├── PersistentSubscriptionInfo.cs │ ├── PersistentSubscriptionMessage.cs │ ├── PersistentSubscriptionNakEventAction.cs │ ├── PersistentSubscriptionNotFoundException.cs │ ├── PersistentSubscriptionSettings.cs │ └── SystemConsumerStrategies.cs │ ├── ProjectionManagement │ ├── KurrentDBProjectionManagementClient.Control.cs │ ├── KurrentDBProjectionManagementClient.Create.cs │ ├── KurrentDBProjectionManagementClient.State.cs │ ├── KurrentDBProjectionManagementClient.Statistics.cs │ ├── KurrentDBProjectionManagementClient.Update.cs │ ├── KurrentDBProjectionManagementClient.cs │ ├── KurrentDBProjectionManagementClientCollectionExtensions.cs │ └── ProjectionDetails.cs │ ├── Streams │ ├── AppendRecordSizeExceededException.cs │ ├── ConditionalWriteResult.cs │ ├── ConditionalWriteStatus.cs │ ├── DeadLine.cs │ ├── DeleteResult.cs │ ├── Direction.cs │ ├── IWriteResult.cs │ ├── InvalidTransactionException.cs │ ├── KurrentDBClient.Append.cs │ ├── KurrentDBClient.Delete.cs │ ├── KurrentDBClient.Metadata.cs │ ├── KurrentDBClient.MultiAppend.cs │ ├── KurrentDBClient.Read.cs │ ├── KurrentDBClient.Subscriptions.cs │ ├── KurrentDBClient.Tombstone.cs │ ├── KurrentDBClient.cs │ ├── KurrentDBClientExtensions.cs │ ├── KurrentDBClientServiceCollectionExtensions.cs │ ├── MaximumAppendSizeExceededException.cs │ ├── MultiStreamAppend.Extensions.cs │ ├── ReadState.cs │ ├── StreamAcl.cs │ ├── StreamAclJsonConverter.cs │ ├── StreamMessage.cs │ ├── StreamMetadata.cs │ ├── StreamMetadataJsonConverter.cs │ ├── StreamMetadataResult.cs │ ├── StreamSubscription.cs │ ├── Streams │ │ ├── AppendReq.cs │ │ ├── BatchAppendReq.cs │ │ ├── BatchAppendResp.cs │ │ ├── DeleteReq.cs │ │ ├── Model │ │ │ ├── SchemaDataFormat.cs │ │ │ ├── StreamsClientMapper.cs │ │ │ └── StreamsClientModel.cs │ │ ├── ReadReq.cs │ │ └── TombstoneReq.cs │ ├── SubscriptionFilterOptions.cs │ ├── SuccessResult.cs │ ├── SystemEventTypes.cs │ ├── SystemMetadata.cs │ ├── SystemSettings.cs │ ├── SystemSettingsJsonConverter.cs │ ├── WriteResultExtensions.cs │ └── WrongExpectedVersionResult.cs │ └── UserManagement │ ├── KurrentDBUserManagementClient.cs │ ├── KurrentDBUserManagementClientCollectionExtensions.cs │ ├── KurrentDBUserManagerClientExtensions.cs │ └── UserDetails.cs └── test ├── Directory.Build.props ├── KurrentDB.Client.Tests.Common ├── .env ├── ApplicationInfo.cs ├── AssertEx.cs ├── Certificates.cs ├── Extensions │ ├── AsyncEnumerableExtensions.cs │ ├── ConfigurationExtensions.cs │ ├── KurrentDBClientExtensions.cs │ ├── KurrentDBClientWarmupExtensions.cs │ ├── OperatingSystemExtensions.cs │ ├── ReadOnlyMemoryExtensions.cs │ ├── ShouldThrowAsyncExtensions.cs │ ├── TaskExtensions.cs │ ├── TypeExtensions.cs │ └── WithExtension.cs ├── Facts │ ├── AnonymousAccess.cs │ ├── Deprecation.cs │ ├── MinimumVersion.cs │ └── Regression.cs ├── Fakers │ └── TestUserFaker.cs ├── Fixtures │ ├── CertificatesManager.cs │ ├── DiagnosticsFixture.cs │ ├── KurrentDBFixtureOptions.cs │ ├── KurrentDBPermanentFixture.Helpers.cs │ ├── KurrentDBPermanentFixture.cs │ ├── KurrentDBPermanentTestNode.cs │ ├── KurrentDBTemporaryFixture.Helpers.cs │ ├── KurrentDBTemporaryFixture.cs │ └── KurrentDBTemporaryTestNode.cs ├── FluentDocker │ ├── FluentDockerBuilderExtensions.cs │ ├── FluentDockerServiceExtensions.cs │ ├── TestBypassService.cs │ ├── TestCompositeService.cs │ ├── TestContainerService.cs │ └── TestService.cs ├── GlobalEnvironment.cs ├── InterlockedBoolean.cs ├── KurrentDB.Client.Tests.Common.csproj ├── Logging.cs ├── PasswordGenerator.cs ├── Shouldly │ └── ShouldThrowAsyncExtensions.cs ├── TestCaseGenerator.cs ├── TestCredentials.cs ├── appsettings.Development.json ├── appsettings.json ├── docker-compose.certs.yml ├── docker-compose.cluster.yml ├── docker-compose.node.yml └── docker-compose.yml ├── KurrentDB.Client.Tests.ExternalAssembly ├── ExternalEvents.cs └── KurrentDB.Client.Tests.ExternalAssembly.csproj ├── KurrentDB.Client.Tests.NeverLoadedAssembly ├── KurrentDB.Client.Tests.NeverLoadedAssembly.csproj └── NotLoadedExternalEvent.cs └── KurrentDB.Client.Tests ├── Assertions ├── ComparableAssertion.cs ├── EqualityAssertion.cs ├── NullArgumentAssertion.cs ├── StringConversionAssertion.cs └── ValueObjectAssertion.cs ├── AutoScenarioDataAttribute.cs ├── ClientCertificatesTests.cs ├── ConnectionStringTests.cs ├── Diagnostics ├── PersistentSubscriptionsTracingInstrumentationTests.cs └── StreamsTracingInstrumentationTests.cs ├── FromAllTests.cs ├── FromStreamTests.cs ├── GossipChannelSelectorTests.cs ├── GrpcServerCapabilitiesClientTests.cs ├── InvalidCredentialsTestCases.cs ├── KurrentDB.Client.Tests.csproj ├── KurrentDBClientOperationsTests.cs ├── NodePreferenceComparerTests.cs ├── NodeSelectorTests.cs ├── Operations ├── AuthenticationTests.cs ├── MergeIndexTests.cs ├── ResignNodeTests.cs ├── RestartPersistentSubscriptionsTests.cs ├── ScavengeTests.cs ├── ShutdownNodeAuthenticationTests.cs └── ShutdownNodeTests.cs ├── PersistentSubscriptions ├── FilterTestCases.cs ├── SubscribeToAll │ ├── Obsolete │ │ ├── SubscribeToAllConnectToExistingWithStartFromNotSetObsoleteTests.cs │ │ ├── SubscribeToAllConnectToExistingWithStartFromSetToEndPositionObsoleteTests.cs │ │ ├── SubscribeToAllConnectWithoutReadPermissionsObsoleteTests.cs │ │ ├── SubscribeToAllFilterObsoleteTests.cs │ │ ├── SubscribeToAllGetInfoObsoleteTests.cs │ │ ├── SubscribeToAllListWithIncorrectCredentialsObsoleteTests.cs │ │ ├── SubscribeToAllNoDefaultCredentialsObsoleteTests.cs │ │ ├── SubscribeToAllObsoleteTests.cs │ │ ├── SubscribeToAllReplayParkedObsoleteTests.cs │ │ ├── SubscribeToAllResultWithNormalUserCredentialsObsoleteTests.cs │ │ ├── SubscribeToAllReturnsAllSubscriptionsObsoleteTests.cs │ │ ├── SubscribeToAllReturnsSubscriptionsToAllStreamObsoleteTests.cs │ │ ├── SubscribeToAllUpdateExistingWithCheckpointObsoleteTests.cs │ │ └── SubscribeToAllWithoutPSObsoleteTests.cs │ ├── SubscribeToAllConnectToExistingWithStartFromNotSetTests.cs │ ├── SubscribeToAllConnectToExistingWithStartFromSetToEndPositionTests.cs │ ├── SubscribeToAllConnectWithoutReadPermissionsTests.cs │ ├── SubscribeToAllFilterTests.cs │ ├── SubscribeToAllGetInfoTests.cs │ ├── SubscribeToAllListWithIncorrectCredentialsTests.cs │ ├── SubscribeToAllNoDefaultCredentialsTests.cs │ ├── SubscribeToAllReplayParkedTests.cs │ ├── SubscribeToAllResultWithNormalUserCredentialsTests.cs │ ├── SubscribeToAllReturnsAllSubscriptions.cs │ ├── SubscribeToAllReturnsSubscriptionsToAllStreamTests.cs │ ├── SubscribeToAllTests.cs │ ├── SubscribeToAllUpdateExistingWithCheckpointTest.cs │ └── SubscribeToAllWithoutPSTests.cs └── SubscribeToStream │ ├── Obsolete │ ├── SubscribeToStreamConnectToExistingWithoutPermissionObsoleteTests.cs │ ├── SubscribeToStreamGetInfoObsoleteTests.cs │ └── SubscribeToStreamObsoleteTests.cs │ ├── SubscribeToStreamConnectToExistingWithStartFromBeginningTests.cs │ ├── SubscribeToStreamGetInfoTests.cs │ ├── SubscribeToStreamListTests.cs │ ├── SubscribeToStreamNoDefaultCredentialsTests.cs │ ├── SubscribeToStreamReplayParkedTests.cs │ └── SubscribeToStreamTests.cs ├── PositionTests.cs ├── ProjectionManagement ├── DisableProjectionTests.cs ├── EnableProjectionTests.cs ├── GetProjectionResultTests.cs ├── GetProjectionStateTests.cs ├── GetProjectionStatusTests.cs ├── ListAllProjectionsTests.cs ├── ListContinuousProjectionsTests.cs ├── ListOneTimeProjectionsTests.cs ├── ProjectionManagementTests.cs ├── ResetProjectionTests.cs ├── RestartSubsystemTests.cs └── UpdateProjectionTests.cs ├── RegularFilterExpressionTests.cs ├── Security ├── AllStreamWithNoAclSecurityTests.cs ├── DeleteStreamSecurityTests.cs ├── MultipleRoleSecurityTests.cs ├── OverridenSystemStreamSecurityForAllTests.cs ├── OverridenSystemStreamSecurityTests.cs ├── OverridenUserStreamSecurityTests.cs ├── ReadAllSecurityTests.cs ├── ReadStreamMetaSecurityTests.cs ├── ReadStreamSecurityTests.cs ├── SecurityFixture.cs ├── StreamSecurityInheritanceTests.cs ├── SubscribeToAllSecurityTests.cs ├── SubscribeToStreamSecurityTests.cs ├── SystemStreamSecurityTests.cs ├── WriteStreamMetaSecurityTests.cs └── WriteStreamSecurityTests.cs ├── SharingProviderTests.cs ├── StreamPositionTests.cs ├── StreamStateTests.cs ├── Streams ├── AppendTests.cs ├── Bugs │ └── Obsolete │ │ ├── Issue104.cs │ │ └── Issue2544.cs ├── DeleteTests.cs ├── MultiStreamAppendTests.cs ├── Read │ ├── EventBinaryData.cs │ ├── EventDataComparer.cs │ ├── ReadAllEventsBackwardTests.cs │ ├── ReadAllEventsFixture.cs │ ├── ReadAllEventsForwardTests.cs │ ├── ReadStreamBackwardTests.cs │ ├── ReadStreamEventsLinkedToDeletedStreamTests.cs │ ├── ReadStreamForwardTests.cs │ └── ReadStreamWhenHavingMaxCountSetForStreamTests.cs ├── SoftDeleteTests.cs ├── StreamMetadataTests.cs ├── SubscriptionFilter.cs └── Subscriptions │ ├── Obsolete │ ├── SubscribeToAllObsoleteTests.cs │ └── SubscribeToStreamObsoleteTests.cs │ ├── SubscribeToAllTests.cs │ ├── SubscribeToStreamTests.cs │ └── SubscriptionDroppedResult.cs ├── UserManagement ├── ChangePasswordTests.cs ├── CreateUserTests.cs ├── DeleteUserTests.cs ├── DisableUserTests.cs ├── EnableUserTests.cs ├── GetCurrentUserTests.cs ├── ListUserTests.cs ├── ResettingUserPasswordTests.cs └── UserCredentialsTests.cs ├── UuidTests.cs ├── ValueObjectTests.cs └── X509CertificatesTests.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/cherry-pick-pr-for-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/workflows/cherry-pick-pr-for-label.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/load-configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/workflows/load-configuration.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /KurrentDB.Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/KurrentDB.Client.sln -------------------------------------------------------------------------------- /KurrentDB.Client.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/KurrentDB.Client.sln.DotSettings -------------------------------------------------------------------------------- /KurrentLogo-Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/KurrentLogo-Black.png -------------------------------------------------------------------------------- /KurrentLogo-Plum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/KurrentLogo-Plum.png -------------------------------------------------------------------------------- /KurrentLogo-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/KurrentLogo-White.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/README.md -------------------------------------------------------------------------------- /docs/.eslintignore: -------------------------------------------------------------------------------- 1 | !.vuepress/ 2 | !.*.js 3 | .cache/ 4 | .temp/ 5 | node_modules/ 6 | dist/ -------------------------------------------------------------------------------- /docs/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.eslintrc.cjs -------------------------------------------------------------------------------- /docs/.node-version: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /docs/.vuepress/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/client.ts -------------------------------------------------------------------------------- /docs/.vuepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/config.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/configs/theme.ts -------------------------------------------------------------------------------- /docs/.vuepress/lib/externalPlaceholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/lib/externalPlaceholders.ts -------------------------------------------------------------------------------- /docs/.vuepress/lib/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/lib/log.ts -------------------------------------------------------------------------------- /docs/.vuepress/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/lib/types.ts -------------------------------------------------------------------------------- /docs/.vuepress/lib/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/lib/version.ts -------------------------------------------------------------------------------- /docs/.vuepress/lib/versioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/lib/versioning.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/linkCheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/linkCheck/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/replaceLink/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/replaceLink/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/resolver.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/types.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/xode/createImportCodeBlockRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/xode/createImportCodeBlockRule.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/xode/importCodePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/xode/importCodePlugin.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/xode/normalizeWhitespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/xode/normalizeWhitespace.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/xode/resolveImportCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/xode/resolveImportCode.ts -------------------------------------------------------------------------------- /docs/.vuepress/markdown/xode/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/markdown/xode/types.ts -------------------------------------------------------------------------------- /docs/.vuepress/public/Kurrent Logo - Black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/Kurrent Logo - Black.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/Kurrent Logo - Plum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/Kurrent Logo - Plum.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/Kurrent Logo - White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/Kurrent Logo - White.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/cloud.png -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/favicon.png -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Bold.woff -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Bold.woff2 -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Light.woff -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Light.woff2 -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Medium.woff -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Medium.woff2 -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Regular.woff -------------------------------------------------------------------------------- /docs/.vuepress/public/fonts/Solina-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/fonts/Solina-Regular.woff2 -------------------------------------------------------------------------------- /docs/.vuepress/public/js/snippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/js/snippet.js -------------------------------------------------------------------------------- /docs/.vuepress/public/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/logo-white.png -------------------------------------------------------------------------------- /docs/.vuepress/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/robots.txt -------------------------------------------------------------------------------- /docs/.vuepress/public/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/public/video.png -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/styles/index.scss -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/.vuepress/styles/palette.scss -------------------------------------------------------------------------------- /docs/api/appending-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/appending-events.md -------------------------------------------------------------------------------- /docs/api/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/authentication.md -------------------------------------------------------------------------------- /docs/api/delete-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/delete-stream.md -------------------------------------------------------------------------------- /docs/api/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/getting-started.md -------------------------------------------------------------------------------- /docs/api/observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/observability.md -------------------------------------------------------------------------------- /docs/api/persistent-subscriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/persistent-subscriptions.md -------------------------------------------------------------------------------- /docs/api/projections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/projections.md -------------------------------------------------------------------------------- /docs/api/reading-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/reading-events.md -------------------------------------------------------------------------------- /docs/api/subscriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/api/subscriptions.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /gencert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/gencert.ps1 -------------------------------------------------------------------------------- /gencert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/gencert.sh -------------------------------------------------------------------------------- /ouro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/ouro.png -------------------------------------------------------------------------------- /ouro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/ouro.svg -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/Samples.sln -------------------------------------------------------------------------------- /samples/Samples.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/Samples.sln.DotSettings -------------------------------------------------------------------------------- /samples/appending-events/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/appending-events/Program.cs -------------------------------------------------------------------------------- /samples/appending-events/appending-events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/appending-events/appending-events.csproj -------------------------------------------------------------------------------- /samples/connecting-to-a-cluster/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/connecting-to-a-cluster/Program.cs -------------------------------------------------------------------------------- /samples/connecting-to-a-cluster/connecting-to-a-cluster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/connecting-to-a-cluster/connecting-to-a-cluster.csproj -------------------------------------------------------------------------------- /samples/connecting-to-a-single-node/DemoInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/connecting-to-a-single-node/DemoInterceptor.cs -------------------------------------------------------------------------------- /samples/connecting-to-a-single-node/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/connecting-to-a-single-node/Program.cs -------------------------------------------------------------------------------- /samples/connecting-to-a-single-node/connecting-to-a-single-node.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/connecting-to-a-single-node/connecting-to-a-single-node.csproj -------------------------------------------------------------------------------- /samples/diagnostics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/diagnostics/Program.cs -------------------------------------------------------------------------------- /samples/diagnostics/diagnostics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/diagnostics/diagnostics.csproj -------------------------------------------------------------------------------- /samples/persistent-subscriptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/persistent-subscriptions/Program.cs -------------------------------------------------------------------------------- /samples/persistent-subscriptions/persistent-subscriptions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/persistent-subscriptions/persistent-subscriptions.csproj -------------------------------------------------------------------------------- /samples/projection-management/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/projection-management/Program.cs -------------------------------------------------------------------------------- /samples/projection-management/projection-management.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/projection-management/projection-management.csproj -------------------------------------------------------------------------------- /samples/quick-start/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/quick-start/Program.cs -------------------------------------------------------------------------------- /samples/quick-start/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/quick-start/docker-compose.yml -------------------------------------------------------------------------------- /samples/quick-start/quick-start.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/quick-start/quick-start.csproj -------------------------------------------------------------------------------- /samples/reading-events/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/reading-events/Program.cs -------------------------------------------------------------------------------- /samples/reading-events/reading-events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/reading-events/reading-events.csproj -------------------------------------------------------------------------------- /samples/secure-with-tls/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/.dockerignore -------------------------------------------------------------------------------- /samples/secure-with-tls/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/Dockerfile -------------------------------------------------------------------------------- /samples/secure-with-tls/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/Program.cs -------------------------------------------------------------------------------- /samples/secure-with-tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/README.md -------------------------------------------------------------------------------- /samples/secure-with-tls/create-certs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/create-certs.ps1 -------------------------------------------------------------------------------- /samples/secure-with-tls/create-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/create-certs.sh -------------------------------------------------------------------------------- /samples/secure-with-tls/docker-compose.app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/docker-compose.app.yml -------------------------------------------------------------------------------- /samples/secure-with-tls/docker-compose.certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/docker-compose.certs.yml -------------------------------------------------------------------------------- /samples/secure-with-tls/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/docker-compose.yml -------------------------------------------------------------------------------- /samples/secure-with-tls/run-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/run-app.sh -------------------------------------------------------------------------------- /samples/secure-with-tls/secure-with-tls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/secure-with-tls/secure-with-tls.csproj -------------------------------------------------------------------------------- /samples/server-side-filtering/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/server-side-filtering/Program.cs -------------------------------------------------------------------------------- /samples/server-side-filtering/server-side-filtering.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/server-side-filtering/server-side-filtering.csproj -------------------------------------------------------------------------------- /samples/setting-up-dependency-injection/Controllers/EventStoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/setting-up-dependency-injection/Controllers/EventStoreController.cs -------------------------------------------------------------------------------- /samples/setting-up-dependency-injection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/setting-up-dependency-injection/Program.cs -------------------------------------------------------------------------------- /samples/setting-up-dependency-injection/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/setting-up-dependency-injection/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/setting-up-dependency-injection/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/setting-up-dependency-injection/Startup.cs -------------------------------------------------------------------------------- /samples/setting-up-dependency-injection/setting-up-dependency-injection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/setting-up-dependency-injection/setting-up-dependency-injection.csproj -------------------------------------------------------------------------------- /samples/subscribing-to-streams/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/subscribing-to-streams/Program.cs -------------------------------------------------------------------------------- /samples/subscribing-to-streams/subscribing-to-streams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/subscribing-to-streams/subscribing-to-streams.csproj -------------------------------------------------------------------------------- /samples/user-certificates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/user-certificates/Program.cs -------------------------------------------------------------------------------- /samples/user-certificates/user-certificates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/samples/user-certificates/user-certificates.csproj -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Certificates/X509Certificates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Certificates/X509Certificates.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ChannelBaseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ChannelBaseExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ChannelCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ChannelCache.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ChannelFactory.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ChannelInfo.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ChannelSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ChannelSelector.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ClusterMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ClusterMessage.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/AsyncStreamReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/AsyncStreamReaderExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Constants.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/ActivitySourceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/ActivitySourceExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/ActivityTagsCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/ActivityTagsCollectionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityStatus.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityStatusCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityStatusCodeHelper.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityTagsCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/ActivityTagsCollectionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/Telemetry/TelemetryTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/Telemetry/TelemetryTags.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/Tracing/TracingConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/Tracing/TracingConstants.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Core/Tracing/TracingMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Core/Tracing/TracingMetadata.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/EventMetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/EventMetadataExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/KurrentDBClientDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/KurrentDBClientDiagnostics.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Telemetry/TelemetryTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Telemetry/TelemetryTags.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Diagnostics/Tracing/TracingConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Diagnostics/Tracing/TracingConstants.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/EnumerableTaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/EnumerableTaskExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/EpochExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/EpochExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/KurrentDBCallOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/KurrentDBCallOptions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/MetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/MetadataExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Shims/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Shims/Index.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Shims/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Shims/IsExternalInit.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Shims/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Shims/Range.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Common/Shims/TaskCompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Common/Shims/TaskCompletionSource.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/DefaultRequestVersionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/DefaultRequestVersionHandler.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/EndPointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/EndPointExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/EventData.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/EventRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/EventRecord.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/EventTypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/EventTypeFilter.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/AccessDeniedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/AccessDeniedException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/AppendTransactionMaxSizeExceededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/AppendTransactionMaxSizeExceededException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/ConnectionStringParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/ConnectionStringParseException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/DuplicateKeyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/DuplicateKeyException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidClientCertificateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidClientCertificateException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidHostException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidHostException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidKeyValuePairException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidKeyValuePairException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidSchemeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidSchemeException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidSettingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidSettingException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidUserCredentialsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/InvalidUserCredentialsException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ConnectionString/NoSchemeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ConnectionString/NoSchemeException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/DiscoveryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/DiscoveryException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/NotAuthenticatedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/NotAuthenticatedException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/NotLeaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/NotLeaderException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/RequiredMetadataPropertyMissingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/RequiredMetadataPropertyMissingException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/ScavengeNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/ScavengeNotFoundException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/StreamDeletedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/StreamDeletedException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/StreamNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/StreamNotFoundException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/StreamTombstonedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/StreamTombstonedException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/UserNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/UserNotFoundException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Exceptions/WrongExpectedVersionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Exceptions/WrongExpectedVersionException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/FromAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/FromAll.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/FromStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/FromStream.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/GossipChannelSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/GossipChannelSelector.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/GrpcGossipClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/GrpcGossipClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/GrpcServerCapabilitiesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/GrpcServerCapabilitiesClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/HashCode.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/HttpFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/HttpFallback.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/IChannelSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/IChannelSelector.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/IEventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/IEventFilter.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/IGossipClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/IGossipClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/IPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/IPosition.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/IServerCapabilitiesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/IServerCapabilitiesClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Interceptors/ConnectionNameInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Interceptors/ConnectionNameInterceptor.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Interceptors/ReportLeaderInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Interceptors/ReportLeaderInterceptor.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Interceptors/RequiresLeaderInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Interceptors/RequiresLeaderInterceptor.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Interceptors/TypedExceptionInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Interceptors/TypedExceptionInterceptor.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Internal/Exceptions/Utf8JsonReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Internal/Exceptions/Utf8JsonReaderExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Internal/SystemTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Internal/SystemTypes.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/KurrentDBClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/KurrentDBClientBase.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/KurrentDBClientConnectivitySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/KurrentDBClientConnectivitySettings.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/KurrentDBClientOperationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/KurrentDBClientOperationOptions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/KurrentDBClientSettings.ConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/KurrentDBClientSettings.ConnectionString.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/KurrentDBClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/KurrentDBClientSettings.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/NodePreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/NodePreference.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/NodePreferenceComparers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/NodePreferenceComparers.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/NodeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/NodeSelector.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Position.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/PrefixFilterExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/PrefixFilterExpression.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ReconnectionRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ReconnectionRequired.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/RegularFilterExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/RegularFilterExpression.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ResolvedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ResolvedEvent.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ServerCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ServerCapabilities.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/SharingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/SharingProvider.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/SingleNodeChannelSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/SingleNodeChannelSelector.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/SingleNodeHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/SingleNodeHttpHandler.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/StreamFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/StreamFilter.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/StreamIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/StreamIdentifier.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/StreamPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/StreamPosition.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/StreamState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/StreamState.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/SubscriptionDroppedReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/SubscriptionDroppedReason.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/SystemRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/SystemRoles.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/SystemStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/SystemStreams.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/TaskExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/UserCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/UserCredentials.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/Uuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/Uuid.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/ValueMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/ValueMapper.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrent/rpc/errors.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrent/rpc/errors.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrent/rpc/rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrent/rpc/rpc.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/gossip.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/gossip.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/operations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/operations.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/persistentsubscriptions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/persistentsubscriptions.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/projectionmanagement.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/projectionmanagement.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/serverfeatures.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/serverfeatures.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/shared.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/shared.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/streams.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/streams.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/usermanagement.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v1/usermanagement.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v2/streams/errors.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v2/streams/errors.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v2/streams/streams.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Core/proto/kurrentdb/protocol/v2/streams/streams.proto -------------------------------------------------------------------------------- /src/KurrentDB.Client/KurrentDB.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/KurrentDB.Client.csproj -------------------------------------------------------------------------------- /src/KurrentDB.Client/OpenTelemetry/TracerProviderBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/OpenTelemetry/TracerProviderBuilderExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Operations/DatabaseScavengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Operations/DatabaseScavengeResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Operations/KurrentDBOperationsClient.Admin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Operations/KurrentDBOperationsClient.Admin.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Operations/KurrentDBOperationsClient.Scavenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Operations/KurrentDBOperationsClient.Scavenge.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Operations/KurrentDBOperationsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Operations/KurrentDBOperationsClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Operations/KurrentDBOperationsClientServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Operations/KurrentDBOperationsClientServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Operations/ScavengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Operations/ScavengeResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Create.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Delete.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Info.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.List.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Read.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.ReplayParked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.ReplayParked.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.RestartSubsystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.RestartSubsystem.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.Update.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClientCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/KurrentDBPersistentSubscriptionsClientCollectionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/MaximumSubscribersReachedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/MaximumSubscribersReachedException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscription.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionDroppedByServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionDroppedByServerException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionExtraStatistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionExtraStatistic.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionInfo.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionMessage.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionNakEventAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionNakEventAction.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionNotFoundException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/PersistentSubscriptionSettings.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/PersistentSubscriptions/SystemConsumerStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/PersistentSubscriptions/SystemConsumerStrategies.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Control.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Create.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.State.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Statistics.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.Update.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClientCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/KurrentDBProjectionManagementClientCollectionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/ProjectionManagement/ProjectionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/ProjectionManagement/ProjectionDetails.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/AppendRecordSizeExceededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/AppendRecordSizeExceededException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/ConditionalWriteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/ConditionalWriteResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/ConditionalWriteStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/ConditionalWriteStatus.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/DeadLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/DeadLine.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/DeleteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/DeleteResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Direction.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/IWriteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/IWriteResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/InvalidTransactionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/InvalidTransactionException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.Append.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.Append.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.Delete.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.Metadata.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.MultiAppend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.MultiAppend.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.Read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.Read.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.Subscriptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.Subscriptions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.Tombstone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.Tombstone.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClientExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/KurrentDBClientServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/KurrentDBClientServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/MaximumAppendSizeExceededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/MaximumAppendSizeExceededException.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/MultiStreamAppend.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/MultiStreamAppend.Extensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/ReadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/ReadState.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/StreamAcl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/StreamAcl.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/StreamAclJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/StreamAclJsonConverter.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/StreamMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/StreamMessage.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/StreamMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/StreamMetadata.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/StreamMetadataJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/StreamMetadataJsonConverter.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/StreamMetadataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/StreamMetadataResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/StreamSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/StreamSubscription.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/AppendReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/AppendReq.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/BatchAppendReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/BatchAppendReq.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/BatchAppendResp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/BatchAppendResp.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/DeleteReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/DeleteReq.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/Model/SchemaDataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/Model/SchemaDataFormat.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/Model/StreamsClientMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/Model/StreamsClientMapper.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/Model/StreamsClientModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/Model/StreamsClientModel.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/ReadReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/ReadReq.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/Streams/TombstoneReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/Streams/TombstoneReq.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/SubscriptionFilterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/SubscriptionFilterOptions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/SuccessResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/SystemEventTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/SystemEventTypes.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/SystemMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/SystemMetadata.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/SystemSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/SystemSettings.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/SystemSettingsJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/SystemSettingsJsonConverter.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/WriteResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/WriteResultExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/Streams/WrongExpectedVersionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/Streams/WrongExpectedVersionResult.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/UserManagement/KurrentDBUserManagementClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/UserManagement/KurrentDBUserManagementClient.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/UserManagement/KurrentDBUserManagementClientCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/UserManagement/KurrentDBUserManagementClientCollectionExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/UserManagement/KurrentDBUserManagerClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/UserManagement/KurrentDBUserManagerClientExtensions.cs -------------------------------------------------------------------------------- /src/KurrentDB.Client/UserManagement/UserDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/src/KurrentDB.Client/UserManagement/UserDetails.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/.env -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/ApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/ApplicationInfo.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/AssertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/AssertEx.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Certificates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Certificates.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/AsyncEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/AsyncEnumerableExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/KurrentDBClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/KurrentDBClientExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/KurrentDBClientWarmupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/KurrentDBClientWarmupExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/OperatingSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/OperatingSystemExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/ReadOnlyMemoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/ReadOnlyMemoryExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/ShouldThrowAsyncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/ShouldThrowAsyncExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Extensions/WithExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Extensions/WithExtension.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Facts/AnonymousAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Facts/AnonymousAccess.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Facts/Deprecation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Facts/Deprecation.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Facts/MinimumVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Facts/MinimumVersion.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Facts/Regression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Facts/Regression.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fakers/TestUserFaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fakers/TestUserFaker.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/CertificatesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/CertificatesManager.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/DiagnosticsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/DiagnosticsFixture.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBFixtureOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBFixtureOptions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBPermanentFixture.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBPermanentFixture.Helpers.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBPermanentFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBPermanentFixture.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBPermanentTestNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBPermanentTestNode.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBTemporaryFixture.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBTemporaryFixture.Helpers.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBTemporaryFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBTemporaryFixture.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBTemporaryTestNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Fixtures/KurrentDBTemporaryTestNode.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/FluentDocker/FluentDockerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/FluentDocker/FluentDockerBuilderExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/FluentDocker/FluentDockerServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/FluentDocker/FluentDockerServiceExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/FluentDocker/TestBypassService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/FluentDocker/TestBypassService.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/FluentDocker/TestCompositeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/FluentDocker/TestCompositeService.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/FluentDocker/TestContainerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/FluentDocker/TestContainerService.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/FluentDocker/TestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/FluentDocker/TestService.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/GlobalEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/GlobalEnvironment.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/InterlockedBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/InterlockedBoolean.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/KurrentDB.Client.Tests.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/KurrentDB.Client.Tests.Common.csproj -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Logging.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/PasswordGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/PasswordGenerator.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/Shouldly/ShouldThrowAsyncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/Shouldly/ShouldThrowAsyncExtensions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/TestCaseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/TestCaseGenerator.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/TestCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/TestCredentials.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/appsettings.Development.json -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/appsettings.json -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/docker-compose.certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/docker-compose.certs.yml -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/docker-compose.cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/docker-compose.cluster.yml -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/docker-compose.node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/docker-compose.node.yml -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.Common/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.Common/docker-compose.yml -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.ExternalAssembly/ExternalEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.ExternalAssembly/ExternalEvents.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.ExternalAssembly/KurrentDB.Client.Tests.ExternalAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.ExternalAssembly/KurrentDB.Client.Tests.ExternalAssembly.csproj -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.NeverLoadedAssembly/KurrentDB.Client.Tests.NeverLoadedAssembly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.NeverLoadedAssembly/KurrentDB.Client.Tests.NeverLoadedAssembly.csproj -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests.NeverLoadedAssembly/NotLoadedExternalEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests.NeverLoadedAssembly/NotLoadedExternalEvent.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Assertions/ComparableAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Assertions/ComparableAssertion.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Assertions/EqualityAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Assertions/EqualityAssertion.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Assertions/NullArgumentAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Assertions/NullArgumentAssertion.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Assertions/StringConversionAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Assertions/StringConversionAssertion.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Assertions/ValueObjectAssertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Assertions/ValueObjectAssertion.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/AutoScenarioDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/AutoScenarioDataAttribute.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ClientCertificatesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ClientCertificatesTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ConnectionStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ConnectionStringTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Diagnostics/PersistentSubscriptionsTracingInstrumentationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Diagnostics/PersistentSubscriptionsTracingInstrumentationTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Diagnostics/StreamsTracingInstrumentationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Diagnostics/StreamsTracingInstrumentationTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/FromAllTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/FromAllTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/FromStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/FromStreamTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/GossipChannelSelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/GossipChannelSelectorTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/GrpcServerCapabilitiesClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/GrpcServerCapabilitiesClientTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/InvalidCredentialsTestCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/InvalidCredentialsTestCases.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/KurrentDB.Client.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/KurrentDB.Client.Tests.csproj -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/KurrentDBClientOperationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/KurrentDBClientOperationsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/NodePreferenceComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/NodePreferenceComparerTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/NodeSelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/NodeSelectorTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Operations/AuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Operations/AuthenticationTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Operations/MergeIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Operations/MergeIndexTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Operations/ResignNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Operations/ResignNodeTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Operations/RestartPersistentSubscriptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Operations/RestartPersistentSubscriptionsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Operations/ScavengeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Operations/ScavengeTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Operations/ShutdownNodeAuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Operations/ShutdownNodeAuthenticationTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Operations/ShutdownNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Operations/ShutdownNodeTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/FilterTestCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/FilterTestCases.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllConnectToExistingWithStartFromNotSetObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllConnectToExistingWithStartFromNotSetObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllConnectToExistingWithStartFromSetToEndPositionObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllConnectToExistingWithStartFromSetToEndPositionObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllConnectWithoutReadPermissionsObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllConnectWithoutReadPermissionsObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllFilterObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllFilterObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllGetInfoObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllGetInfoObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllListWithIncorrectCredentialsObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllListWithIncorrectCredentialsObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllNoDefaultCredentialsObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllNoDefaultCredentialsObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllReplayParkedObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllReplayParkedObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllResultWithNormalUserCredentialsObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllResultWithNormalUserCredentialsObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllReturnsAllSubscriptionsObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllReturnsAllSubscriptionsObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllReturnsSubscriptionsToAllStreamObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllReturnsSubscriptionsToAllStreamObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllUpdateExistingWithCheckpointObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllUpdateExistingWithCheckpointObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllWithoutPSObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/Obsolete/SubscribeToAllWithoutPSObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllConnectToExistingWithStartFromNotSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllConnectToExistingWithStartFromNotSetTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllConnectToExistingWithStartFromSetToEndPositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllConnectToExistingWithStartFromSetToEndPositionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllConnectWithoutReadPermissionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllConnectWithoutReadPermissionsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllFilterTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllGetInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllGetInfoTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllListWithIncorrectCredentialsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllListWithIncorrectCredentialsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllNoDefaultCredentialsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllNoDefaultCredentialsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllReplayParkedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllReplayParkedTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllResultWithNormalUserCredentialsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllResultWithNormalUserCredentialsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllReturnsAllSubscriptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllReturnsAllSubscriptions.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllReturnsSubscriptionsToAllStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllReturnsSubscriptionsToAllStreamTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllUpdateExistingWithCheckpointTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllUpdateExistingWithCheckpointTest.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllWithoutPSTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToAll/SubscribeToAllWithoutPSTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/Obsolete/SubscribeToStreamConnectToExistingWithoutPermissionObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/Obsolete/SubscribeToStreamConnectToExistingWithoutPermissionObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/Obsolete/SubscribeToStreamGetInfoObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/Obsolete/SubscribeToStreamGetInfoObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/Obsolete/SubscribeToStreamObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/Obsolete/SubscribeToStreamObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamConnectToExistingWithStartFromBeginningTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamConnectToExistingWithStartFromBeginningTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamGetInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamGetInfoTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamListTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamNoDefaultCredentialsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamNoDefaultCredentialsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamReplayParkedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamReplayParkedTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PersistentSubscriptions/SubscribeToStream/SubscribeToStreamTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/PositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/PositionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/DisableProjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/DisableProjectionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/EnableProjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/EnableProjectionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/GetProjectionResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/GetProjectionResultTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/GetProjectionStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/GetProjectionStateTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/GetProjectionStatusTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/GetProjectionStatusTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/ListAllProjectionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/ListAllProjectionsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/ListContinuousProjectionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/ListContinuousProjectionsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/ListOneTimeProjectionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/ListOneTimeProjectionsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/ProjectionManagementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/ProjectionManagementTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/ResetProjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/ResetProjectionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/RestartSubsystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/RestartSubsystemTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ProjectionManagement/UpdateProjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ProjectionManagement/UpdateProjectionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/RegularFilterExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/RegularFilterExpressionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/AllStreamWithNoAclSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/AllStreamWithNoAclSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/DeleteStreamSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/DeleteStreamSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/MultipleRoleSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/MultipleRoleSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/OverridenSystemStreamSecurityForAllTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/OverridenSystemStreamSecurityForAllTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/OverridenSystemStreamSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/OverridenSystemStreamSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/OverridenUserStreamSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/OverridenUserStreamSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/ReadAllSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/ReadAllSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/ReadStreamMetaSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/ReadStreamMetaSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/ReadStreamSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/ReadStreamSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/SecurityFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/SecurityFixture.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/StreamSecurityInheritanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/StreamSecurityInheritanceTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/SubscribeToAllSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/SubscribeToAllSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/SubscribeToStreamSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/SubscribeToStreamSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/SystemStreamSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/SystemStreamSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/WriteStreamMetaSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/WriteStreamMetaSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Security/WriteStreamSecurityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Security/WriteStreamSecurityTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/SharingProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/SharingProviderTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/StreamPositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/StreamPositionTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/StreamStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/StreamStateTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/AppendTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/AppendTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Bugs/Obsolete/Issue104.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Bugs/Obsolete/Issue104.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Bugs/Obsolete/Issue2544.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Bugs/Obsolete/Issue2544.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/DeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/DeleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/MultiStreamAppendTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/MultiStreamAppendTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/EventBinaryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/EventBinaryData.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/EventDataComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/EventDataComparer.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/ReadAllEventsBackwardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/ReadAllEventsBackwardTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/ReadAllEventsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/ReadAllEventsFixture.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/ReadAllEventsForwardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/ReadAllEventsForwardTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/ReadStreamBackwardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/ReadStreamBackwardTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/ReadStreamEventsLinkedToDeletedStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/ReadStreamEventsLinkedToDeletedStreamTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/ReadStreamForwardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/ReadStreamForwardTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Read/ReadStreamWhenHavingMaxCountSetForStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Read/ReadStreamWhenHavingMaxCountSetForStreamTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/SoftDeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/SoftDeleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/StreamMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/StreamMetadataTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/SubscriptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/SubscriptionFilter.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Subscriptions/Obsolete/SubscribeToAllObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Subscriptions/Obsolete/SubscribeToAllObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Subscriptions/Obsolete/SubscribeToStreamObsoleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Subscriptions/Obsolete/SubscribeToStreamObsoleteTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Subscriptions/SubscribeToAllTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Subscriptions/SubscribeToAllTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Subscriptions/SubscribeToStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Subscriptions/SubscribeToStreamTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/Streams/Subscriptions/SubscriptionDroppedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/Streams/Subscriptions/SubscriptionDroppedResult.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/ChangePasswordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/ChangePasswordTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/CreateUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/CreateUserTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/DeleteUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/DeleteUserTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/DisableUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/DisableUserTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/EnableUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/EnableUserTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/GetCurrentUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/GetCurrentUserTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/ListUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/ListUserTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/ResettingUserPasswordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/ResettingUserPasswordTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UserManagement/UserCredentialsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UserManagement/UserCredentialsTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/UuidTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/UuidTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/ValueObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/ValueObjectTests.cs -------------------------------------------------------------------------------- /test/KurrentDB.Client.Tests/X509CertificatesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurrent-io/KurrentDB-Client-Dotnet/HEAD/test/KurrentDB.Client.Tests/X509CertificatesTests.cs --------------------------------------------------------------------------------