├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── Microsoft.Azure.EventHubs.sln ├── SECURITY.md ├── appveyor.yml ├── event-hubs.png ├── readme.md ├── src ├── Microsoft.Azure.EventHubs.Processor │ ├── AzureBlobLease.cs │ ├── AzureStorageCheckpointLeaseManager.cs │ ├── BlobErrorCodeStrings.cs │ ├── Checkpoint.cs │ ├── CloseReason.cs │ ├── DefaultEventProcessorFactory.cs │ ├── EventHubPartitionPump.cs │ ├── EventProcessorConfigurationException.cs │ ├── EventProcessorHost.cs │ ├── EventProcessorHostActionStrings.cs │ ├── EventProcessorOptions.cs │ ├── EventProcessorRuntimeException.cs │ ├── ExceptionReceivedEventArgs.cs │ ├── ICheckpointManager.cs │ ├── IEventProcessor.cs │ ├── IEventProcessorFactory.cs │ ├── ILeaseManager.cs │ ├── Lease.cs │ ├── LeaseLostException.cs │ ├── Microsoft.Azure.EventHubs.Processor.csproj │ ├── PartitionContext.cs │ ├── PartitionManager.cs │ ├── PartitionManagerOptions.cs │ ├── PartitionPump.cs │ ├── PartitionPumpStatus.cs │ ├── ProcessorEventSource.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Microsoft.Azure.EventHubs.ServiceFabricProcessor │ ├── Checkpoint.cs │ ├── CloseReason.cs │ ├── Constants.cs │ ├── EventHubMocks.cs │ ├── EventHubWrappers.cs │ ├── EventProcessorConfigurationException.cs │ ├── EventProcessorEventSource.cs │ ├── EventProcessorOptions.cs │ ├── ICheckpointMananger.cs │ ├── IEventProcessor.cs │ ├── IFabricPartitionLister.cs │ ├── Microsoft.Azure.EventHubs.ServiceFabricProcessor.csproj │ ├── PartitionContext.cs │ ├── ProgrammersGuide.md │ ├── ReliableDictionaryCheckpointMananger.cs │ ├── ServiceFabricPartitionLister.cs │ └── ServiceFabricProcessor.cs └── Microsoft.Azure.EventHubs │ ├── Amqp │ ├── ActiveClientLink.cs │ ├── ActiveClientLinkManager.cs │ ├── ActiveClientLinkObject.cs │ ├── ActiveClientRequestResponseLink.cs │ ├── AmqpClientConstants.cs │ ├── AmqpEventDataSender.cs │ ├── AmqpEventHubClient.cs │ ├── AmqpExceptionHelper.cs │ ├── AmqpMessageConverter.cs │ ├── AmqpPartitionReceiver.cs │ ├── AmqpSelectorFilter.cs │ ├── AmqpServiceClient.cs │ ├── MappingType.cs │ └── SerializationUtilities.cs │ ├── BatchOptions.cs │ ├── Core │ └── EventHubsPlugin.cs │ ├── EventData.cs │ ├── EventDataBatch.cs │ ├── EventDataDiagnosticExtensions.cs │ ├── EventDataSender.cs │ ├── EventHubClient.cs │ ├── EventHubPartitionRuntimeInformation.cs │ ├── EventHubRuntimeInformation.cs │ ├── EventHubsDiagnosticSource.cs │ ├── EventHubsEventSource.cs │ ├── EventPosition.cs │ ├── IPartitionReceiveHandler.cs │ ├── Microsoft.Azure.EventHubs.csproj │ ├── PartitionReceiver.cs │ ├── PartitionSender.cs │ ├── Primitives │ ├── AsyncLock.cs │ ├── AzureActiveDirectoryTokenProvider.cs │ ├── ClaimConstants.cs │ ├── ClientConstants.cs │ ├── ClientEntity.cs │ ├── ClientInfo.cs │ ├── EventHubsCommunicationException.cs │ ├── EventHubsConnectionStringBuilder.cs │ ├── EventHubsException.cs │ ├── EventHubsTimeoutException.cs │ ├── EventHubsUriHelper.cs │ ├── ExceptionUtility.cs │ ├── Fx.cs │ ├── Guard.cs │ ├── ITokenProvider.cs │ ├── JsonSecurityToken.cs │ ├── ManagedServiceIdentityTokenProvider.cs │ ├── MessageSizeExceededException.cs │ ├── MessagingEntityNotFoundException.cs │ ├── MessagingEntityType.cs │ ├── QuotaExceededException.cs │ ├── ReceiverDisconnectedException.cs │ ├── RetryExponential.cs │ ├── RetryPolicy.cs │ ├── SecurityToken.cs │ ├── ServerBusyException.cs │ ├── SharedAccessSignatureToken.cs │ ├── SharedAccessSignatureTokenProvider.cs │ ├── StringUtility.cs │ ├── TaskExtensions.cs │ ├── Ticks.cs │ ├── TimeoutHelper.cs │ ├── TokenProvider.cs │ └── TokenScope.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ReceiverOptions.cs │ ├── ReceiverRuntimeInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── test └── Microsoft.Azure.EventHubs.Tests ├── Amqp └── AmqpMEssageCoverterTests.cs ├── Client ├── ClientTestBase.cs ├── ConnectionStringBuilderTests.cs ├── DataBatchTests.cs ├── DiagnosticsTests.cs ├── FakeDiagnosticListener.cs ├── MiscTests.cs ├── NegativeCases.cs ├── PartitionPumpTests.cs ├── PluginTests.cs ├── ReceiverRuntimeMetricsTests.cs ├── ReceiverTests.cs ├── RetryTests.cs ├── RuntimeInformationTests.cs ├── SendTests.cs ├── TimeoutTests.cs ├── TokenProviderTests.cs └── WebSocketTests.cs ├── DisplayTestMethodNameAttribute.cs ├── Microsoft.Azure.EventHubs.Tests.csproj ├── Processor ├── AsyncAutoResetEvent.cs ├── NegativeCases.cs ├── ProcessorTestBase.cs └── TestEventProcessor.cs ├── Properties └── AssemblyInfo.cs ├── ServiceFabricProcessor ├── CheckpointingTests.cs ├── EventHubExceptionTests.cs ├── MockPartitionLister.cs ├── MockReliableDictionary.cs ├── MockReliableStateManager.cs ├── MockStatefulServicePartition.cs ├── MockTransaction.cs ├── OptionsTests.cs ├── SFPtestbase.cs ├── TestProcessor.cs ├── TestState.cs ├── TimeoutTests.cs └── UserExceptionTests.cs ├── TestConstants.cs └── TestUtility.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Azure.EventHubs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/Microsoft.Azure.EventHubs.sln -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/appveyor.yml -------------------------------------------------------------------------------- /event-hubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/event-hubs.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/readme.md -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/AzureBlobLease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/AzureBlobLease.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/AzureStorageCheckpointLeaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/AzureStorageCheckpointLeaseManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/BlobErrorCodeStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/BlobErrorCodeStrings.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/Checkpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/Checkpoint.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/CloseReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/CloseReason.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/DefaultEventProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/DefaultEventProcessorFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/EventHubPartitionPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/EventHubPartitionPump.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/EventProcessorConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/EventProcessorConfigurationException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/EventProcessorHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/EventProcessorHost.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/EventProcessorHostActionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/EventProcessorHostActionStrings.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/EventProcessorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/EventProcessorOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/EventProcessorRuntimeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/EventProcessorRuntimeException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/ExceptionReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/ExceptionReceivedEventArgs.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/ICheckpointManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/ICheckpointManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/IEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/IEventProcessor.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/IEventProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/IEventProcessorFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/ILeaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/ILeaseManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/Lease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/Lease.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/LeaseLostException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/LeaseLostException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/Microsoft.Azure.EventHubs.Processor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/Microsoft.Azure.EventHubs.Processor.csproj -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/PartitionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/PartitionContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/PartitionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/PartitionManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/PartitionManagerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/PartitionManagerOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/PartitionPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/PartitionPump.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/PartitionPumpStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/PartitionPumpStatus.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/ProcessorEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/ProcessorEventSource.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.Processor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.Processor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/Checkpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/Checkpoint.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/CloseReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/CloseReason.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/Constants.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventHubMocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventHubMocks.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventHubWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventHubWrappers.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventProcessorConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventProcessorConfigurationException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventProcessorEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventProcessorEventSource.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventProcessorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/EventProcessorOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ICheckpointMananger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ICheckpointMananger.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/IEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/IEventProcessor.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/IFabricPartitionLister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/IFabricPartitionLister.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/Microsoft.Azure.EventHubs.ServiceFabricProcessor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/Microsoft.Azure.EventHubs.ServiceFabricProcessor.csproj -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/PartitionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/PartitionContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ProgrammersGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ProgrammersGuide.md -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ReliableDictionaryCheckpointMananger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ReliableDictionaryCheckpointMananger.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ServiceFabricPartitionLister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ServiceFabricPartitionLister.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ServiceFabricProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs.ServiceFabricProcessor/ServiceFabricProcessor.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/ActiveClientLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/ActiveClientLink.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/ActiveClientLinkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/ActiveClientLinkManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/ActiveClientLinkObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/ActiveClientLinkObject.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/ActiveClientRequestResponseLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/ActiveClientRequestResponseLink.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpClientConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpClientConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpEventDataSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpEventDataSender.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpEventHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpEventHubClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpExceptionHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpMessageConverter.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpPartitionReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpPartitionReceiver.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpSelectorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpSelectorFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/AmqpServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/AmqpServiceClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/MappingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/MappingType.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Amqp/SerializationUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Amqp/SerializationUtilities.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/BatchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/BatchOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Core/EventHubsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Core/EventHubsPlugin.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventData.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventDataBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventDataBatch.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventDataDiagnosticExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventDataDiagnosticExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventDataSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventDataSender.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventHubClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventHubPartitionRuntimeInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventHubPartitionRuntimeInformation.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventHubRuntimeInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventHubRuntimeInformation.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventHubsDiagnosticSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventHubsDiagnosticSource.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventHubsEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventHubsEventSource.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/EventPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/EventPosition.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/IPartitionReceiveHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/IPartitionReceiveHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Microsoft.Azure.EventHubs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Microsoft.Azure.EventHubs.csproj -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/PartitionReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/PartitionReceiver.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/PartitionSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/PartitionSender.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/AsyncLock.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/AzureActiveDirectoryTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/AzureActiveDirectoryTokenProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ClaimConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ClaimConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ClientConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ClientConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ClientEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ClientEntity.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ClientInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/EventHubsCommunicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/EventHubsCommunicationException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/EventHubsConnectionStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/EventHubsConnectionStringBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/EventHubsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/EventHubsException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/EventHubsTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/EventHubsTimeoutException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/EventHubsUriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/EventHubsUriHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ExceptionUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ExceptionUtility.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/Fx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/Fx.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/Guard.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ITokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ITokenProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/JsonSecurityToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/JsonSecurityToken.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ManagedServiceIdentityTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ManagedServiceIdentityTokenProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/MessageSizeExceededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/MessageSizeExceededException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/MessagingEntityNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/MessagingEntityNotFoundException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/MessagingEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/MessagingEntityType.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/QuotaExceededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/QuotaExceededException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ReceiverDisconnectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ReceiverDisconnectedException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/RetryExponential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/RetryExponential.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/RetryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/RetryPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/SecurityToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/SecurityToken.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/ServerBusyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/ServerBusyException.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/SharedAccessSignatureToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/SharedAccessSignatureToken.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/SharedAccessSignatureTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/SharedAccessSignatureTokenProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/StringUtility.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/TaskExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/Ticks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/Ticks.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/TimeoutHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/TimeoutHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/TokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/TokenProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Primitives/TokenScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Primitives/TokenScope.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/ReceiverOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/ReceiverOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/ReceiverRuntimeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/ReceiverRuntimeInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Azure.EventHubs/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/src/Microsoft.Azure.EventHubs/Resources.resx -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Amqp/AmqpMEssageCoverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Amqp/AmqpMEssageCoverterTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/ClientTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/ClientTestBase.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/ConnectionStringBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/ConnectionStringBuilderTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/DataBatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/DataBatchTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/DiagnosticsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/DiagnosticsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/FakeDiagnosticListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/FakeDiagnosticListener.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/MiscTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/MiscTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/NegativeCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/NegativeCases.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/PartitionPumpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/PartitionPumpTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/PluginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/PluginTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/ReceiverRuntimeMetricsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/ReceiverRuntimeMetricsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/ReceiverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/ReceiverTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/RetryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/RetryTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/RuntimeInformationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/RuntimeInformationTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/SendTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/SendTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/TimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/TimeoutTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/TokenProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/TokenProviderTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Client/WebSocketTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Client/WebSocketTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/DisplayTestMethodNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/DisplayTestMethodNameAttribute.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Microsoft.Azure.EventHubs.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Microsoft.Azure.EventHubs.Tests.csproj -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Processor/AsyncAutoResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Processor/AsyncAutoResetEvent.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Processor/NegativeCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Processor/NegativeCases.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Processor/ProcessorTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Processor/ProcessorTestBase.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Processor/TestEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Processor/TestEventProcessor.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/CheckpointingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/CheckpointingTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/EventHubExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/EventHubExceptionTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockPartitionLister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockPartitionLister.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockReliableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockReliableDictionary.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockReliableStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockReliableStateManager.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockStatefulServicePartition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockStatefulServicePartition.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/MockTransaction.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/OptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/OptionsTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/SFPtestbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/SFPtestbase.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/TestProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/TestProcessor.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/TestState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/TestState.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/TimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/TimeoutTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/UserExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/ServiceFabricProcessor/UserExceptionTests.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/TestConstants.cs -------------------------------------------------------------------------------- /test/Microsoft.Azure.EventHubs.Tests/TestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-event-hubs-dotnet/HEAD/test/Microsoft.Azure.EventHubs.Tests/TestUtility.cs --------------------------------------------------------------------------------