├── .gitattributes ├── .gitignore ├── .nav ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── Jenkinsfile.scheduled ├── LICENSE.md ├── NOTICE ├── README.md ├── appveyor.yml ├── doc ├── api-docs │ ├── README.md │ ├── docfx.json │ ├── index.md │ └── toc.yml ├── examples │ └── README.md ├── faq │ └── README.md ├── features │ ├── README.md │ ├── address-resolution │ │ └── README.md │ ├── auth │ │ └── README.md │ ├── automatic-failover │ │ └── README.md │ ├── cloud │ │ └── README.md │ ├── column-encryption │ │ └── README.md │ ├── components │ │ ├── README.md │ │ ├── adonet │ │ │ └── README.md │ │ ├── core │ │ │ ├── README.md │ │ │ └── statements │ │ │ │ ├── README.md │ │ │ │ ├── batch │ │ │ │ └── README.md │ │ │ │ ├── per_query_keyspace │ │ │ │ └── README.md │ │ │ │ ├── prepared │ │ │ │ └── README.md │ │ │ │ └── simple │ │ │ │ └── README.md │ │ ├── linq │ │ │ ├── README.md │ │ │ └── batch │ │ │ │ └── README.md │ │ └── mapper │ │ │ ├── README.md │ │ │ └── batch │ │ │ └── README.md │ ├── connection-heartbeat │ │ └── README.md │ ├── connection-pooling │ │ └── README.md │ ├── datatypes │ │ ├── README.md │ │ ├── datetime │ │ │ └── README.md │ │ └── nulls-unset │ │ │ └── README.md │ ├── execution-profiles │ │ └── README.md │ ├── geotypes │ │ └── README.md │ ├── graph-support │ │ └── README.md │ ├── metadata │ │ └── README.md │ ├── metrics │ │ ├── README.md │ │ ├── app-metrics │ │ │ └── README.md │ │ └── metrics-list │ │ │ └── README.md │ ├── native-protocol │ │ └── README.md │ ├── opentelemetry │ │ └── README.md │ ├── paging │ │ └── README.md │ ├── parametrized-queries │ │ └── README.md │ ├── query-timestamps │ │ └── README.md │ ├── query-warnings │ │ └── README.md │ ├── request-tracker │ │ └── README.md │ ├── routing-queries │ │ └── README.md │ ├── speculative-retries │ │ └── README.md │ ├── tls │ │ └── README.md │ ├── tuning-policies │ │ └── README.md │ ├── udfs │ │ └── README.md │ ├── udts │ │ └── README.md │ └── vectors │ │ └── README.md └── upgrade-guide │ ├── README.md │ └── upgrade-from-dse-driver │ └── README.md ├── docs.yaml ├── doxyfile ├── examples ├── ColumnEncryption │ └── ColumnEncryptionExample │ │ ├── ColumnEncryptionExample.csproj │ │ └── Program.cs ├── ConcurrentExecutions │ └── ExecuteInLoop │ │ ├── ExecuteInLoop.csproj │ │ └── Program.cs ├── Mapper │ └── MultipleKeyspacesSingleSession │ │ ├── MapperManager.cs │ │ ├── MultipleKeyspacesSingleSession.csproj │ │ ├── Program.cs │ │ └── User.cs ├── Metrics │ └── AppMetricsGraphite │ │ ├── AppMetricsGraphite.csproj │ │ └── Program.cs ├── OpenTelemetry │ ├── DistributedTracing │ │ ├── Api │ │ │ ├── Api.csproj │ │ │ ├── Api.http │ │ │ ├── Controllers │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── WeatherForecast.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ ├── Program.cs │ │ │ └── WeatherForecast.cs │ │ └── README.md │ └── Exporter │ │ └── ConsoleExporter │ │ ├── ConsoleExporter.csproj │ │ └── Program.cs ├── README.MD ├── SecureConnectionBundle │ └── MinimalExample │ │ ├── MinimalExample.csproj │ │ └── Program.cs ├── Ssl │ ├── SslServerAuthOnly │ │ ├── LoadingCertificateManuallyExample.cs │ │ ├── Program.cs │ │ ├── SslServerAuthOnly.csproj │ │ └── WindowsCertificateStoreExample.cs │ └── SslTwoWayAuth │ │ ├── LoadingCertificateManuallyExample.cs │ │ ├── Program.cs │ │ ├── SslTwoWayAuth.csproj │ │ └── WindowsCertificateStoreExample.cs └── examples.sln ├── proposals └── open-telemetry │ ├── system-architecture-example.drawio │ ├── system-architecture-example.png │ ├── system-architecture-trace-timeline.png │ └── tracing-rfc.md ├── src ├── .editorconfig ├── Cassandra.IntegrationTests │ ├── .editorconfig │ ├── Ado │ │ └── AdoBasicTests.cs │ ├── BaseIntegrationTest.cs │ ├── Cassandra.IntegrationTests.csproj │ ├── CommonFixtureSetup.cs │ ├── Core │ │ ├── BasicTypeTests.cs │ │ ├── BatchStatementSimulacron.cs │ │ ├── BatchStatements.cs │ │ ├── BuilderSimulacronTests.cs │ │ ├── ClientTimeoutTests.cs │ │ ├── ClientWarningsTests.cs │ │ ├── ClusterPeersV2SimulacronTests.cs │ │ ├── ClusterSimulacronTests.cs │ │ ├── ClusterTests.cs │ │ ├── CollectionsNestedTests.cs │ │ ├── CollectionsTests.cs │ │ ├── CompressionTests.cs │ │ ├── ConnectionSimulacronTests.cs │ │ ├── ConnectionTests.cs │ │ ├── ConnectionTimeoutTest.cs │ │ ├── ConsistencyTests.cs │ │ ├── ControlConnectionSimulatorTests.cs │ │ ├── ControlConnectionTests.cs │ │ ├── CustomPayloadTests.cs │ │ ├── EmptyColumnTests.cs │ │ ├── ExceptionsTests.cs │ │ ├── HeartbeatTests.cs │ │ ├── LargeDataTests.cs │ │ ├── MemoryLeakTests.cs │ │ ├── MetadataTests.cs │ │ ├── MultiThreadingTests.cs │ │ ├── PagingTests.cs │ │ ├── ParameterizedStatementsTests.cs │ │ ├── PoolShortTests.cs │ │ ├── PoolTests.cs │ │ ├── PrepareLongTests.cs │ │ ├── PrepareSimulatorTests.cs │ │ ├── PreparedStatementsTests.cs │ │ ├── ReconnectionTests.cs │ │ ├── SchemaAgreementSimulacronTests.cs │ │ ├── SchemaAgreementTests.cs │ │ ├── SchemaMetadataTests.cs │ │ ├── SessionAuthenticationTests.cs │ │ ├── SessionExecuteAsyncTests.cs │ │ ├── SessionStateTests.cs │ │ ├── SessionTests.cs │ │ ├── SimulacronHealthTest.cs │ │ ├── SpeculativeExecutionLongTests.cs │ │ ├── SpeculativeExecutionShortTests.cs │ │ ├── StressTests.cs │ │ ├── TimeUuidSerializationTests.cs │ │ ├── TimestampTests.cs │ │ ├── TransitionalAuthenticationTests.cs │ │ ├── TupleTests.cs │ │ ├── TypeSerializersTests.cs │ │ ├── UdfTests.cs │ │ └── UdtMappingsTests.cs │ ├── CqlFunctions │ │ ├── Structures │ │ │ ├── EntityWithNullableTimeUuid.cs │ │ │ └── EntityWithTimeUuid.cs │ │ └── Tests │ │ │ ├── MaxTimeUuid.cs │ │ │ ├── MinTimeUuid.cs │ │ │ └── Token.cs │ ├── DataStax │ │ ├── Auth │ │ │ ├── DseGssapiAuthProviderTests.cs │ │ │ ├── ProxyAuthenticationTests.cs │ │ │ ├── SessionDseAuthenticationTests.cs │ │ │ └── SspiClientTests.cs │ │ ├── Cloud │ │ │ └── CloudIntegrationTests.cs │ │ ├── Graph │ │ │ ├── CoreGraphTests.cs │ │ │ ├── GraphMultiNodeTests.cs │ │ │ └── GraphTests.cs │ │ ├── Insights │ │ │ └── InsightsIntegrationTests.cs │ │ └── Search │ │ │ └── DateRangeTests.cs │ ├── DurationTests.cs │ ├── ExecutionProfiles │ │ ├── ExecutionProfileTests.cs │ │ ├── LinqExecutionProfileTests.cs │ │ └── MapperExecutionProfileTests.cs │ ├── FoundBugs │ │ └── FoundBugTests.cs │ ├── Geometry │ │ ├── GeometryTests.cs │ │ ├── LineStringTests.cs │ │ ├── PointTests.cs │ │ └── PolygonTests.cs │ ├── IntegrationTargetTests.cs │ ├── Linq │ │ ├── CqlOperatorTests │ │ │ ├── Append.cs │ │ │ ├── Prepend.cs │ │ │ └── SubstractAssign.cs │ │ ├── LinqMethods │ │ │ ├── Count.cs │ │ │ ├── Counter.cs │ │ │ ├── Delete.cs │ │ │ ├── DeleteIf.cs │ │ │ ├── First.cs │ │ │ ├── FirstOrDefault.cs │ │ │ ├── GroupByTests.cs │ │ │ ├── InsertTests.cs │ │ │ ├── OrderBy.cs │ │ │ ├── Select.cs │ │ │ ├── TableSelectDefault.cs │ │ │ ├── Take.cs │ │ │ ├── Update.cs │ │ │ ├── UpdateIfTests.cs │ │ │ └── Where.cs │ │ ├── LinqRealClusterTests.cs │ │ ├── LinqTable │ │ │ ├── CreateTable.cs │ │ │ └── GetTable.cs │ │ └── Structures │ │ │ ├── AllDataTypesEntity.cs │ │ │ ├── AllDataTypesEntityUtil.cs │ │ │ ├── AllDataTypesNoColumnMeta.cs │ │ │ ├── EmptyClusteringColumnName.cs │ │ │ ├── EntityWithAllCollectionTypes.cs │ │ │ ├── EntityWithArrayType.cs │ │ │ ├── EntityWithDictionaryType.cs │ │ │ ├── EntityWithListType.cs │ │ │ ├── FollowedTweet.cs │ │ │ ├── IAllDataTypesEntity.cs │ │ │ ├── ManyDataTypesEntity.cs │ │ │ ├── Movie.cs │ │ │ ├── MovieComparer.cs │ │ │ ├── Statistics.cs │ │ │ └── Tweet.cs │ ├── Mapping │ │ ├── Structures │ │ │ ├── Author.cs │ │ │ ├── ContactMethod.cs │ │ │ ├── ManyDataTypesPoco.cs │ │ │ ├── ManyDataTypesPocoMappingCaseSensitive.cs │ │ │ ├── NestedCollectionsPoco.cs │ │ │ ├── RainbowColor.cs │ │ │ ├── ReservedKeywordPoco.cs │ │ │ ├── User.cs │ │ │ ├── UserMapping.cs │ │ │ └── UserType.cs │ │ └── Tests │ │ │ ├── Attributes.cs │ │ │ ├── Counter.cs │ │ │ ├── CqlClientConfig.cs │ │ │ ├── CqlClientTest.cs │ │ │ ├── CreateTable.cs │ │ │ ├── Delete.cs │ │ │ ├── Fetch.cs │ │ │ ├── First.cs │ │ │ ├── FluentMapping.cs │ │ │ ├── InsertTests.cs │ │ │ ├── Single.cs │ │ │ └── Update.cs │ ├── MetadataTests │ │ ├── TokenMapSchemaChangeMetadataSyncTests.cs │ │ ├── TokenMapSchemaChangeTests.cs │ │ └── TokenMapTopologyChangeTests.cs │ ├── Metrics │ │ └── MetricsTests.cs │ ├── OpenTelemetry │ │ └── OpenTelemetryTests.cs │ ├── Policies │ │ ├── Tests │ │ │ ├── ColumnEncryptionPolicyTests.cs │ │ │ ├── ConsistencyTests.cs │ │ │ ├── IdempotenceAwareRetryPolicyTests.cs │ │ │ ├── LoadBalancingPolicyShortTests.cs │ │ │ ├── LoadBalancingPolicyTests.cs │ │ │ ├── ReconnectionPolicyTests.cs │ │ │ ├── RetryPolicyShortTests.cs │ │ │ ├── RetryPolicyTests.cs │ │ │ └── TokenAwareTransientReplicationTests.cs │ │ └── Util │ │ │ ├── AlwaysIgnoreRetryPolicy.cs │ │ │ ├── AlwaysRetryRetryPolicy.cs │ │ │ ├── CustomLoadBalancingPolicy.cs │ │ │ ├── PolicyTestTools.cs │ │ │ └── TryNextHostRetryPolicy.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SharedCloudClusterTest.cs │ ├── SharedClusterTest.cs │ ├── SharedSimulacronTests.cs │ ├── SimulacronAPI │ │ ├── DataType.cs │ │ ├── Extensions │ │ │ └── SimulacronVerifyExtensions.cs │ │ ├── Models │ │ │ ├── Converters │ │ │ │ ├── ConsistencyLevelEnumConverter.cs │ │ │ │ ├── QueryTypeEnumConverter.cs │ │ │ │ └── TupleConverter.cs │ │ │ └── Logs │ │ │ │ ├── BaseMessage.cs │ │ │ │ ├── BatchMessage.cs │ │ │ │ ├── Frame.cs │ │ │ │ ├── QueryMessage.cs │ │ │ │ ├── QueryMessageOptions.cs │ │ │ │ ├── QueryType.cs │ │ │ │ ├── RequestLog.cs │ │ │ │ ├── SimulacronClusterLogs.cs │ │ │ │ ├── SimulacronDatacenterLogs.cs │ │ │ │ └── SimulacronNodeLogs.cs │ │ ├── PrimeBuilder │ │ │ ├── IPrimeRequest.cs │ │ │ ├── IPrimeRequestBuilder.cs │ │ │ ├── IPrimeRequestComponent.cs │ │ │ ├── IThen.cs │ │ │ ├── IThenFluent.cs │ │ │ ├── IWhen.cs │ │ │ ├── IWhenFluent.cs │ │ │ ├── PrimeRequest.cs │ │ │ ├── PrimeRequestBuilder.cs │ │ │ ├── Then │ │ │ │ ├── BaseThen.cs │ │ │ │ ├── IRowsResult.cs │ │ │ │ ├── RowsResult.cs │ │ │ │ ├── ServerError.cs │ │ │ │ ├── ThenAlreadyExists.cs │ │ │ │ ├── ThenFunctionFailure.cs │ │ │ │ ├── ThenIsBootstrapping.cs │ │ │ │ ├── ThenReadFailure.cs │ │ │ │ ├── ThenReadTimeout.cs │ │ │ │ ├── ThenRowsSuccess.cs │ │ │ │ ├── ThenServerError.cs │ │ │ │ ├── ThenSyntaxError.cs │ │ │ │ ├── ThenUnavailableError.cs │ │ │ │ ├── ThenVoid.cs │ │ │ │ ├── ThenVoidSuccess.cs │ │ │ │ ├── ThenWriteFailure.cs │ │ │ │ └── ThenWriteTimeout.cs │ │ │ └── When │ │ │ │ ├── BatchQuery.cs │ │ │ │ ├── IWhenBatchBuilder.cs │ │ │ │ ├── IWhenQueryBuilder.cs │ │ │ │ ├── WhenBatchBuilder.cs │ │ │ │ └── WhenQueryBuilder.cs │ │ └── SystemTables │ │ │ ├── StubTableColumn.cs │ │ │ └── SystemTablePrimeHelper.cs │ ├── SimulacronTest.cs │ ├── TestAttributes │ │ └── SniEnabledOnlyAttribute.cs │ ├── TestBase │ │ ├── ConstantReturningHelper.cs │ │ ├── QueryTools.cs │ │ ├── Randomm.cs │ │ ├── TestCassandraVersion.cs │ │ ├── TestGlobals.cs │ │ ├── TestHttpClient.cs │ │ ├── TestInfrastructureException.cs │ │ └── TestUtils.cs │ ├── TestClusterManagement │ │ ├── CcmBridge.cs │ │ ├── CcmCluster.cs │ │ ├── CcmProcessExecuter.cs │ │ ├── CloudCluster.cs │ │ ├── ICcmProcessExecuter.cs │ │ ├── ITestCluster.cs │ │ ├── LocalCcmProcessExecuter.cs │ │ ├── RemoteCcmProcessExecuter.cs │ │ ├── Simulacron │ │ │ ├── SimulacronBase.cs │ │ │ ├── SimulacronCluster.cs │ │ │ ├── SimulacronDataCenter.cs │ │ │ ├── SimulacronNode.cs │ │ │ └── SimulacronOptions.cs │ │ ├── SimulacronManager.cs │ │ ├── TestCloudClusterManager.cs │ │ ├── TestClusterManager.cs │ │ ├── TestInsightsVersion.cs │ │ └── WslCcmProcessExecuter.cs │ └── TestDataTypes │ │ ├── Contact.cs │ │ ├── Phone.cs │ │ ├── Phone2.cs │ │ ├── PhoneType.cs │ │ ├── UdtWithCollections.cs │ │ └── UserFeedback.cs ├── Cassandra.Tests │ ├── .editorconfig │ ├── AbstractResponseTest.cs │ ├── AddressTranslatorTests.cs │ ├── AdoUnitTests.cs │ ├── ApiTests.cs │ ├── AppMetricsExtension │ │ └── HistogramTests.cs │ ├── BaseUnitTest.cs │ ├── BuilderTests.cs │ ├── Cassandra.Tests.csproj │ ├── ClusterTests.cs │ ├── CollectionTests.cs │ ├── ConnectionTests.cs │ ├── Connections │ │ ├── Control │ │ │ ├── ControlConnectionTests.cs │ │ │ ├── HostnameContactPointTests.cs │ │ │ ├── ResolvedContactPointTests.cs │ │ │ └── TopologyRefresherTests.cs │ │ ├── EndPointResolverTests.cs │ │ ├── HostConnectionPoolTests.cs │ │ ├── SniContactPointAndResolverTests.cs │ │ └── TestHelpers │ │ │ ├── FakeConnectionEndPoint.cs │ │ │ ├── FakeConnectionFactory.cs │ │ │ ├── FakeControlConnectionFactory.cs │ │ │ ├── FakeMetadataRequestHandler.cs │ │ │ ├── FakeProtocolVersionNegotiator.cs │ │ │ ├── FakeServerEventsSubscriber.cs │ │ │ ├── FakeSupportedOptionsInitializer.cs │ │ │ ├── FakeSupportedOptionsInitializerFactory.cs │ │ │ ├── FakeTopologyRefresher.cs │ │ │ └── FakeTopologyRefresherFactory.cs │ ├── CqlCommandTest.cs │ ├── CqlParameterCollectionTest.cs │ ├── CqlParameterTest.cs │ ├── CustomTypeSerializerTests.cs │ ├── DataStax │ │ ├── Auth │ │ │ ├── DseGssapiAuthProviderTests.cs │ │ │ └── DsePlainTextAuthProviderTests.cs │ │ ├── Cloud │ │ │ ├── CloudConfigurationParserTests.cs │ │ │ ├── CloudMetadataServiceTests.cs │ │ │ ├── CustomCaCertificateValidatorTests.cs │ │ │ └── certs │ │ │ │ ├── customdomain.crt │ │ │ │ ├── example.crt │ │ │ │ ├── localhostcsharp.crt │ │ │ │ ├── rootcacsharp.crt │ │ │ │ └── rootcacsharp.key │ │ ├── Graph │ │ │ ├── ExecuteGraphTests.cs │ │ │ ├── GraphNodeGraphSON1Tests.cs │ │ │ ├── GraphNodeGraphSONTests.cs │ │ │ └── GraphOptionsTests.cs │ │ ├── Insights │ │ │ ├── InsightTypeConverterTests.cs │ │ │ ├── InsightsClientTests.cs │ │ │ ├── InsightsSupportVerifierTests.cs │ │ │ └── MessageFactories │ │ │ │ └── InsightsMessageFactoryTests.cs │ │ └── Search │ │ │ ├── DateRangeBoundTests.cs │ │ │ ├── DateRangeSerializerTests.cs │ │ │ └── DateRangeTests.cs │ ├── DataTypeParserTests.cs │ ├── DurationTests.cs │ ├── EndianBitConverterTests.cs │ ├── ExceptionsUnitTest.cs │ ├── ExecutionProfiles │ │ ├── ClusterTests.cs │ │ ├── ConfigurationTests.cs │ │ ├── ExecutionProfileBuilderTests.cs │ │ ├── RequestHandlerTests.cs │ │ └── SessionTests.cs │ ├── Extensions │ │ ├── ExecutionProfileBuilderExtensions.cs │ │ ├── NumericTypeConstraint.cs │ │ └── Serializers │ │ │ ├── BigDecimalSerializer.cs │ │ │ ├── DummyCustomTypeSerializer.cs │ │ │ └── UdtSerializerWrapper.cs │ ├── FixedRandom.cs │ ├── FrameParserTests.cs │ ├── Geometry │ │ ├── LineStringTests.cs │ │ ├── PointTests.cs │ │ └── PolygonTests.cs │ ├── HostConnectionPoolTests.cs │ ├── HostTests.cs │ ├── IOUnitTests.cs │ ├── KeyspaceMetadataTests.cs │ ├── LocalDateTests.cs │ ├── LocalTimeTests.cs │ ├── LoggingTests.cs │ ├── Mapping │ │ ├── AttributeBasedTypeDefinitionTests.cs │ │ ├── BatchTests.cs │ │ ├── CqlGeneratorTests.cs │ │ ├── DeleteTests.cs │ │ ├── ExecuteTests.cs │ │ ├── FetchTests.cs │ │ ├── FirstTests.cs │ │ ├── FluentMappings │ │ │ └── FluentUserMapping.cs │ │ ├── InsertTests.cs │ │ ├── Linq │ │ │ ├── LinqBatchStatementUnitTests.cs │ │ │ ├── LinqCreateTableUnitTests.cs │ │ │ ├── LinqEntryPointsTests.cs │ │ │ ├── LinqExecutionProfileTests.cs │ │ │ ├── LinqMappingUnitTests.cs │ │ │ ├── LinqStatementPropertiesTests.cs │ │ │ ├── LinqToCqlDeleteTests.cs │ │ │ ├── LinqToCqlFunctionTests.cs │ │ │ ├── LinqToCqlInsertUnitTests.cs │ │ │ ├── LinqToCqlSelectUnitTests.cs │ │ │ ├── LinqToCqlUnitTests.cs │ │ │ └── LinqToCqlUpdateUnitTests.cs │ │ ├── LinqAttributeBasedTypeDefinitionTests.cs │ │ ├── MapperExecutionProfileTests.cs │ │ ├── MappingConfigurationTests.cs │ │ ├── MappingTestBase.cs │ │ ├── Pocos │ │ │ ├── Album.cs │ │ │ ├── AllTypesDecorated.cs │ │ │ ├── AllTypesEntity.cs │ │ │ ├── AttributeMappingClass.cs │ │ │ ├── CollectionTypesEntity.cs │ │ │ ├── ContactMethod.cs │ │ │ ├── DecoratedTimeSeries.cs │ │ │ ├── DecoratedUser.cs │ │ │ ├── ExplicitColumnsUser.cs │ │ │ ├── FluentUser.cs │ │ │ ├── HairColor.cs │ │ │ ├── InsertUser.cs │ │ │ ├── LinqDecoratedCaseInsensitiveEntity.cs │ │ │ ├── LinqDecoratedEntity.cs │ │ │ ├── LinqDecoratedEntityWithStaticField.cs │ │ │ ├── LinqDecoratedWithStringCkEntity.cs │ │ │ ├── PlainUser.cs │ │ │ ├── PocoWithCollections.cs │ │ │ ├── PocoWithEnumCollections.cs │ │ │ ├── PocoWithNumericTypes.cs │ │ │ ├── RainbowColor.cs │ │ │ ├── SensorData.cs │ │ │ ├── Song.cs │ │ │ ├── UdtAndTuplePoco.cs │ │ │ ├── UserDifferentPropTypes.cs │ │ │ ├── UserType.cs │ │ │ ├── VarintPoco.cs │ │ │ └── VectorEntity.cs │ │ ├── StatementFactoryTests.cs │ │ ├── TestData │ │ │ ├── TestDataGenerator.cs │ │ │ └── TestDataHelper.cs │ │ ├── TypeConverterTests.cs │ │ ├── UpdateTests.cs │ │ └── Utils │ │ │ └── CqlIdentifierHelperTests.cs │ ├── MetadataHelpers │ │ ├── EverywhereStrategyTests.cs │ │ ├── LocalStrategyTests.cs │ │ ├── NetworkTopologyStrategyTests.cs │ │ ├── ReplicationFactorTests.cs │ │ ├── ReplicationStrategyTestData.cs │ │ ├── SimpleStrategyTests.cs │ │ └── TestHelpers │ │ │ ├── FakeSchemaParser.cs │ │ │ ├── FakeSchemaParserFactory.cs │ │ │ ├── FakeTimerFactory.cs │ │ │ ├── ProxyReplicationStrategy.cs │ │ │ └── ProxyReplicationStrategyFactory.cs │ ├── MetadataTests │ │ ├── ProtocolEventDebouncerTests.cs │ │ └── TaskBasedTimerTests.cs │ ├── Metrics │ │ └── MetricsTests.cs │ ├── ObsoletedMemberTests.cs │ ├── OpenTelemetryTests.cs │ ├── OperationStateExtensions.cs │ ├── OutputErrorTests.cs │ ├── Policies │ │ └── DefaultLoadBalancingTests.cs │ ├── PoliciesUnitTests.cs │ ├── PreparedStatementTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProtocolTests.cs │ ├── RequestExecutionTests.cs │ ├── RequestHandlerMockTests.cs │ ├── RequestHandlerTests.cs │ ├── Requests │ │ ├── FakeRequestHandlerFactory.cs │ │ ├── GraphTypeSerializerFactoryTests.cs │ │ ├── PrepareHandlerTests.cs │ │ ├── ProxyResultResponse.cs │ │ └── StartupOptionsFactoryTests.cs │ ├── ResponseFrameTest.cs │ ├── RowSetUnitTests.cs │ ├── SchemaParserTests.cs │ ├── SerializerTests.cs │ ├── SessionTests.cs │ ├── StatementTests.cs │ ├── TargetTests.cs │ ├── TaskTests.cs │ ├── TestAttributes │ │ ├── CloudSupportedAttribute.cs │ │ ├── NotWindowsAttribute.cs │ │ ├── TestCaseGenericAttribute.cs │ │ ├── TestCaseSourceGenericAttribute.cs │ │ └── WinOnlyAttribute.cs │ ├── TestCategory.cs │ ├── TestConfigurationBuilder.cs │ ├── TestHelper.cs │ ├── TestHelpers │ │ ├── FakeInitializer.cs │ │ ├── TestHostFactory.cs │ │ └── UnixTimeExtensions.cs │ ├── TestTimeoutAttribute.cs │ ├── TestTraceListener.cs │ ├── ThreadPerTaskScheduler.cs │ ├── TimeUuidTests.cs │ ├── TimeoutTests.cs │ ├── TimestampTests.cs │ ├── TokenTests.cs │ └── UtilsTests.cs ├── Cassandra.sln ├── Cassandra.sln.DotSettings ├── Cassandra │ ├── AggregateMetadata.cs │ ├── BatchStatement.cs │ ├── BeConverter.cs │ ├── BigIntegerTypeAdapter.cs │ ├── BoolSwitch.cs │ ├── BoundStatement.cs │ ├── Builder.cs │ ├── Cassandra.csproj │ ├── CassandraConnectionStringBuilder.cs │ ├── CassandraEventArgs.cs │ ├── CassandraEventHandler.cs │ ├── CassandraEventType.cs │ ├── ClientOptions.cs │ ├── Cluster.cs │ ├── Collections │ │ ├── ArrayBackedList.cs │ │ ├── ByteArrayComparer.cs │ │ ├── CopyOnWriteDictionary.cs │ │ ├── CopyOnWriteList.cs │ │ ├── IThreadSafeDictionary.cs │ │ ├── OrderedHashSet.cs │ │ └── ReadOnlyCollection.cs │ ├── Compression │ │ ├── LZ4Compressor.cs │ │ ├── Snappy │ │ │ ├── CorruptionException.cs │ │ │ ├── Memory.cs │ │ │ ├── README.md │ │ │ ├── SlowMemory.cs │ │ │ ├── SnappyDecompressor.cs │ │ │ ├── SnappyInternalUtils.cs │ │ │ ├── license-header.txt │ │ │ ├── license.txt │ │ │ └── notice.md │ │ ├── SnappyCompressor.cs │ │ └── WrappedStream.cs │ ├── CompressionType.cs │ ├── Configuration.cs │ ├── Connections │ │ ├── Connection.cs │ │ ├── ConnectionEndpoint.cs │ │ ├── ConnectionFactory.cs │ │ ├── Control │ │ │ ├── ContactPointParser.cs │ │ │ ├── ControlConnection.cs │ │ │ ├── ControlConnectionFactory.cs │ │ │ ├── IContactPoint.cs │ │ │ ├── IContactPointParser.cs │ │ │ ├── IControlConnection.cs │ │ │ ├── IControlConnectionFactory.cs │ │ │ ├── IMetadataRequestHandler.cs │ │ │ ├── IProtocolVersionNegotiator.cs │ │ │ ├── IServerEventsSubscriber.cs │ │ │ ├── ISupportedOptionsInitializer.cs │ │ │ ├── ISupportedOptionsInitializerFactory.cs │ │ │ ├── ITopologyRefresher.cs │ │ │ ├── ITopologyRefresherFactory.cs │ │ │ ├── IpLiteralContactPoint.cs │ │ │ ├── MetadataRequestHandler.cs │ │ │ ├── ProtocolVersionNegotiator.cs │ │ │ ├── ServerEventsSubscriber.cs │ │ │ ├── SniContactPoint.cs │ │ │ ├── SupportedOptionsInitializer.cs │ │ │ ├── SupportedOptionsInitializerFactory.cs │ │ │ ├── TopologyRefresher.cs │ │ │ └── TopologyRefresherFactory.cs │ │ ├── DnsResolver.cs │ │ ├── EndPointResolver.cs │ │ ├── HostConnectionPool.cs │ │ ├── HostConnectionPoolFactory.cs │ │ ├── HostnameContactPoint.cs │ │ ├── IConnection.cs │ │ ├── IConnectionEndpoint.cs │ │ ├── IConnectionFactory.cs │ │ ├── IDnsResolver.cs │ │ ├── IEndPointResolver.cs │ │ ├── IHostConnectionPool.cs │ │ ├── IHostConnectionPoolFactory.cs │ │ ├── IRequestError.cs │ │ ├── IServerNameResolver.cs │ │ ├── ISniEndPointResolver.cs │ │ ├── ISniOptionsProvider.cs │ │ ├── ITcpSocket.cs │ │ ├── RequestError.cs │ │ ├── ServerNameResolver.cs │ │ ├── SingleThreadedResolver.cs │ │ ├── SniConnectionEndPoint.cs │ │ ├── SniEndPointResolver.cs │ │ └── TcpSocket.cs │ ├── ConsistencyLevel.cs │ ├── CqlQueryTools.cs │ ├── CqlVector.cs │ ├── Data │ │ ├── CqlBatchTransaction.cs │ │ ├── CqlCommand.cs │ │ ├── CqlCommandBuilder.cs │ │ ├── CqlConnection.cs │ │ ├── CqlDataAdapter.cs │ │ ├── CqlParameter.cs │ │ ├── CqlParameterCollection.cs │ │ ├── CqlProviderFactory.cs │ │ ├── CqlReader.cs │ │ ├── Linq │ │ │ ├── AllowFilteringAttribute.cs │ │ │ ├── Batch.cs │ │ │ ├── BatchV1.cs │ │ │ ├── BatchV2.cs │ │ │ ├── ClientProjectionCqlQuery.cs │ │ │ ├── ClusteringKeyAttribute.cs │ │ │ ├── ColumnAttribute.cs │ │ │ ├── CompactStorageAttribute.cs │ │ │ ├── CounterAttribute.cs │ │ │ ├── CqlArgumentException.cs │ │ │ ├── CqlCommand.cs │ │ │ ├── CqlConditionalCommand.cs │ │ │ ├── CqlDelete.cs │ │ │ ├── CqlExpressionVisitor.cs │ │ │ ├── CqlFunction.cs │ │ │ ├── CqlInsert.cs │ │ │ ├── CqlLinqNotSupportedException.cs │ │ │ ├── CqlMthHelps.cs │ │ │ ├── CqlOperator.cs │ │ │ ├── CqlQuery.cs │ │ │ ├── CqlQueryBase.cs │ │ │ ├── CqlQueryExtensions.cs │ │ │ ├── CqlQuerySingleElement.cs │ │ │ ├── CqlQueryTools.cs │ │ │ ├── CqlScalar.cs │ │ │ ├── CqlToken.cs │ │ │ ├── CqlUpdate.cs │ │ │ ├── ExpressionParsing │ │ │ │ ├── BinaryConditionItem.cs │ │ │ │ ├── ExistsConditionItem.cs │ │ │ │ └── IConditionItem.cs │ │ │ ├── IInternalStatement.cs │ │ │ ├── ITable.cs │ │ │ ├── IgnoreAttribute.cs │ │ │ ├── LinqAttributeBasedColumnDefinition.cs │ │ │ ├── LinqAttributeBasedTypeDefinition.cs │ │ │ ├── ParsePhase.cs │ │ │ ├── PartitionKeyAttribute.cs │ │ │ ├── SecondaryIndexAttribute.cs │ │ │ ├── SessionExtensions.cs │ │ │ ├── StaticColumnAttribute.cs │ │ │ ├── Table.cs │ │ │ ├── TableAttribute.cs │ │ │ ├── TableType.cs │ │ │ └── VisitingParam.cs │ │ └── README.rst │ ├── DataCollectionMetadata.cs │ ├── DataStax │ │ ├── Auth │ │ │ ├── .editorconfig │ │ │ ├── BaseDseAuthenticator.cs │ │ │ ├── DseGssapiAuthProvider.cs │ │ │ ├── DsePlainTextAuthProvider.cs │ │ │ ├── GssapiClientFactory.cs │ │ │ ├── IGssapiClient.cs │ │ │ ├── Sspi │ │ │ │ ├── Buffers │ │ │ │ │ ├── SecureBuffer.cs │ │ │ │ │ ├── SecureBufferAdapter.cs │ │ │ │ │ ├── SecureBufferDataRep.cs │ │ │ │ │ ├── SecureBufferDesc.cs │ │ │ │ │ └── SecureBufferType.cs │ │ │ │ ├── ByteWriter.cs │ │ │ │ ├── Contexts │ │ │ │ │ ├── ClientContext.cs │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── ContextAttrib.cs │ │ │ │ │ ├── ContextNativeMethods.cs │ │ │ │ │ ├── ContextQueries.cs │ │ │ │ │ ├── ContextQueryAttrib.cs │ │ │ │ │ └── SafeContextHandle.cs │ │ │ │ ├── Credentials │ │ │ │ │ ├── ClientCredential.cs │ │ │ │ │ ├── Credential.cs │ │ │ │ │ ├── CredentialNativeMethods.cs │ │ │ │ │ ├── CredentialQueryAttrib.cs │ │ │ │ │ ├── CredentialUse.cs │ │ │ │ │ ├── CurrentCredential.cs │ │ │ │ │ ├── QueryNameSupport.cs │ │ │ │ │ ├── SafeCredentialHandle.cs │ │ │ │ │ └── ServerCredential.cs │ │ │ │ ├── EnumMgr.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ ├── PackageNames.cs │ │ │ │ ├── PackageSupport.cs │ │ │ │ ├── SecPkgInfo.cs │ │ │ │ ├── SecurityStatus.cs │ │ │ │ ├── SspiException.cs │ │ │ │ ├── SspiHandle.cs │ │ │ │ └── TimeStamp.cs │ │ │ └── SspiClient.cs │ │ ├── Cloud │ │ │ ├── CloudConfiguration.cs │ │ │ ├── CloudConfigurationParser.cs │ │ │ ├── CloudMetadataResult.cs │ │ │ ├── CloudMetadataService.cs │ │ │ ├── CloudSniOptionsProvider.cs │ │ │ ├── ContactInfo.cs │ │ │ ├── CustomCACertificateValidator.cs │ │ │ ├── ICertificateValidator.cs │ │ │ ├── ICloudConfigurationParser.cs │ │ │ ├── ICloudMetadataService.cs │ │ │ ├── ISecureConnectionBundleParser.cs │ │ │ ├── SecureConnectionBundle.cs │ │ │ └── SecureConnectionBundleParser.cs │ │ ├── Graph │ │ │ ├── Direction.cs │ │ │ ├── Edge.cs │ │ │ ├── Element.cs │ │ │ ├── ElementMap.cs │ │ │ ├── EnumWrapper.cs │ │ │ ├── FluentGraphStatement.cs │ │ │ ├── GraphNode.cs │ │ │ ├── GraphNodeConverter.cs │ │ │ ├── GraphOptions.cs │ │ │ ├── GraphResultSet.cs │ │ │ ├── GraphStatement.cs │ │ │ ├── IEdge.cs │ │ │ ├── IElement.cs │ │ │ ├── IGraphNode.cs │ │ │ ├── IGraphStatement.cs │ │ │ ├── IPath.cs │ │ │ ├── IProperty.cs │ │ │ ├── IPropertyWithElement.cs │ │ │ ├── IVertex.cs │ │ │ ├── IVertexProperty.cs │ │ │ ├── Internal │ │ │ │ ├── IGraphSONDeserializer.cs │ │ │ │ ├── IGraphSONReader.cs │ │ │ │ ├── IGraphSONSerializer.cs │ │ │ │ └── IGraphSONWriter.cs │ │ │ ├── Path.cs │ │ │ ├── Property.cs │ │ │ ├── SimpleGraphStatement.cs │ │ │ ├── TEnum.cs │ │ │ ├── Traverser.cs │ │ │ ├── Vertex.cs │ │ │ └── VertexProperty.cs │ │ ├── Insights │ │ │ ├── IInsightsClient.cs │ │ │ ├── IInsightsClientFactory.cs │ │ │ ├── IInsightsSupportVerifier.cs │ │ │ ├── InfoProviders │ │ │ │ ├── IInsightsInfoProvider.cs │ │ │ │ ├── InsightsInfoProvidersCollection.cs │ │ │ │ ├── StartupMessage │ │ │ │ │ ├── AuthProviderInfoProvider.cs │ │ │ │ │ ├── ConfigAntiPatternsInfoProvider.cs │ │ │ │ │ ├── DataCentersInfoProvider.cs │ │ │ │ │ ├── DriverInfo.cs │ │ │ │ │ ├── DriverInfoProvider.cs │ │ │ │ │ ├── ExecutionProfileInfoProvider.cs │ │ │ │ │ ├── HostnameInfoProvider.cs │ │ │ │ │ ├── IPolicyInfoMapper.cs │ │ │ │ │ ├── LoadBalancingPolicyInfoProvider.cs │ │ │ │ │ ├── OtherOptionsInfoProvider.cs │ │ │ │ │ ├── PlatformInfoProvider.cs │ │ │ │ │ ├── PoolSizeByHostDistanceInfoProvider.cs │ │ │ │ │ ├── ReconnectionPolicyInfoProvider.cs │ │ │ │ │ ├── RetryPolicyInfoProvider.cs │ │ │ │ │ └── SpeculativeExecutionPolicyInfoProvider.cs │ │ │ │ └── StatusMessage │ │ │ │ │ └── NodeStatusInfoProvider.cs │ │ │ ├── InsightsClient.cs │ │ │ ├── InsightsClientFactory.cs │ │ │ ├── InsightsSupportVerifier.cs │ │ │ ├── MessageFactories │ │ │ │ ├── IInsightsMessageFactory.cs │ │ │ │ ├── IInsightsMetadataFactory.cs │ │ │ │ ├── IInsightsMetadataTimestampGenerator.cs │ │ │ │ ├── InsightsMetadataFactory.cs │ │ │ │ ├── InsightsMetadataTimestampGenerator.cs │ │ │ │ ├── InsightsStartupMessageFactory.cs │ │ │ │ └── InsightsStatusMessageFactory.cs │ │ │ └── Schema │ │ │ │ ├── Converters │ │ │ │ ├── CompressionTypeInsightsConverter.cs │ │ │ │ ├── ConsistencyInsightsConverter.cs │ │ │ │ ├── InsightTypeInsightsConverter.cs │ │ │ │ └── InsightsEnumConverter.cs │ │ │ │ ├── Insight.cs │ │ │ │ ├── InsightType.cs │ │ │ │ ├── InsightsMetadata.cs │ │ │ │ ├── StartupMessage │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AuthProviderInfo.cs │ │ │ │ ├── CentralProcessingUnitsInfo.cs │ │ │ │ ├── ExecutionProfileInfo.cs │ │ │ │ ├── InsightsPlatformInfo.cs │ │ │ │ ├── InsightsStartupData.cs │ │ │ │ ├── OperatingSystemInfo.cs │ │ │ │ ├── PolicyInfo.cs │ │ │ │ ├── PoolSizeByHostDistance.cs │ │ │ │ ├── RuntimeInfo.cs │ │ │ │ └── SslInfo.cs │ │ │ │ └── StatusMessage │ │ │ │ ├── InsightsStatusData.cs │ │ │ │ └── NodeStatusInfo.cs │ │ └── Search │ │ │ ├── DateRange.cs │ │ │ ├── DateRangeBound.cs │ │ │ └── DateRangePrecision.cs │ ├── DecimalTypeAdapter.cs │ ├── DefaultAddressTranslator.cs │ ├── Diagnostics.cs │ ├── Duration.cs │ ├── DynamicCompositeTypeAdapter.cs │ ├── EC2MultiRegionTranslator.cs │ ├── EncryptedValue.cs │ ├── EndianBitConverter.cs │ ├── Exceptions │ │ ├── AlreadyExistsException.cs │ │ ├── AuthenticationException.cs │ │ ├── BusyPoolException.cs │ │ ├── ColumnEncryptionInvalidTypeError.cs │ │ ├── DriverException.cs │ │ ├── DriverInternalError.cs │ │ ├── ExecutionException.cs │ │ ├── FunctionFailureException.cs │ │ ├── InitFatalErrorException.cs │ │ ├── InvalidConfigurationInQueryException.cs │ │ ├── InvalidQueryException.cs │ │ ├── InvalidTypeException.cs │ │ ├── NoHostAvailableException.cs │ │ ├── OperationTimedOutException.cs │ │ ├── PreparedQueryNotFoundException.cs │ │ ├── PreparedStatementIdMismatchException.cs │ │ ├── QueryExecutionException.cs │ │ ├── QueryTimeoutException.cs │ │ ├── QueryValidationException.cs │ │ ├── ReadFailureException.cs │ │ ├── ReadTimeoutException.cs │ │ ├── RequestInvalidException.cs │ │ ├── SyntaxError.cs │ │ ├── ToManyConnectionsPerHost.cs │ │ ├── TraceRetrievalException.cs │ │ ├── TruncateException.cs │ │ ├── UnauthorizedException.cs │ │ ├── UnavailableException.cs │ │ ├── UnsupportedProtocolVersionException.cs │ │ ├── WriteFailureException.cs │ │ └── WriteTimeoutException.cs │ ├── ExecutionProfiles │ │ ├── ExecutionProfile.cs │ │ ├── ExecutionProfileBuilder.cs │ │ ├── ExecutionProfileOptions.cs │ │ ├── IRequestOptions.cs │ │ ├── IRequestOptionsMapper.cs │ │ ├── RequestOptions.cs │ │ └── RequestOptionsMapper.cs │ ├── Extensions.cs │ ├── Frame.cs │ ├── FrameHeader.cs │ ├── FrameParser.cs │ ├── FrameReader.cs │ ├── FrameWriter.cs │ ├── FunctionMetadata.cs │ ├── Geometry │ │ ├── Geometry.cs │ │ ├── LineString.cs │ │ ├── LineStringJsonConverter.cs │ │ ├── Point.cs │ │ ├── PointJsonConverter.cs │ │ ├── Polygon.cs │ │ └── PolygonJsonConverter.cs │ ├── GraphProtocol.cs │ ├── GraphProtocolExtensions.cs │ ├── HeaderFlags.cs │ ├── Helpers │ │ ├── AssemblyHelpers.cs │ │ ├── CollectionHelpers.cs │ │ ├── DefaultRandom.cs │ │ ├── IRandom.cs │ │ ├── PlatformHelper.cs │ │ └── ReferenceEqualityComparer.cs │ ├── Host.cs │ ├── HostDistance.cs │ ├── Hosts.cs │ ├── HostsEventArgs.cs │ ├── HostsEventHandler.cs │ ├── IAddressTranslator.cs │ ├── IAuthInfoProvider.cs │ ├── IAuthProvider.cs │ ├── IAuthenticator.cs │ ├── ICluster.cs │ ├── IExecutionProfile.cs │ ├── IExecutionProfileBuilder.cs │ ├── IExecutionProfileOptions.cs │ ├── IFrameCompressor.cs │ ├── IInitializer.cs │ ├── IMetadataQueryProvider.cs │ ├── IRequestTracker.cs │ ├── ISchemaParser.cs │ ├── ISession.cs │ ├── ISessionState.cs │ ├── IStatement.cs │ ├── IToken.cs │ ├── ITypeAdapter.cs │ ├── IndexMetadata.cs │ ├── KeyType.cs │ ├── KeyspaceMetadata.cs │ ├── LocalDate.cs │ ├── LocalTime.cs │ ├── Logger.cs │ ├── M3PToken.cs │ ├── Mapping │ │ ├── AppliedInfo.cs │ │ ├── Attributes │ │ │ ├── AttributeBasedColumnDefinition.cs │ │ │ ├── AttributeBasedTypeDefinition.cs │ │ │ ├── ClusteringKeyAttribute.cs │ │ │ ├── ColumnAttribute.cs │ │ │ ├── CounterAttribute.cs │ │ │ ├── FrozenAttribute.cs │ │ │ ├── FrozenKeyAttribute.cs │ │ │ ├── FrozenValueAttribute.cs │ │ │ ├── IgnoreAttribute.cs │ │ │ ├── PartitionKeyAttribute.cs │ │ │ ├── SecondaryIndexAttribute.cs │ │ │ ├── StaticColumnAttribute.cs │ │ │ └── TableAttribute.cs │ │ ├── ColumnMap.cs │ │ ├── Cql.cs │ │ ├── CqlBatch.cs │ │ ├── CqlQueryOptions.cs │ │ ├── IColumnDefinition.cs │ │ ├── ICqlBatch.cs │ │ ├── ICqlQueryAsyncClient.cs │ │ ├── ICqlQueryClient.cs │ │ ├── ICqlWriteAsyncClient.cs │ │ ├── ICqlWriteClient.cs │ │ ├── IMapper.cs │ │ ├── IPage.cs │ │ ├── IPocoData.cs │ │ ├── ITypeDefinition.cs │ │ ├── Map.cs │ │ ├── Mapper.cs │ │ ├── MapperFactory.cs │ │ ├── MappingConfiguration.cs │ │ ├── Mappings.cs │ │ ├── Page.cs │ │ ├── PocoColumn.cs │ │ ├── PocoData.cs │ │ ├── PocoDataFactory.cs │ │ ├── PrimaryKeyAttribute.cs │ │ ├── ProjectionExpressionVisitor.cs │ │ ├── SortOrder.cs │ │ ├── Statements │ │ │ ├── CqlGenerator.cs │ │ │ └── StatementFactory.cs │ │ ├── TableNameAttribute.cs │ │ ├── TypeConversion │ │ │ ├── DefaultTypeConverter.cs │ │ │ ├── EnumStringMapper.cs │ │ │ ├── NewTypeProjection.cs │ │ │ ├── NullableEnumStringMapper.cs │ │ │ └── TypeConverter.cs │ │ └── Utils │ │ │ ├── CqlIdentifierHelper.cs │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── ICqlIdentifierHelper.cs │ │ │ ├── LookupKeyedCollection.cs │ │ │ └── MemberInfoExtensions.cs │ ├── MaterializedViewMetadata.cs │ ├── Metadata.cs │ ├── MetadataHelpers │ │ ├── DatacenterInfo.cs │ │ ├── DatacenterReplicationFactor.cs │ │ ├── EverywhereStrategy.cs │ │ ├── IReadOnlyTokenMap.cs │ │ ├── IReplicationStrategy.cs │ │ ├── IReplicationStrategyFactory.cs │ │ ├── ISchemaParserFactory.cs │ │ ├── LocalStrategy.cs │ │ ├── NetworkTopologyStrategy.cs │ │ ├── NetworkTopologyTokenMapContext.cs │ │ ├── ReplicationFactor.cs │ │ ├── ReplicationStrategyFactory.cs │ │ ├── SchemaParserFactory.cs │ │ └── SimpleStrategy.cs │ ├── MetadataSyncOptions.cs │ ├── Metrics │ │ ├── Abstractions │ │ │ ├── IDriverCounter.cs │ │ │ ├── IDriverGauge.cs │ │ │ ├── IDriverMeter.cs │ │ │ ├── IDriverMetric.cs │ │ │ ├── IDriverMetricsProvider.cs │ │ │ └── IDriverTimer.cs │ │ ├── DriverMetricsOptions.cs │ │ ├── IDriverMetrics.cs │ │ ├── IMetric.cs │ │ ├── IMetricsRegistry.cs │ │ ├── Internal │ │ │ ├── IMetricsManager.cs │ │ │ └── MetricsManager.cs │ │ ├── NodeMetric.cs │ │ ├── Providers │ │ │ └── Null │ │ │ │ ├── NullDriverCounter.cs │ │ │ │ ├── NullDriverGauge.cs │ │ │ │ ├── NullDriverMeter.cs │ │ │ │ ├── NullDriverMetricsProvider.cs │ │ │ │ └── NullDriverTimer.cs │ │ ├── Registries │ │ │ ├── IInternalMetricsRegistry.cs │ │ │ ├── INodeMetrics.cs │ │ │ ├── IRequestErrorMetrics.cs │ │ │ ├── IRetryPolicyMetrics.cs │ │ │ ├── ISessionMetrics.cs │ │ │ ├── InternalMetricsRegistry.cs │ │ │ ├── NodeMetrics.cs │ │ │ ├── RequestErrorMetrics.cs │ │ │ ├── RetryPolicyMetricsRegistry.cs │ │ │ ├── RetryPolicyOnIgnoreMetrics.cs │ │ │ └── SessionMetrics.cs │ │ └── SessionMetric.cs │ ├── MonitorReportingOptions.cs │ ├── NodeRequestInfo.cs │ ├── NoneAuthProvider.cs │ ├── NullTypeAdapter.cs │ ├── OPPToken.cs │ ├── Observers │ │ ├── Abstractions │ │ │ ├── IConnectionObserver.cs │ │ │ ├── IObserverFactory.cs │ │ │ ├── IOperationObserver.cs │ │ │ └── IRequestObserver.cs │ │ ├── Composite │ │ │ ├── CompositeConnectionObserver.cs │ │ │ ├── CompositeObserverFactory.cs │ │ │ ├── CompositeObserverFactoryBuilder.cs │ │ │ ├── CompositeOperationObserver.cs │ │ │ └── CompositeRequestObserver.cs │ │ ├── IObserverFactoryBuilder.cs │ │ ├── Metrics │ │ │ ├── MetricsConnectionObserver.cs │ │ │ ├── MetricsObserverFactory.cs │ │ │ ├── MetricsObserverFactoryBuilder.cs │ │ │ ├── MetricsOperationObserver.cs │ │ │ └── MetricsRequestObserver.cs │ │ ├── Null │ │ │ ├── NullConnectionObserver.cs │ │ │ ├── NullObserverFactory.cs │ │ │ ├── NullObserverFactoryBuilder.cs │ │ │ ├── NullOperationObserver.cs │ │ │ └── NullRequestObserver.cs │ │ └── RequestTracker │ │ │ ├── RequestTrackerObserver.cs │ │ │ ├── RequestTrackerObserverFactory.cs │ │ │ └── RequestTrackerObserverFactoryBuilder.cs │ ├── OperationState.cs │ ├── Outputs │ │ ├── AlreadyExistsInfo.cs │ │ ├── IOutput.cs │ │ ├── IsBootstrappingException.cs │ │ ├── OutputAlreadyExists.cs │ │ ├── OutputBadCredentials.cs │ │ ├── OutputConfigError.cs │ │ ├── OutputError.cs │ │ ├── OutputFunctionFailure.cs │ │ ├── OutputInvalid.cs │ │ ├── OutputIsBootstrapping.cs │ │ ├── OutputOptions.cs │ │ ├── OutputOverloaded.cs │ │ ├── OutputPrepared.cs │ │ ├── OutputProtocolError.cs │ │ ├── OutputReadTimeout.cs │ │ ├── OutputRows.cs │ │ ├── OutputSchemaChange.cs │ │ ├── OutputServerError.cs │ │ ├── OutputSetKeyspace.cs │ │ ├── OutputSyntaxError.cs │ │ ├── OutputTruncateError.cs │ │ ├── OutputUnauthorized.cs │ │ ├── OutputUnavailableException.cs │ │ ├── OutputUnprepared.cs │ │ ├── OutputVoid.cs │ │ ├── OutputWriteTimeout.cs │ │ ├── OverloadedException.cs │ │ ├── PreparedQueryNotFoundInfo.cs │ │ ├── ProtocolErrorException.cs │ │ └── ServerErrorException.cs │ ├── PlainTextAuthProvider.cs │ ├── Policies │ │ ├── AesColumnEncryptionPolicy.cs │ │ ├── AtomicMonotonicTimestampGenerator.cs │ │ ├── AtomicMonotonicWinApiTimestampGenerator.cs │ │ ├── BaseColumnEncryptionPolicy.cs │ │ ├── ColumnEncryptionKey.cs │ │ ├── ConstantReconnectionPolicy.cs │ │ ├── ConstantSpeculativeExecutionPolicy.cs │ │ ├── DCAwareRoundRobinPolicy.cs │ │ ├── DefaultLoadBalancingPolicy.cs │ │ ├── DefaultRetryPolicy.cs │ │ ├── DowngradingConsistencyRetryPolicy.cs │ │ ├── ExponentialReconnectionPolicy.cs │ │ ├── FallthroughRetryPolicy.cs │ │ ├── FixedReconnectionPolicy.cs │ │ ├── IColumnEncryptionPolicy.cs │ │ ├── IExtendedRetryPolicy.cs │ │ ├── ILoadBalancingPolicy.cs │ │ ├── IReconnectionPolicy.cs │ │ ├── IReconnectionSchedule.cs │ │ ├── IRetryPolicy.cs │ │ ├── ISpeculativeExecutionPlan.cs │ │ ├── ISpeculativeExecutionPolicy.cs │ │ ├── ITimestampGenerator.cs │ │ ├── IdempotenceAwareRetryPolicy.cs │ │ ├── LoggingRetryPolicy.cs │ │ ├── NoSpeculativeExecutionPolicy.cs │ │ ├── Policies.cs │ │ ├── RetryDecision.cs │ │ ├── RetryLoadBalancingPolicy.cs │ │ ├── RetryLoadBalancingPolicyEventArgs.cs │ │ ├── RoundRobinPolicy.cs │ │ └── TokenAwarePolicy.cs │ ├── PoolingOptions.cs │ ├── PrepareRequest.cs │ ├── PreparedStatement.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProtocolEvents │ │ ├── IProtocolEventDebouncer.cs │ │ ├── ITimer.cs │ │ ├── ITimerFactory.cs │ │ ├── Internal │ │ │ ├── EventQueue.cs │ │ │ ├── InternalKeyspaceProtocolEvent.cs │ │ │ └── KeyspaceEvents.cs │ │ ├── KeyspaceProtocolEvent.cs │ │ ├── ProtocolEvent.cs │ │ ├── ProtocolEventDebouncer.cs │ │ ├── SlidingWindowExclusiveTimer.cs │ │ ├── TaskBasedTimer.cs │ │ └── TaskBasedTimerFactory.cs │ ├── ProtocolOptions.cs │ ├── ProtocolVersion.cs │ ├── QueryOptions.cs │ ├── QueryProtocolOptions.cs │ ├── QueryTrace.cs │ ├── RPToken.cs │ ├── RecyclableMemoryStream.cs │ ├── RecyclableMemoryStreamManager.cs │ ├── RegularStatement.cs │ ├── ReplicationStrategies.cs │ ├── Requests │ │ ├── AuthResponseRequest.cs │ │ ├── BaseRequest.cs │ │ ├── BatchRequest.cs │ │ ├── BatchType.cs │ │ ├── CredentialsRequest.cs │ │ ├── ExecuteRequest.cs │ │ ├── GraphRequestHandler.cs │ │ ├── GraphTypeSerializerFactory.cs │ │ ├── ICqlRequest.cs │ │ ├── IGraphRequestHandler.cs │ │ ├── IGraphTypeSerializerFactory.cs │ │ ├── IPrepareHandler.cs │ │ ├── IPrepareHandlerFactory.cs │ │ ├── IQueryRequest.cs │ │ ├── IReprepareHandler.cs │ │ ├── IRequest.cs │ │ ├── IRequestExecution.cs │ │ ├── IRequestExecutionFactory.cs │ │ ├── IRequestHandler.cs │ │ ├── IRequestHandlerFactory.cs │ │ ├── IRequestResultHandler.cs │ │ ├── IStartupOptionsFactory.cs │ │ ├── IStartupRequestFactory.cs │ │ ├── InternalPrepareRequest.cs │ │ ├── OptionsRequest.cs │ │ ├── PrepareHandler.cs │ │ ├── PrepareHandlerFactory.cs │ │ ├── PrepareResult.cs │ │ ├── QueryRequest.cs │ │ ├── RegisterForEventRequest.cs │ │ ├── ReprepareHandler.cs │ │ ├── RequestErrorType.cs │ │ ├── RequestExecution.cs │ │ ├── RequestExecutionFactory.cs │ │ ├── RequestHandler.cs │ │ ├── RequestHandlerFactory.cs │ │ ├── ResultMetadata.cs │ │ ├── RetryDecisionWithReason.cs │ │ ├── StartupOptionsFactory.cs │ │ ├── StartupRequest.cs │ │ ├── StartupRequestFactory.cs │ │ ├── TcsMetricsRequestResultHandler.cs │ │ └── ValidHost.cs │ ├── Responses │ │ ├── AuthChallengeResponse.cs │ │ ├── AuthSuccessResponse.cs │ │ ├── AuthenticateResponse.cs │ │ ├── ErrorResponse.cs │ │ ├── EventResponse.cs │ │ ├── ReadyResponse.cs │ │ ├── Response.cs │ │ ├── ResultResponse.cs │ │ └── SupportedResponse.cs │ ├── RoutingKey.cs │ ├── RowPopulators │ │ ├── CqlColumn.cs │ │ ├── ExecutionInfo.cs │ │ ├── Row.cs │ │ ├── RowSet.cs │ │ └── RowSetMetadata.cs │ ├── SSLOptions.cs │ ├── SchemaChangeEventArgs.cs │ ├── SchemaChangedEventArgs.cs │ ├── SchemaChangedEventHandler.cs │ ├── SchemaParser.cs │ ├── SecureConnectionBundleException.cs │ ├── Serialization │ │ ├── CollectionSerializer.cs │ │ ├── CustomTypeSerializer.cs │ │ ├── DataTypeParser.cs │ │ ├── DictionarySerializer.cs │ │ ├── DurationSerializer.cs │ │ ├── GenericSerializer.cs │ │ ├── Geometry │ │ │ ├── GeometrySerializer.cs │ │ │ ├── LineStringSerializer.cs │ │ │ ├── PointSerializer.cs │ │ │ └── PolygonSerializer.cs │ │ ├── Graph │ │ │ ├── GraphSON1 │ │ │ │ ├── GraphSON1ContractResolver.cs │ │ │ │ ├── GraphSON1Converter.cs │ │ │ │ ├── GraphSON1Node.cs │ │ │ │ ├── GraphSON1TypeSerializer.cs │ │ │ │ └── GraphSONConverter.cs │ │ │ ├── GraphSON2 │ │ │ │ ├── CustomGraphSON2Reader.cs │ │ │ │ ├── CustomGraphSON2Writer.cs │ │ │ │ ├── Dse │ │ │ │ │ ├── BlobSerializer.cs │ │ │ │ │ ├── LineStringSerializer.cs │ │ │ │ │ ├── PointSerializer.cs │ │ │ │ │ └── PolygonSerializer.cs │ │ │ │ ├── EmptyGraphSON2Reader.cs │ │ │ │ ├── EmptyGraphSON2Writer.cs │ │ │ │ ├── GraphSONNode.cs │ │ │ │ ├── GraphTypeSerializer.cs │ │ │ │ ├── StringBasedSerializer.cs │ │ │ │ ├── Structure │ │ │ │ │ ├── BaseStructureDeserializer.cs │ │ │ │ │ ├── EdgeDeserializer.cs │ │ │ │ │ ├── EdgeSerializer.cs │ │ │ │ │ ├── PathDeserializer.cs │ │ │ │ │ ├── PropertyDeserializer.cs │ │ │ │ │ ├── PropertySerializer.cs │ │ │ │ │ ├── VertexDeserializer.cs │ │ │ │ │ ├── VertexPropertyDeserializer.cs │ │ │ │ │ ├── VertexPropertySerializer.cs │ │ │ │ │ └── VertexSerializer.cs │ │ │ │ └── Tinkerpop │ │ │ │ │ ├── Duration2Serializer.cs │ │ │ │ │ ├── InetAddressSerializer.cs │ │ │ │ │ ├── LocalDateSerializer.cs │ │ │ │ │ ├── LocalTimeSerializer.cs │ │ │ │ │ ├── TimestampSerializer.cs │ │ │ │ │ ├── TinkerpopDateDeserializer.cs │ │ │ │ │ ├── TinkerpopTimestampDeserializer.cs │ │ │ │ │ └── TraverserDeserializer.cs │ │ │ ├── GraphSON3 │ │ │ │ ├── CustomGraphSON3Reader.cs │ │ │ │ ├── CustomGraphSON3Writer.cs │ │ │ │ ├── Dse │ │ │ │ │ ├── ComplexTypeDefinitionHelper.cs │ │ │ │ │ ├── Duration3Serializer.cs │ │ │ │ │ ├── IComplexTypeGraphSONDeserializer.cs │ │ │ │ │ ├── IComplexTypeGraphSONSerializer.cs │ │ │ │ │ ├── TupleGraphSONDeserializer.cs │ │ │ │ │ ├── TupleGraphSONSerializer.cs │ │ │ │ │ ├── UdtGraphSONDeserializer.cs │ │ │ │ │ └── UdtGraphSONSerializer.cs │ │ │ │ ├── Structure │ │ │ │ │ └── Path3Deserializer.cs │ │ │ │ └── Tinkerpop │ │ │ │ │ ├── ByteBufferDeserializer.cs │ │ │ │ │ └── ByteBufferSerializer.cs │ │ │ ├── ICustomGraphSONReader.cs │ │ │ ├── ICustomGraphSONWriter.cs │ │ │ ├── IGraphSONStructureDeserializer.cs │ │ │ ├── IGraphTypeSerializer.cs │ │ │ ├── INode.cs │ │ │ └── Tinkerpop │ │ │ │ └── Structure │ │ │ │ └── IO │ │ │ │ └── GraphSON │ │ │ │ ├── BigIntegerDeserializer.cs │ │ │ │ ├── BigIntegerSerializer.cs │ │ │ │ ├── ByteConverter.cs │ │ │ │ ├── CharConverter.cs │ │ │ │ ├── ClassSerializer.cs │ │ │ │ ├── DecimalConverter.cs │ │ │ │ ├── DirectionDeserializer.cs │ │ │ │ ├── DoubleConverter.cs │ │ │ │ ├── DurationSerializer.cs │ │ │ │ ├── EnumSerializer.cs │ │ │ │ ├── FloatConverter.cs │ │ │ │ ├── GraphSON2Reader.cs │ │ │ │ ├── GraphSON2Writer.cs │ │ │ │ ├── GraphSONReader.cs │ │ │ │ ├── GraphSONTokens.cs │ │ │ │ ├── GraphSONUtil.cs │ │ │ │ ├── GraphSONWriter.cs │ │ │ │ ├── Int16Converter.cs │ │ │ │ ├── Int32Converter.cs │ │ │ │ ├── Int64Converter.cs │ │ │ │ ├── ListSerializer.cs │ │ │ │ ├── MapSerializer.cs │ │ │ │ ├── NumberConverter.cs │ │ │ │ ├── SetSerializer.cs │ │ │ │ ├── TDeserializer.cs │ │ │ │ ├── UuidDeserializer.cs │ │ │ │ └── UuidSerializer.cs │ │ ├── IGenericSerializer.cs │ │ ├── ISerializer.cs │ │ ├── ISerializerManager.cs │ │ ├── ITypeSerializer.cs │ │ ├── LegacyTypeSerializer.cs │ │ ├── Primitive │ │ │ ├── BigIntegerSerializer.cs │ │ │ ├── BooleanSerializer.cs │ │ │ ├── ByteArraySerializer.cs │ │ │ ├── DateTimeOffsetSerializer.cs │ │ │ ├── DateTimeSerializer.cs │ │ │ ├── DecimalSerializer.cs │ │ │ ├── DoubleSerializer.cs │ │ │ ├── FloatSerializer.cs │ │ │ ├── GuidSerializer.cs │ │ │ ├── IntSerializer.cs │ │ │ ├── IpAddressSerializer.cs │ │ │ ├── LocalDateSerializer.cs │ │ │ ├── LocalTimeSerializer.cs │ │ │ ├── LongSerializer.cs │ │ │ ├── SbyteSerializer.cs │ │ │ ├── ShortSerializer.cs │ │ │ ├── StringSerializer.cs │ │ │ └── TimeUuidSerializer.cs │ │ ├── Search │ │ │ └── DateRangeSerializer.cs │ │ ├── Serializer.cs │ │ ├── SerializerManager.cs │ │ ├── TupleSerializer.cs │ │ ├── TypeSerializer.cs │ │ ├── TypeSerializerDefinitions.cs │ │ ├── UdtSerializer.cs │ │ ├── VectorSerializer.cs │ │ └── VintSerializer.cs │ ├── Session.cs │ ├── SessionManagement │ │ ├── IInternalCluster.cs │ │ ├── IInternalSession.cs │ │ ├── ISessionFactory.cs │ │ └── SessionFactory.cs │ ├── SessionRequestInfo.cs │ ├── SessionState.cs │ ├── SimpleAuthInfoProvider.cs │ ├── SimpleStatement.cs │ ├── SniOptions.cs │ ├── SocketOptions.cs │ ├── Statement.cs │ ├── StatusChangeEventArgs.cs │ ├── TableColumn.cs │ ├── TableMetadata.cs │ ├── TableOptions.cs │ ├── TargettedSimpleStatement.cs │ ├── Tasks │ │ ├── HashedWheelTimer.cs │ │ └── TaskHelper.cs │ ├── TimeUuid.cs │ ├── TokenFactory.cs │ ├── TokenMap.cs │ ├── TopologyChangeEventArgs.cs │ ├── TypeAdapters.cs │ ├── UdtMap.cs │ ├── UdtMappingDefinitions.cs │ ├── Unset.cs │ └── Utils.cs ├── Directory.Build.props ├── Extensions │ ├── Cassandra.AppMetrics │ │ ├── Cassandra.AppMetrics.csproj │ │ ├── DriverAppMetricsOptions.cs │ │ ├── HdrHistogram │ │ │ ├── .editorconfig │ │ │ ├── Histogram.cs │ │ │ ├── HistogramBase.cs │ │ │ ├── HistogramExtensions.cs │ │ │ ├── HistogramFactoryDelegate.cs │ │ │ ├── IRecorder.cs │ │ │ ├── Iteration │ │ │ │ ├── AbstractHistogramEnumerator.cs │ │ │ │ ├── AllValueEnumerable.cs │ │ │ │ ├── AllValuesEnumerator.cs │ │ │ │ ├── HistogramIterationValue.cs │ │ │ │ ├── PercentileEnumerable.cs │ │ │ │ ├── PercentileEnumerator.cs │ │ │ │ ├── RecordedValuesEnumerable.cs │ │ │ │ └── RecordedValuesEnumerator.cs │ │ │ ├── LongConcurrentHistogram.cs │ │ │ ├── LongHistogram.cs │ │ │ ├── Recorder.cs │ │ │ └── Utilities │ │ │ │ ├── AtomicLongArray.cs │ │ │ │ ├── Bitwise.cs │ │ │ │ ├── UnixTimeExtensions.cs │ │ │ │ └── WriterReaderPhaser.cs │ │ ├── Implementations │ │ │ ├── AppMetricsCounter.cs │ │ │ ├── AppMetricsDriverMetricsProvider.cs │ │ │ ├── AppMetricsExtensions.cs │ │ │ ├── AppMetricsGauge.cs │ │ │ ├── AppMetricsHistogramValue.cs │ │ │ ├── AppMetricsMeter.cs │ │ │ ├── AppMetricsMeterValue.cs │ │ │ ├── AppMetricsTimer.cs │ │ │ ├── AppMetricsTimerValue.cs │ │ │ ├── HdrHistogramReservoir.cs │ │ │ └── HdrSnapshot.cs │ │ ├── MetricTypes │ │ │ ├── IAppMetricsCounter.cs │ │ │ ├── IAppMetricsGauge.cs │ │ │ ├── IAppMetricsMeter.cs │ │ │ ├── IAppMetricsMetric.cs │ │ │ └── IAppMetricsTimer.cs │ │ ├── MetricValues │ │ │ ├── IAppMetricsHistogramValue.cs │ │ │ ├── IAppMetricsMeterValue.cs │ │ │ ├── IAppMetricsMetricWithValue.cs │ │ │ └── IAppMetricsTimerValue.cs │ │ └── MetricsExtensions.cs │ └── Cassandra.OpenTelemetry │ │ ├── BuilderExtensions.cs │ │ ├── Cassandra.OpenTelemetry.csproj │ │ ├── CassandraActivitySourceHelper.cs │ │ ├── CassandraInstrumentationOptions.cs │ │ └── OpenTelemetryRequestTracker.cs └── stylecop.json └── tools ├── JUnitXml.xslt ├── nunit3-junit.xslt ├── nunit3-xunit.xslt └── trx-to-junit.xslt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.nav: -------------------------------------------------------------------------------- 1 | features 2 | api 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile.scheduled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/Jenkinsfile.scheduled -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/api-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/api-docs/README.md -------------------------------------------------------------------------------- /doc/api-docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/api-docs/docfx.json -------------------------------------------------------------------------------- /doc/api-docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/api-docs/index.md -------------------------------------------------------------------------------- /doc/api-docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/api-docs/toc.yml -------------------------------------------------------------------------------- /doc/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/examples/README.md -------------------------------------------------------------------------------- /doc/faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/faq/README.md -------------------------------------------------------------------------------- /doc/features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/README.md -------------------------------------------------------------------------------- /doc/features/address-resolution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/address-resolution/README.md -------------------------------------------------------------------------------- /doc/features/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/auth/README.md -------------------------------------------------------------------------------- /doc/features/automatic-failover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/automatic-failover/README.md -------------------------------------------------------------------------------- /doc/features/cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/cloud/README.md -------------------------------------------------------------------------------- /doc/features/column-encryption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/column-encryption/README.md -------------------------------------------------------------------------------- /doc/features/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/README.md -------------------------------------------------------------------------------- /doc/features/components/adonet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/adonet/README.md -------------------------------------------------------------------------------- /doc/features/components/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/core/README.md -------------------------------------------------------------------------------- /doc/features/components/core/statements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/core/statements/README.md -------------------------------------------------------------------------------- /doc/features/components/core/statements/batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/core/statements/batch/README.md -------------------------------------------------------------------------------- /doc/features/components/linq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/linq/README.md -------------------------------------------------------------------------------- /doc/features/components/linq/batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/linq/batch/README.md -------------------------------------------------------------------------------- /doc/features/components/mapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/mapper/README.md -------------------------------------------------------------------------------- /doc/features/components/mapper/batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/components/mapper/batch/README.md -------------------------------------------------------------------------------- /doc/features/connection-heartbeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/connection-heartbeat/README.md -------------------------------------------------------------------------------- /doc/features/connection-pooling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/connection-pooling/README.md -------------------------------------------------------------------------------- /doc/features/datatypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/datatypes/README.md -------------------------------------------------------------------------------- /doc/features/datatypes/datetime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/datatypes/datetime/README.md -------------------------------------------------------------------------------- /doc/features/datatypes/nulls-unset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/datatypes/nulls-unset/README.md -------------------------------------------------------------------------------- /doc/features/execution-profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/execution-profiles/README.md -------------------------------------------------------------------------------- /doc/features/geotypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/geotypes/README.md -------------------------------------------------------------------------------- /doc/features/graph-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/graph-support/README.md -------------------------------------------------------------------------------- /doc/features/metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/metadata/README.md -------------------------------------------------------------------------------- /doc/features/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/metrics/README.md -------------------------------------------------------------------------------- /doc/features/metrics/app-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/metrics/app-metrics/README.md -------------------------------------------------------------------------------- /doc/features/metrics/metrics-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/metrics/metrics-list/README.md -------------------------------------------------------------------------------- /doc/features/native-protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/native-protocol/README.md -------------------------------------------------------------------------------- /doc/features/opentelemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/opentelemetry/README.md -------------------------------------------------------------------------------- /doc/features/paging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/paging/README.md -------------------------------------------------------------------------------- /doc/features/parametrized-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/parametrized-queries/README.md -------------------------------------------------------------------------------- /doc/features/query-timestamps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/query-timestamps/README.md -------------------------------------------------------------------------------- /doc/features/query-warnings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/query-warnings/README.md -------------------------------------------------------------------------------- /doc/features/request-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/request-tracker/README.md -------------------------------------------------------------------------------- /doc/features/routing-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/routing-queries/README.md -------------------------------------------------------------------------------- /doc/features/speculative-retries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/speculative-retries/README.md -------------------------------------------------------------------------------- /doc/features/tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/tls/README.md -------------------------------------------------------------------------------- /doc/features/tuning-policies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/tuning-policies/README.md -------------------------------------------------------------------------------- /doc/features/udfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/udfs/README.md -------------------------------------------------------------------------------- /doc/features/udts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/udts/README.md -------------------------------------------------------------------------------- /doc/features/vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/features/vectors/README.md -------------------------------------------------------------------------------- /doc/upgrade-guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/upgrade-guide/README.md -------------------------------------------------------------------------------- /doc/upgrade-guide/upgrade-from-dse-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doc/upgrade-guide/upgrade-from-dse-driver/README.md -------------------------------------------------------------------------------- /docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/docs.yaml -------------------------------------------------------------------------------- /doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/doxyfile -------------------------------------------------------------------------------- /examples/ConcurrentExecutions/ExecuteInLoop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/ConcurrentExecutions/ExecuteInLoop/Program.cs -------------------------------------------------------------------------------- /examples/Mapper/MultipleKeyspacesSingleSession/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/Mapper/MultipleKeyspacesSingleSession/User.cs -------------------------------------------------------------------------------- /examples/Metrics/AppMetricsGraphite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/Metrics/AppMetricsGraphite/Program.cs -------------------------------------------------------------------------------- /examples/OpenTelemetry/DistributedTracing/Api/Api.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/OpenTelemetry/DistributedTracing/Api/Api.http -------------------------------------------------------------------------------- /examples/OpenTelemetry/DistributedTracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/OpenTelemetry/DistributedTracing/README.md -------------------------------------------------------------------------------- /examples/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/README.MD -------------------------------------------------------------------------------- /examples/Ssl/SslServerAuthOnly/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/Ssl/SslServerAuthOnly/Program.cs -------------------------------------------------------------------------------- /examples/Ssl/SslServerAuthOnly/SslServerAuthOnly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/Ssl/SslServerAuthOnly/SslServerAuthOnly.csproj -------------------------------------------------------------------------------- /examples/Ssl/SslTwoWayAuth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/Ssl/SslTwoWayAuth/Program.cs -------------------------------------------------------------------------------- /examples/Ssl/SslTwoWayAuth/SslTwoWayAuth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/Ssl/SslTwoWayAuth/SslTwoWayAuth.csproj -------------------------------------------------------------------------------- /examples/examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/examples/examples.sln -------------------------------------------------------------------------------- /proposals/open-telemetry/tracing-rfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/proposals/open-telemetry/tracing-rfc.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/.editorconfig -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Ado/AdoBasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Ado/AdoBasicTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/BaseIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/BaseIntegrationTest.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/CommonFixtureSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/CommonFixtureSetup.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/BasicTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/BasicTypeTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/BatchStatements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/BatchStatements.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/ClusterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/ClusterTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/CollectionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/CollectionsTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/CompressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/CompressionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/ConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/ConnectionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/ConsistencyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/ConsistencyTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/EmptyColumnTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/EmptyColumnTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/ExceptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/ExceptionsTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/HeartbeatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/HeartbeatTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/LargeDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/LargeDataTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/MemoryLeakTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/MemoryLeakTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/MetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/MetadataTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/PagingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/PagingTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/PoolShortTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/PoolShortTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/PoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/PoolTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/PrepareLongTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/PrepareLongTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/SessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/SessionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/StressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/StressTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/TimestampTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/TimestampTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/TupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/TupleTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/UdfTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/UdfTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Core/UdtMappingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Core/UdtMappingsTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/DurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/DurationTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Geometry/PointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Geometry/PointTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Geometry/PolygonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Geometry/PolygonTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Linq/LinqMethods/Take.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Linq/LinqMethods/Take.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Linq/Structures/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Linq/Structures/Movie.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Linq/Structures/Tweet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Linq/Structures/Tweet.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Mapping/Tests/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Mapping/Tests/Counter.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Mapping/Tests/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Mapping/Tests/Delete.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Mapping/Tests/Fetch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Mapping/Tests/Fetch.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Mapping/Tests/First.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Mapping/Tests/First.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Mapping/Tests/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Mapping/Tests/Single.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Mapping/Tests/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Mapping/Tests/Update.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/Metrics/MetricsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/Metrics/MetricsTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/SharedClusterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/SharedClusterTest.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/SharedSimulacronTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/SharedSimulacronTests.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/SimulacronTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/SimulacronTest.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/TestBase/QueryTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/TestBase/QueryTools.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/TestBase/Randomm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/TestBase/Randomm.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/TestBase/TestGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/TestBase/TestGlobals.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/TestBase/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/TestBase/TestUtils.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/TestDataTypes/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/TestDataTypes/Contact.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/TestDataTypes/Phone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/TestDataTypes/Phone.cs -------------------------------------------------------------------------------- /src/Cassandra.IntegrationTests/TestDataTypes/Phone2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.IntegrationTests/TestDataTypes/Phone2.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/.editorconfig -------------------------------------------------------------------------------- /src/Cassandra.Tests/AbstractResponseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/AbstractResponseTest.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/AddressTranslatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/AddressTranslatorTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/AdoUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/AdoUnitTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ApiTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/BaseUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/BaseUnitTest.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/BuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/BuilderTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Cassandra.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Cassandra.Tests.csproj -------------------------------------------------------------------------------- /src/Cassandra.Tests/ClusterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ClusterTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/CollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/CollectionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ConnectionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/CqlCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/CqlCommandTest.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/CqlParameterCollectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/CqlParameterCollectionTest.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/CqlParameterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/CqlParameterTest.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/CustomTypeSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/CustomTypeSerializerTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/DataStax/Cloud/certs/example.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/DataStax/Cloud/certs/example.crt -------------------------------------------------------------------------------- /src/Cassandra.Tests/DataStax/Graph/ExecuteGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/DataStax/Graph/ExecuteGraphTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/DataStax/Graph/GraphOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/DataStax/Graph/GraphOptionsTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/DataStax/Search/DateRangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/DataStax/Search/DateRangeTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/DataTypeParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/DataTypeParserTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/DurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/DurationTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/EndianBitConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/EndianBitConverterTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ExceptionsUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ExceptionsUnitTest.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ExecutionProfiles/ClusterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ExecutionProfiles/ClusterTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ExecutionProfiles/SessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ExecutionProfiles/SessionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Extensions/NumericTypeConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Extensions/NumericTypeConstraint.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/FixedRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/FixedRandom.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/FrameParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/FrameParserTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Geometry/LineStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Geometry/LineStringTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Geometry/PointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Geometry/PointTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Geometry/PolygonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Geometry/PolygonTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/HostConnectionPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/HostConnectionPoolTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/HostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/HostTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/IOUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/IOUnitTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/KeyspaceMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/KeyspaceMetadataTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/LocalDateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/LocalDateTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/LocalTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/LocalTimeTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/LoggingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/LoggingTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/BatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/BatchTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/CqlGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/CqlGeneratorTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/DeleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/DeleteTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/ExecuteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/ExecuteTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/FetchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/FetchTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/FirstTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/FirstTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/InsertTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/InsertTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Linq/LinqToCqlUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Linq/LinqToCqlUnitTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/MappingTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/MappingTestBase.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/Album.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/AllTypesDecorated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/AllTypesDecorated.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/AllTypesEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/AllTypesEntity.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/ContactMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/ContactMethod.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/DecoratedUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/DecoratedUser.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/FluentUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/FluentUser.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/HairColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/HairColor.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/InsertUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/InsertUser.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/PlainUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/PlainUser.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/RainbowColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/RainbowColor.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/SensorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/SensorData.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/Song.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/Song.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/UdtAndTuplePoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/UdtAndTuplePoco.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/UserType.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/VarintPoco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/VarintPoco.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/Pocos/VectorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/Pocos/VectorEntity.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/StatementFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/StatementFactoryTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/TestData/TestDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/TestData/TestDataHelper.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/TypeConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/TypeConverterTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Mapping/UpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Mapping/UpdateTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Metrics/MetricsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Metrics/MetricsTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ObsoletedMemberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ObsoletedMemberTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/OpenTelemetryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/OpenTelemetryTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/OperationStateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/OperationStateExtensions.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/OutputErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/OutputErrorTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/PoliciesUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/PoliciesUnitTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/PreparedStatementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/PreparedStatementTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ProtocolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ProtocolTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/RequestExecutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/RequestExecutionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/RequestHandlerMockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/RequestHandlerMockTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/RequestHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/RequestHandlerTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Requests/PrepareHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Requests/PrepareHandlerTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/Requests/ProxyResultResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/Requests/ProxyResultResponse.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ResponseFrameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ResponseFrameTest.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/RowSetUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/RowSetUnitTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/SchemaParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/SchemaParserTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/SerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/SerializerTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/SessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/SessionTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/StatementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/StatementTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TargetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TargetTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TaskTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestAttributes/WinOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestAttributes/WinOnlyAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestCategory.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestHelper.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestHelpers/FakeInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestHelpers/FakeInitializer.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestHelpers/TestHostFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestHelpers/TestHostFactory.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestHelpers/UnixTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestHelpers/UnixTimeExtensions.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestTimeoutAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestTimeoutAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TestTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TestTraceListener.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/ThreadPerTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/ThreadPerTaskScheduler.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TimeUuidTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TimeUuidTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TimeoutTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TimestampTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TimestampTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/TokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/TokenTests.cs -------------------------------------------------------------------------------- /src/Cassandra.Tests/UtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.Tests/UtilsTests.cs -------------------------------------------------------------------------------- /src/Cassandra.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.sln -------------------------------------------------------------------------------- /src/Cassandra.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra.sln.DotSettings -------------------------------------------------------------------------------- /src/Cassandra/AggregateMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/AggregateMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/BatchStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/BatchStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/BeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/BeConverter.cs -------------------------------------------------------------------------------- /src/Cassandra/BigIntegerTypeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/BigIntegerTypeAdapter.cs -------------------------------------------------------------------------------- /src/Cassandra/BoolSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/BoolSwitch.cs -------------------------------------------------------------------------------- /src/Cassandra/BoundStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/BoundStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Builder.cs -------------------------------------------------------------------------------- /src/Cassandra/Cassandra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Cassandra.csproj -------------------------------------------------------------------------------- /src/Cassandra/CassandraConnectionStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/CassandraConnectionStringBuilder.cs -------------------------------------------------------------------------------- /src/Cassandra/CassandraEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/CassandraEventArgs.cs -------------------------------------------------------------------------------- /src/Cassandra/CassandraEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/CassandraEventHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/CassandraEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/CassandraEventType.cs -------------------------------------------------------------------------------- /src/Cassandra/ClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ClientOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Cluster.cs -------------------------------------------------------------------------------- /src/Cassandra/Collections/ArrayBackedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Collections/ArrayBackedList.cs -------------------------------------------------------------------------------- /src/Cassandra/Collections/ByteArrayComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Collections/ByteArrayComparer.cs -------------------------------------------------------------------------------- /src/Cassandra/Collections/CopyOnWriteDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Collections/CopyOnWriteDictionary.cs -------------------------------------------------------------------------------- /src/Cassandra/Collections/CopyOnWriteList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Collections/CopyOnWriteList.cs -------------------------------------------------------------------------------- /src/Cassandra/Collections/IThreadSafeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Collections/IThreadSafeDictionary.cs -------------------------------------------------------------------------------- /src/Cassandra/Collections/OrderedHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Collections/OrderedHashSet.cs -------------------------------------------------------------------------------- /src/Cassandra/Collections/ReadOnlyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Collections/ReadOnlyCollection.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/LZ4Compressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/LZ4Compressor.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/CorruptionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/CorruptionException.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/Memory.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/README.md -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/SlowMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/SlowMemory.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/SnappyDecompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/SnappyDecompressor.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/SnappyInternalUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/SnappyInternalUtils.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/license-header.txt -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/license.txt -------------------------------------------------------------------------------- /src/Cassandra/Compression/Snappy/notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/Snappy/notice.md -------------------------------------------------------------------------------- /src/Cassandra/Compression/SnappyCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/SnappyCompressor.cs -------------------------------------------------------------------------------- /src/Cassandra/Compression/WrappedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Compression/WrappedStream.cs -------------------------------------------------------------------------------- /src/Cassandra/CompressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/CompressionType.cs -------------------------------------------------------------------------------- /src/Cassandra/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Configuration.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Connection.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/ConnectionEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/ConnectionEndpoint.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/ConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/ConnectionFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Control/ContactPointParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Control/ContactPointParser.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Control/ControlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Control/ControlConnection.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Control/IContactPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Control/IContactPoint.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Control/IControlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Control/IControlConnection.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Control/ITopologyRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Control/ITopologyRefresher.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Control/SniContactPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Control/SniContactPoint.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/Control/TopologyRefresher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/Control/TopologyRefresher.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/DnsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/DnsResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/EndPointResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/EndPointResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/HostConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/HostConnectionPool.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/HostConnectionPoolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/HostConnectionPoolFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/HostnameContactPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/HostnameContactPoint.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IConnection.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IConnectionEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IConnectionEndpoint.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IConnectionFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IDnsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IDnsResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IEndPointResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IEndPointResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IHostConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IHostConnectionPool.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IHostConnectionPoolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IHostConnectionPoolFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IRequestError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IRequestError.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/IServerNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/IServerNameResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/ISniEndPointResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/ISniEndPointResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/ISniOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/ISniOptionsProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/ITcpSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/ITcpSocket.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/RequestError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/RequestError.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/ServerNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/ServerNameResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/SingleThreadedResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/SingleThreadedResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/SniConnectionEndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/SniConnectionEndPoint.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/SniEndPointResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/SniEndPointResolver.cs -------------------------------------------------------------------------------- /src/Cassandra/Connections/TcpSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Connections/TcpSocket.cs -------------------------------------------------------------------------------- /src/Cassandra/ConsistencyLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ConsistencyLevel.cs -------------------------------------------------------------------------------- /src/Cassandra/CqlQueryTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/CqlQueryTools.cs -------------------------------------------------------------------------------- /src/Cassandra/CqlVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/CqlVector.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlBatchTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlBatchTransaction.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlCommand.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlCommandBuilder.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlConnection.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlDataAdapter.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlParameter.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlParameterCollection.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlProviderFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/CqlReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/CqlReader.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/AllowFilteringAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/AllowFilteringAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/Batch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/Batch.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/BatchV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/BatchV1.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/BatchV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/BatchV2.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/ClientProjectionCqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/ClientProjectionCqlQuery.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/ClusteringKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/ClusteringKeyAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/ColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/ColumnAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CompactStorageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CompactStorageAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CounterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CounterAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlArgumentException.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlCommand.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlConditionalCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlConditionalCommand.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlDelete.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlExpressionVisitor.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlFunction.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlInsert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlInsert.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlLinqNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlLinqNotSupportedException.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlMthHelps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlMthHelps.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlOperator.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlQuery.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlQueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlQueryBase.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlQueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlQueryExtensions.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlQuerySingleElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlQuerySingleElement.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlQueryTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlQueryTools.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlScalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlScalar.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlToken.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/CqlUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/CqlUpdate.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/IInternalStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/IInternalStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/ITable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/ITable.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/IgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/IgnoreAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/ParsePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/ParsePhase.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/PartitionKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/PartitionKeyAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/SecondaryIndexAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/SecondaryIndexAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/SessionExtensions.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/StaticColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/StaticColumnAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/Table.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/TableAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/TableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/TableType.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/Linq/VisitingParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/Linq/VisitingParam.cs -------------------------------------------------------------------------------- /src/Cassandra/Data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Data/README.rst -------------------------------------------------------------------------------- /src/Cassandra/DataCollectionMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataCollectionMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/.editorconfig -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/BaseDseAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/BaseDseAuthenticator.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/DseGssapiAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/DseGssapiAuthProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/DsePlainTextAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/DsePlainTextAuthProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/GssapiClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/GssapiClientFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/IGssapiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/IGssapiClient.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/ByteWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/ByteWriter.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/Contexts/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/Contexts/Context.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/EnumMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/EnumMgr.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/NativeMethods.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/PackageNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/PackageNames.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/PackageSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/PackageSupport.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/SecPkgInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/SecPkgInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/SecurityStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/SecurityStatus.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/SspiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/SspiException.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/SspiHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/SspiHandle.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/Sspi/TimeStamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/Sspi/TimeStamp.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Auth/SspiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Auth/SspiClient.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/CloudConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/CloudConfiguration.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/CloudMetadataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/CloudMetadataResult.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/CloudMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/CloudMetadataService.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/CloudSniOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/CloudSniOptionsProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/ContactInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/ContactInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/ICertificateValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/ICertificateValidator.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/ICloudMetadataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/ICloudMetadataService.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Cloud/SecureConnectionBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Cloud/SecureConnectionBundle.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/Direction.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/Edge.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/Element.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/ElementMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/ElementMap.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/EnumWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/EnumWrapper.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/FluentGraphStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/FluentGraphStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/GraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/GraphNode.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/GraphNodeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/GraphNodeConverter.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/GraphOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/GraphOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/GraphResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/GraphResultSet.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/GraphStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/GraphStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IEdge.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IElement.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IGraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IGraphNode.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IGraphStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IGraphStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IPath.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IProperty.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IPropertyWithElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IPropertyWithElement.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IVertex.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/IVertexProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/IVertexProperty.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/Path.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/Property.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/SimpleGraphStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/SimpleGraphStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/TEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/TEnum.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/Traverser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/Traverser.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/Vertex.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Graph/VertexProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Graph/VertexProperty.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Insights/IInsightsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Insights/IInsightsClient.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Insights/InsightsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Insights/InsightsClient.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Insights/Schema/Insight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Insights/Schema/Insight.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Insights/Schema/InsightType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Insights/Schema/InsightType.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Search/DateRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Search/DateRange.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Search/DateRangeBound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Search/DateRangeBound.cs -------------------------------------------------------------------------------- /src/Cassandra/DataStax/Search/DateRangePrecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DataStax/Search/DateRangePrecision.cs -------------------------------------------------------------------------------- /src/Cassandra/DecimalTypeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DecimalTypeAdapter.cs -------------------------------------------------------------------------------- /src/Cassandra/DefaultAddressTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DefaultAddressTranslator.cs -------------------------------------------------------------------------------- /src/Cassandra/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Diagnostics.cs -------------------------------------------------------------------------------- /src/Cassandra/Duration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Duration.cs -------------------------------------------------------------------------------- /src/Cassandra/DynamicCompositeTypeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/DynamicCompositeTypeAdapter.cs -------------------------------------------------------------------------------- /src/Cassandra/EC2MultiRegionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/EC2MultiRegionTranslator.cs -------------------------------------------------------------------------------- /src/Cassandra/EncryptedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/EncryptedValue.cs -------------------------------------------------------------------------------- /src/Cassandra/EndianBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/EndianBitConverter.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/AlreadyExistsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/AlreadyExistsException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/AuthenticationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/AuthenticationException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/BusyPoolException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/BusyPoolException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/DriverException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/DriverException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/DriverInternalError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/DriverInternalError.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/ExecutionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/ExecutionException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/FunctionFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/FunctionFailureException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/InitFatalErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/InitFatalErrorException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/InvalidQueryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/InvalidQueryException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/InvalidTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/InvalidTypeException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/NoHostAvailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/NoHostAvailableException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/OperationTimedOutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/OperationTimedOutException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/QueryExecutionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/QueryExecutionException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/QueryTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/QueryTimeoutException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/QueryValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/QueryValidationException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/ReadFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/ReadFailureException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/ReadTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/ReadTimeoutException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/RequestInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/RequestInvalidException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/SyntaxError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/SyntaxError.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/ToManyConnectionsPerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/ToManyConnectionsPerHost.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/TraceRetrievalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/TraceRetrievalException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/TruncateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/TruncateException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/UnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/UnauthorizedException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/UnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/UnavailableException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/WriteFailureException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/WriteFailureException.cs -------------------------------------------------------------------------------- /src/Cassandra/Exceptions/WriteTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Exceptions/WriteTimeoutException.cs -------------------------------------------------------------------------------- /src/Cassandra/ExecutionProfiles/ExecutionProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ExecutionProfiles/ExecutionProfile.cs -------------------------------------------------------------------------------- /src/Cassandra/ExecutionProfiles/IRequestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ExecutionProfiles/IRequestOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/ExecutionProfiles/RequestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ExecutionProfiles/RequestOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/ExecutionProfiles/RequestOptionsMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ExecutionProfiles/RequestOptionsMapper.cs -------------------------------------------------------------------------------- /src/Cassandra/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Extensions.cs -------------------------------------------------------------------------------- /src/Cassandra/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Frame.cs -------------------------------------------------------------------------------- /src/Cassandra/FrameHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/FrameHeader.cs -------------------------------------------------------------------------------- /src/Cassandra/FrameParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/FrameParser.cs -------------------------------------------------------------------------------- /src/Cassandra/FrameReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/FrameReader.cs -------------------------------------------------------------------------------- /src/Cassandra/FrameWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/FrameWriter.cs -------------------------------------------------------------------------------- /src/Cassandra/FunctionMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/FunctionMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/Geometry/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Geometry/Geometry.cs -------------------------------------------------------------------------------- /src/Cassandra/Geometry/LineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Geometry/LineString.cs -------------------------------------------------------------------------------- /src/Cassandra/Geometry/LineStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Geometry/LineStringJsonConverter.cs -------------------------------------------------------------------------------- /src/Cassandra/Geometry/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Geometry/Point.cs -------------------------------------------------------------------------------- /src/Cassandra/Geometry/PointJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Geometry/PointJsonConverter.cs -------------------------------------------------------------------------------- /src/Cassandra/Geometry/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Geometry/Polygon.cs -------------------------------------------------------------------------------- /src/Cassandra/Geometry/PolygonJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Geometry/PolygonJsonConverter.cs -------------------------------------------------------------------------------- /src/Cassandra/GraphProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/GraphProtocol.cs -------------------------------------------------------------------------------- /src/Cassandra/GraphProtocolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/GraphProtocolExtensions.cs -------------------------------------------------------------------------------- /src/Cassandra/HeaderFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/HeaderFlags.cs -------------------------------------------------------------------------------- /src/Cassandra/Helpers/AssemblyHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Helpers/AssemblyHelpers.cs -------------------------------------------------------------------------------- /src/Cassandra/Helpers/CollectionHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Helpers/CollectionHelpers.cs -------------------------------------------------------------------------------- /src/Cassandra/Helpers/DefaultRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Helpers/DefaultRandom.cs -------------------------------------------------------------------------------- /src/Cassandra/Helpers/IRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Helpers/IRandom.cs -------------------------------------------------------------------------------- /src/Cassandra/Helpers/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Helpers/PlatformHelper.cs -------------------------------------------------------------------------------- /src/Cassandra/Helpers/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Helpers/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /src/Cassandra/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Host.cs -------------------------------------------------------------------------------- /src/Cassandra/HostDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/HostDistance.cs -------------------------------------------------------------------------------- /src/Cassandra/Hosts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Hosts.cs -------------------------------------------------------------------------------- /src/Cassandra/HostsEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/HostsEventArgs.cs -------------------------------------------------------------------------------- /src/Cassandra/HostsEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/HostsEventHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/IAddressTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IAddressTranslator.cs -------------------------------------------------------------------------------- /src/Cassandra/IAuthInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IAuthInfoProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/IAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IAuthProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/IAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IAuthenticator.cs -------------------------------------------------------------------------------- /src/Cassandra/ICluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ICluster.cs -------------------------------------------------------------------------------- /src/Cassandra/IExecutionProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IExecutionProfile.cs -------------------------------------------------------------------------------- /src/Cassandra/IExecutionProfileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IExecutionProfileBuilder.cs -------------------------------------------------------------------------------- /src/Cassandra/IExecutionProfileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IExecutionProfileOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/IFrameCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IFrameCompressor.cs -------------------------------------------------------------------------------- /src/Cassandra/IInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IInitializer.cs -------------------------------------------------------------------------------- /src/Cassandra/IMetadataQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IMetadataQueryProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/IRequestTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IRequestTracker.cs -------------------------------------------------------------------------------- /src/Cassandra/ISchemaParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ISchemaParser.cs -------------------------------------------------------------------------------- /src/Cassandra/ISession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ISession.cs -------------------------------------------------------------------------------- /src/Cassandra/ISessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ISessionState.cs -------------------------------------------------------------------------------- /src/Cassandra/IStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/IToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IToken.cs -------------------------------------------------------------------------------- /src/Cassandra/ITypeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ITypeAdapter.cs -------------------------------------------------------------------------------- /src/Cassandra/IndexMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/IndexMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/KeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/KeyType.cs -------------------------------------------------------------------------------- /src/Cassandra/KeyspaceMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/KeyspaceMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/LocalDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/LocalDate.cs -------------------------------------------------------------------------------- /src/Cassandra/LocalTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/LocalTime.cs -------------------------------------------------------------------------------- /src/Cassandra/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Logger.cs -------------------------------------------------------------------------------- /src/Cassandra/M3PToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/M3PToken.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/AppliedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/AppliedInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Attributes/ColumnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Attributes/ColumnAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Attributes/CounterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Attributes/CounterAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Attributes/FrozenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Attributes/FrozenAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Attributes/FrozenKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Attributes/FrozenKeyAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Attributes/IgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Attributes/IgnoreAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Attributes/TableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Attributes/TableAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ColumnMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ColumnMap.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Cql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Cql.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/CqlBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/CqlBatch.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/CqlQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/CqlQueryOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/IColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/IColumnDefinition.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ICqlBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ICqlBatch.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ICqlQueryAsyncClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ICqlQueryAsyncClient.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ICqlQueryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ICqlQueryClient.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ICqlWriteAsyncClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ICqlWriteAsyncClient.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ICqlWriteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ICqlWriteClient.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/IMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/IMapper.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/IPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/IPage.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/IPocoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/IPocoData.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ITypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ITypeDefinition.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Map.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Mapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Mapper.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/MapperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/MapperFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/MappingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/MappingConfiguration.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Mappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Mappings.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Page.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/PocoColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/PocoColumn.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/PocoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/PocoData.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/PocoDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/PocoDataFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/PrimaryKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/PrimaryKeyAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/ProjectionExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/ProjectionExpressionVisitor.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/SortOrder.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Statements/CqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Statements/CqlGenerator.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Statements/StatementFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Statements/StatementFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/TableNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/TableNameAttribute.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/TypeConversion/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/TypeConversion/TypeConverter.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Utils/CqlIdentifierHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Utils/CqlIdentifierHelper.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Utils/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Utils/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Utils/ICqlIdentifierHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Utils/ICqlIdentifierHelper.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Utils/LookupKeyedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Utils/LookupKeyedCollection.cs -------------------------------------------------------------------------------- /src/Cassandra/Mapping/Utils/MemberInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Mapping/Utils/MemberInfoExtensions.cs -------------------------------------------------------------------------------- /src/Cassandra/MaterializedViewMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MaterializedViewMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metadata.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/DatacenterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/DatacenterInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/EverywhereStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/EverywhereStrategy.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/IReadOnlyTokenMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/IReadOnlyTokenMap.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/IReplicationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/IReplicationStrategy.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/ISchemaParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/ISchemaParserFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/LocalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/LocalStrategy.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/ReplicationFactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/ReplicationFactor.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/SchemaParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/SchemaParserFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataHelpers/SimpleStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataHelpers/SimpleStrategy.cs -------------------------------------------------------------------------------- /src/Cassandra/MetadataSyncOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MetadataSyncOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Abstractions/IDriverCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Abstractions/IDriverCounter.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Abstractions/IDriverGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Abstractions/IDriverGauge.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Abstractions/IDriverMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Abstractions/IDriverMeter.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Abstractions/IDriverMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Abstractions/IDriverMetric.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Abstractions/IDriverTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Abstractions/IDriverTimer.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/DriverMetricsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/DriverMetricsOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/IDriverMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/IDriverMetrics.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/IMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/IMetric.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/IMetricsRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/IMetricsRegistry.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Internal/IMetricsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Internal/IMetricsManager.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Internal/MetricsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Internal/MetricsManager.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/NodeMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/NodeMetric.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Providers/Null/NullDriverGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Providers/Null/NullDriverGauge.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Providers/Null/NullDriverMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Providers/Null/NullDriverMeter.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Providers/Null/NullDriverTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Providers/Null/NullDriverTimer.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Registries/INodeMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Registries/INodeMetrics.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Registries/IRetryPolicyMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Registries/IRetryPolicyMetrics.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Registries/ISessionMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Registries/ISessionMetrics.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Registries/NodeMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Registries/NodeMetrics.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Registries/RequestErrorMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Registries/RequestErrorMetrics.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/Registries/SessionMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/Registries/SessionMetrics.cs -------------------------------------------------------------------------------- /src/Cassandra/Metrics/SessionMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Metrics/SessionMetric.cs -------------------------------------------------------------------------------- /src/Cassandra/MonitorReportingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/MonitorReportingOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/NodeRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/NodeRequestInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/NoneAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/NoneAuthProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/NullTypeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/NullTypeAdapter.cs -------------------------------------------------------------------------------- /src/Cassandra/OPPToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/OPPToken.cs -------------------------------------------------------------------------------- /src/Cassandra/Observers/IObserverFactoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Observers/IObserverFactoryBuilder.cs -------------------------------------------------------------------------------- /src/Cassandra/Observers/Null/NullConnectionObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Observers/Null/NullConnectionObserver.cs -------------------------------------------------------------------------------- /src/Cassandra/Observers/Null/NullObserverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Observers/Null/NullObserverFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Observers/Null/NullOperationObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Observers/Null/NullOperationObserver.cs -------------------------------------------------------------------------------- /src/Cassandra/Observers/Null/NullRequestObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Observers/Null/NullRequestObserver.cs -------------------------------------------------------------------------------- /src/Cassandra/OperationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/OperationState.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/AlreadyExistsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/AlreadyExistsInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/IOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/IOutput.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/IsBootstrappingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/IsBootstrappingException.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputAlreadyExists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputAlreadyExists.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputBadCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputBadCredentials.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputConfigError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputConfigError.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputError.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputFunctionFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputFunctionFailure.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputInvalid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputInvalid.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputIsBootstrapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputIsBootstrapping.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputOverloaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputOverloaded.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputPrepared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputPrepared.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputProtocolError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputProtocolError.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputReadTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputReadTimeout.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputRows.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputSchemaChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputSchemaChange.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputServerError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputServerError.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputSetKeyspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputSetKeyspace.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputSyntaxError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputSyntaxError.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputTruncateError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputTruncateError.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputUnauthorized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputUnauthorized.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputUnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputUnavailableException.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputUnprepared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputUnprepared.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputVoid.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OutputWriteTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OutputWriteTimeout.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/OverloadedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/OverloadedException.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/PreparedQueryNotFoundInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/PreparedQueryNotFoundInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/ProtocolErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/ProtocolErrorException.cs -------------------------------------------------------------------------------- /src/Cassandra/Outputs/ServerErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Outputs/ServerErrorException.cs -------------------------------------------------------------------------------- /src/Cassandra/PlainTextAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/PlainTextAuthProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/AesColumnEncryptionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/AesColumnEncryptionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/BaseColumnEncryptionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/BaseColumnEncryptionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/ColumnEncryptionKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/ColumnEncryptionKey.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/ConstantReconnectionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/ConstantReconnectionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/DCAwareRoundRobinPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/DCAwareRoundRobinPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/DefaultLoadBalancingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/DefaultLoadBalancingPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/DefaultRetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/DefaultRetryPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/ExponentialReconnectionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/ExponentialReconnectionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/FallthroughRetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/FallthroughRetryPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/FixedReconnectionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/FixedReconnectionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/IColumnEncryptionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/IColumnEncryptionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/IExtendedRetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/IExtendedRetryPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/ILoadBalancingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/ILoadBalancingPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/IReconnectionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/IReconnectionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/IReconnectionSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/IReconnectionSchedule.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/IRetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/IRetryPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/ISpeculativeExecutionPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/ISpeculativeExecutionPlan.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/ISpeculativeExecutionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/ISpeculativeExecutionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/ITimestampGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/ITimestampGenerator.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/IdempotenceAwareRetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/IdempotenceAwareRetryPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/LoggingRetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/LoggingRetryPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/NoSpeculativeExecutionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/NoSpeculativeExecutionPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/Policies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/Policies.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/RetryDecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/RetryDecision.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/RetryLoadBalancingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/RetryLoadBalancingPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/RoundRobinPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/RoundRobinPolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/Policies/TokenAwarePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Policies/TokenAwarePolicy.cs -------------------------------------------------------------------------------- /src/Cassandra/PoolingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/PoolingOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/PrepareRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/PrepareRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/PreparedStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/PreparedStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/IProtocolEventDebouncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/IProtocolEventDebouncer.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/ITimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/ITimer.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/ITimerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/ITimerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/Internal/EventQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/Internal/EventQueue.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/Internal/KeyspaceEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/Internal/KeyspaceEvents.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/KeyspaceProtocolEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/KeyspaceProtocolEvent.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/ProtocolEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/ProtocolEvent.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/ProtocolEventDebouncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/ProtocolEventDebouncer.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/TaskBasedTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/TaskBasedTimer.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolEvents/TaskBasedTimerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolEvents/TaskBasedTimerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/ProtocolVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ProtocolVersion.cs -------------------------------------------------------------------------------- /src/Cassandra/QueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/QueryOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/QueryProtocolOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/QueryProtocolOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/QueryTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/QueryTrace.cs -------------------------------------------------------------------------------- /src/Cassandra/RPToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RPToken.cs -------------------------------------------------------------------------------- /src/Cassandra/RecyclableMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RecyclableMemoryStream.cs -------------------------------------------------------------------------------- /src/Cassandra/RecyclableMemoryStreamManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RecyclableMemoryStreamManager.cs -------------------------------------------------------------------------------- /src/Cassandra/RegularStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RegularStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/ReplicationStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/ReplicationStrategies.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/AuthResponseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/AuthResponseRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/BaseRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/BatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/BatchRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/BatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/BatchType.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/CredentialsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/CredentialsRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/ExecuteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/ExecuteRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/GraphRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/GraphRequestHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/GraphTypeSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/GraphTypeSerializerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/ICqlRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/ICqlRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IGraphRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IGraphRequestHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IGraphTypeSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IGraphTypeSerializerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IPrepareHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IPrepareHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IPrepareHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IPrepareHandlerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IQueryRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IReprepareHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IReprepareHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IRequestExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IRequestExecution.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IRequestExecutionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IRequestExecutionFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IRequestHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IRequestHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IRequestHandlerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IRequestResultHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IRequestResultHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IStartupOptionsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IStartupOptionsFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/IStartupRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/IStartupRequestFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/InternalPrepareRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/InternalPrepareRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/OptionsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/OptionsRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/PrepareHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/PrepareHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/PrepareHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/PrepareHandlerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/PrepareResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/PrepareResult.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/QueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/QueryRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/RegisterForEventRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/RegisterForEventRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/ReprepareHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/ReprepareHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/RequestErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/RequestErrorType.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/RequestExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/RequestExecution.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/RequestExecutionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/RequestExecutionFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/RequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/RequestHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/RequestHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/RequestHandlerFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/ResultMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/ResultMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/RetryDecisionWithReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/RetryDecisionWithReason.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/StartupOptionsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/StartupOptionsFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/StartupRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/StartupRequest.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/StartupRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/StartupRequestFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/Requests/ValidHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Requests/ValidHost.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/AuthChallengeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/AuthChallengeResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/AuthSuccessResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/AuthSuccessResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/AuthenticateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/AuthenticateResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/ErrorResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/EventResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/EventResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/ReadyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/ReadyResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/Response.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/ResultResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/ResultResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/Responses/SupportedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Responses/SupportedResponse.cs -------------------------------------------------------------------------------- /src/Cassandra/RoutingKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RoutingKey.cs -------------------------------------------------------------------------------- /src/Cassandra/RowPopulators/CqlColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RowPopulators/CqlColumn.cs -------------------------------------------------------------------------------- /src/Cassandra/RowPopulators/ExecutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RowPopulators/ExecutionInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/RowPopulators/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RowPopulators/Row.cs -------------------------------------------------------------------------------- /src/Cassandra/RowPopulators/RowSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RowPopulators/RowSet.cs -------------------------------------------------------------------------------- /src/Cassandra/RowPopulators/RowSetMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/RowPopulators/RowSetMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/SSLOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SSLOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/SchemaChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SchemaChangeEventArgs.cs -------------------------------------------------------------------------------- /src/Cassandra/SchemaChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SchemaChangedEventArgs.cs -------------------------------------------------------------------------------- /src/Cassandra/SchemaChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SchemaChangedEventHandler.cs -------------------------------------------------------------------------------- /src/Cassandra/SchemaParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SchemaParser.cs -------------------------------------------------------------------------------- /src/Cassandra/SecureConnectionBundleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SecureConnectionBundleException.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/CollectionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/CollectionSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/CustomTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/CustomTypeSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/DataTypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/DataTypeParser.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/DictionarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/DictionarySerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/DurationSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/DurationSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/GenericSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/GenericSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/Geometry/PointSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/Geometry/PointSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/Graph/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/Graph/INode.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/IGenericSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/IGenericSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/ISerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/ISerializerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/ISerializerManager.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/ITypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/ITypeSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/LegacyTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/LegacyTypeSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/Primitive/GuidSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/Primitive/GuidSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/Primitive/IntSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/Primitive/IntSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/Primitive/LongSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/Primitive/LongSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/Serializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/SerializerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/SerializerManager.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/TupleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/TupleSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/TypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/TypeSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/UdtSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/UdtSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/VectorSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/VectorSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Serialization/VintSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Serialization/VintSerializer.cs -------------------------------------------------------------------------------- /src/Cassandra/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Session.cs -------------------------------------------------------------------------------- /src/Cassandra/SessionManagement/IInternalCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SessionManagement/IInternalCluster.cs -------------------------------------------------------------------------------- /src/Cassandra/SessionManagement/IInternalSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SessionManagement/IInternalSession.cs -------------------------------------------------------------------------------- /src/Cassandra/SessionManagement/ISessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SessionManagement/ISessionFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/SessionManagement/SessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SessionManagement/SessionFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/SessionRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SessionRequestInfo.cs -------------------------------------------------------------------------------- /src/Cassandra/SessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SessionState.cs -------------------------------------------------------------------------------- /src/Cassandra/SimpleAuthInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SimpleAuthInfoProvider.cs -------------------------------------------------------------------------------- /src/Cassandra/SimpleStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SimpleStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/SniOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SniOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/SocketOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/SocketOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Statement.cs -------------------------------------------------------------------------------- /src/Cassandra/StatusChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/StatusChangeEventArgs.cs -------------------------------------------------------------------------------- /src/Cassandra/TableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TableColumn.cs -------------------------------------------------------------------------------- /src/Cassandra/TableMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TableMetadata.cs -------------------------------------------------------------------------------- /src/Cassandra/TableOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TableOptions.cs -------------------------------------------------------------------------------- /src/Cassandra/TargettedSimpleStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TargettedSimpleStatement.cs -------------------------------------------------------------------------------- /src/Cassandra/Tasks/HashedWheelTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Tasks/HashedWheelTimer.cs -------------------------------------------------------------------------------- /src/Cassandra/Tasks/TaskHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Tasks/TaskHelper.cs -------------------------------------------------------------------------------- /src/Cassandra/TimeUuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TimeUuid.cs -------------------------------------------------------------------------------- /src/Cassandra/TokenFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TokenFactory.cs -------------------------------------------------------------------------------- /src/Cassandra/TokenMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TokenMap.cs -------------------------------------------------------------------------------- /src/Cassandra/TopologyChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TopologyChangeEventArgs.cs -------------------------------------------------------------------------------- /src/Cassandra/TypeAdapters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/TypeAdapters.cs -------------------------------------------------------------------------------- /src/Cassandra/UdtMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/UdtMap.cs -------------------------------------------------------------------------------- /src/Cassandra/UdtMappingDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/UdtMappingDefinitions.cs -------------------------------------------------------------------------------- /src/Cassandra/Unset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Unset.cs -------------------------------------------------------------------------------- /src/Cassandra/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Cassandra/Utils.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/src/stylecop.json -------------------------------------------------------------------------------- /tools/JUnitXml.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/tools/JUnitXml.xslt -------------------------------------------------------------------------------- /tools/nunit3-junit.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/tools/nunit3-junit.xslt -------------------------------------------------------------------------------- /tools/nunit3-xunit.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/tools/nunit3-xunit.xslt -------------------------------------------------------------------------------- /tools/trx-to-junit.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datastax/csharp-driver/HEAD/tools/trx-to-junit.xslt --------------------------------------------------------------------------------