├── .gitattributes ├── .gitignore ├── CodeMap1.dgml ├── LICENSE ├── Messaging.AzureEventHub ├── AzureEventDataUtility.cs ├── AzureEventHubClient.cs ├── AzureEventHubException.cs ├── AzureEventHubFactory.cs ├── AzureEventHubPublisher.cs ├── AzureEventHubSubscriber.cs ├── GlobalSuppressions.cs ├── Messaging.AzureEventHub.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Messaging.AzureEventHub.snk ├── StyleCop.Cache ├── app.config ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.AzureEventHub.dll │ │ ├── EventSemantics.Messaging.AzureEventHub.dll.config │ │ ├── EventSemantics.Messaging.AzureEventHub.pdb │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Data.Edm.dll │ │ ├── Microsoft.Data.Edm.xml │ │ ├── Microsoft.Data.OData.dll │ │ ├── Microsoft.Data.OData.xml │ │ ├── Microsoft.Data.Services.Client.dll │ │ ├── Microsoft.Data.Services.Client.xml │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ ├── Microsoft.Practices.Unity.xml │ │ ├── Microsoft.ServiceBus.Messaging.EventProcessorHost.dll │ │ ├── Microsoft.ServiceBus.Messaging.EventProcessorHost.xml │ │ ├── Microsoft.ServiceBus.dll │ │ ├── Microsoft.ServiceBus.xml │ │ ├── Microsoft.WindowsAzure.Configuration.dll │ │ ├── Microsoft.WindowsAzure.Configuration.xml │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── Microsoft.WindowsAzure.Storage.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── System.Spatial.dll │ │ ├── System.Spatial.xml │ │ ├── de │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── es │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── fr │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── it │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── ja │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── ko │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── ru │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── EventSemantics.Messaging.AzureEventHub.dll │ │ ├── EventSemantics.Messaging.AzureEventHub.pdb │ │ ├── Messaging.AzureEventHub.csproj.FileListAbsolute.txt │ │ ├── Messaging.AzureEventHub.csprojResolveAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Messaging.AzureServiceBus ├── AzureBrokeredMessageUtility.cs ├── AzureServiceBusException.cs ├── AzureTopicClient.cs ├── AzureTopicFactory.cs ├── AzureTopicPublisher.cs ├── AzureTopicSubscriber.cs ├── GlobalSuppressions.cs ├── Messaging.AzureServiceBus.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Messaging.AzureServiceBus.snk ├── StyleCop.Cache ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.AzureServiceBus.dll │ │ ├── EventSemantics.Messaging.AzureServiceBus.pdb │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ ├── Microsoft.Practices.Unity.xml │ │ ├── Microsoft.ServiceBus.dll │ │ ├── Microsoft.ServiceBus.xml │ │ ├── Microsoft.WindowsAzure.Configuration.dll │ │ └── Microsoft.WindowsAzure.Configuration.xml ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── EventSemantics.Messaging.AzureServiceBus.dll │ │ ├── EventSemantics.Messaging.AzureServiceBus.pdb │ │ ├── Messaging.AzureServiceBus.csproj.FileListAbsolute.txt │ │ ├── Messaging.AzureServiceBus.csprojResolveAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Messaging.Shared ├── DependencyResolver.cs ├── DescriptionBase.cs ├── EventMessage.cs ├── GlobalSuppressions.cs ├── IMessage.cs ├── IMessageBus.cs ├── IMessageBusBridge.cs ├── IMessageBusFactory.cs ├── IPublisher.cs ├── ISubscriber.cs ├── MessageBusBridgeDescription.cs ├── MessageBusDescription.cs ├── MessageBusException.cs ├── Messaging.Shared.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Messaging.Shared.snk ├── PublisherDescription.cs ├── StyleCop.Cache ├── SubscriberDescription.cs ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ ├── Microsoft.Practices.Unity.xml │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── Messaging.Shared.csproj.FileListAbsolute.txt │ │ ├── Messaging.Shared.csprojResolveAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Messaging.Test ├── Any.cs ├── MessageBusBridgeFixture.cs ├── MessageBusFixture.cs ├── Messaging.Test.csproj ├── MockMessage.cs ├── MockMessageBus.cs ├── MockMessageBusFactory.cs ├── MockPublisher.cs ├── MockSubscriber.cs ├── Properties │ └── AssemblyInfo.cs ├── StyleCop.Cache ├── app.config ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Messaging.Test.dll │ │ ├── EventSemantics.Messaging.Test.dll.config │ │ ├── EventSemantics.Messaging.Test.pdb │ │ ├── EventSemantics.Messaging.dll │ │ ├── EventSemantics.Messaging.pdb │ │ ├── EventSemantics.Monitoring.Tracing.dll │ │ ├── EventSemantics.Monitoring.Tracing.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ ├── Microsoft.Practices.Unity.xml │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── EventSemantics.Messaging.Test.dll │ │ ├── EventSemantics.Messaging.Test.pdb │ │ ├── Messaging.Test.csproj.FileListAbsolute.txt │ │ ├── Messaging.Test.csprojResolveAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Messaging.Tool ├── App.config ├── BridgeHandler.cs ├── BridgeOptions.cs ├── ColorContext.cs ├── ColoredConsoleTraceListener.cs ├── CommandLineOptions.cs ├── Messaging.Tool.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── PublicationHandler.cs ├── PublicationOptions.cs ├── StyleCop.Cache ├── SubscriptionHandler.cs ├── SubscriptionOptions.cs ├── bin │ └── Debug │ │ ├── CommandLine.dll │ │ ├── CommandLine.xml │ │ ├── EventSemantics.Messaging.AzureEventHub.dll │ │ ├── EventSemantics.Messaging.AzureEventHub.pdb │ │ ├── EventSemantics.Messaging.AzureServiceBus.dll │ │ ├── EventSemantics.Messaging.AzureServiceBus.pdb │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Messaging.dll │ │ ├── EventSemantics.Messaging.pdb │ │ ├── EventSemantics.Monitoring.Debug.dll │ │ ├── EventSemantics.Monitoring.Debug.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── MessagingTool.exe │ │ ├── MessagingTool.exe.config │ │ ├── MessagingTool.pdb │ │ ├── Microsoft.Data.Edm.dll │ │ ├── Microsoft.Data.Edm.xml │ │ ├── Microsoft.Data.OData.dll │ │ ├── Microsoft.Data.OData.xml │ │ ├── Microsoft.Data.Services.Client.dll │ │ ├── Microsoft.Data.Services.Client.xml │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ ├── Microsoft.Practices.Unity.xml │ │ ├── Microsoft.ServiceBus.Messaging.EventProcessorHost.dll │ │ ├── Microsoft.ServiceBus.Messaging.EventProcessorHost.xml │ │ ├── Microsoft.ServiceBus.dll │ │ ├── Microsoft.ServiceBus.xml │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── Microsoft.WindowsAzure.Storage.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── System.Spatial.dll │ │ ├── System.Spatial.xml │ │ ├── de │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── es │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── fr │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── it │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── ja │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── ko │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── ru │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── Microsoft.Data.Services.Client.resources.dll │ │ └── System.Spatial.resources.dll ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Messaging.Tool.csproj.FileListAbsolute.txt │ │ ├── Messaging.Tool.csprojResolveAssemblyReference.cache │ │ ├── MessagingTool.exe │ │ ├── MessagingTool.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Messaging.Web ├── GlobalSuppressions.cs ├── Messaging.Web.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Messaging.Web.snk ├── StyleCop.Cache ├── WebFactory.cs ├── WebPublisher.cs ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Messaging.Web.dll │ │ ├── EventSemantics.Messaging.Web.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ └── Microsoft.Practices.Unity.xml └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── EventSemantics.Messaging.Web.dll │ ├── EventSemantics.Messaging.Web.pdb │ ├── Messaging.Web.csproj.FileListAbsolute.txt │ ├── Messaging.Web.csprojResolveAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Messaging ├── GlobalSuppressions.cs ├── MessageBus.cs ├── Messaging.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Messaging.snk ├── SimpleMessageBusBridge.cs ├── StyleCop.Cache ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Messaging.dll │ │ ├── EventSemantics.Messaging.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ └── Microsoft.Practices.Unity.xml └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── EventSemantics.Messaging.dll │ ├── EventSemantics.Messaging.pdb │ ├── Messaging.csproj.FileListAbsolute.txt │ ├── Messaging.csprojResolveAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── MicrosoftMessageBridge.sln ├── MicrosoftMessageBridge.v12.suo ├── Monitoring.Debug ├── DebugActivityListener.cs ├── GlobalSuppressions.cs ├── Monitoring.Debug.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Monitoring.Debug.snk ├── StyleCop.Cache ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Monitoring.Debug.dll │ │ ├── EventSemantics.Monitoring.Debug.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ └── Microsoft.Practices.Unity.xml └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── EventSemantics.Monitoring.Debug.dll │ ├── EventSemantics.Monitoring.Debug.pdb │ ├── Monitoring.Debug.csproj.FileListAbsolute.txt │ ├── Monitoring.Debug.csprojResolveAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Monitoring.EventTracing ├── BridgeEventTraceWriter.cs ├── EventTraceActivityListener.cs ├── GlobalSuppressions.cs ├── MessageBusEventTraceWriter.cs ├── Monitoring.EventTracing.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Monitoring.EventTracing.snk ├── PublisherEventTraceWriter.cs ├── StyleCop.Cache ├── SubscriberEventTraceWriter.cs ├── WorkerEventTraceWriter.cs ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Monitoring.EventTracing.dll │ │ ├── EventSemantics.Monitoring.EventTracing.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.dll │ │ ├── Microsoft.Diagnostics.Tracing.EventSource.xml │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ └── Microsoft.Practices.Unity.xml ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── EventSemantics.Monitoring.EventTracing.dll │ │ ├── EventSemantics.Monitoring.EventTracing.pdb │ │ ├── Monitoring.EventTracing.csproj.FileListAbsolute.txt │ │ ├── Monitoring.EventTracing.csprojResolveAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Monitoring.Test ├── ActivityMonitorFixture.cs ├── Any.cs ├── App.config ├── IMockActivityMonitor.cs ├── MockActivityListener.cs ├── MockEndingEventArgs.cs ├── MockStartingEventArgs.cs ├── Monitoring.Test.csproj ├── Properties │ └── AssemblyInfo.cs ├── StyleCop.Cache ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Messaging.Test.dll │ │ ├── EventSemantics.Messaging.Test.pdb │ │ ├── EventSemantics.Messaging.dll │ │ ├── EventSemantics.Messaging.pdb │ │ ├── EventSemantics.Monitoring.Test.dll │ │ ├── EventSemantics.Monitoring.Test.dll.config │ │ ├── EventSemantics.Monitoring.Test.pdb │ │ ├── EventSemantics.Monitoring.Tracing.dll │ │ ├── EventSemantics.Monitoring.Tracing.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ ├── Microsoft.Practices.Unity.xml │ │ ├── Moq.dll │ │ ├── Moq.xml │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── EventSemantics.Monitoring.Test.dll │ │ ├── EventSemantics.Monitoring.Test.pdb │ │ ├── Monitoring.Test.csproj.FileListAbsolute.txt │ │ ├── Monitoring.Test.csprojResolveAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── Monitoring.Tracing ├── GlobalSuppressions.cs ├── Monitoring.Tracing.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Monitoring.Tracing.snk ├── StyleCop.Cache ├── TraceActivityListener.cs ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Monitoring.Tracing.dll │ │ ├── EventSemantics.Monitoring.Tracing.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ └── Microsoft.Practices.Unity.xml └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── EventSemantics.Monitoring.Tracing.dll │ ├── EventSemantics.Monitoring.Tracing.pdb │ ├── Monitoring.Tracing.csproj.FileListAbsolute.txt │ ├── Monitoring.Tracing.csprojResolveAssemblyReference.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── Monitoring ├── ActivityListenerBase.cs ├── ActivityMonitor.cs ├── ActivityTracker.cs ├── BeginEventArgs.cs ├── BridgeClosedEventArgs.cs ├── BridgeClosingEventArgs.cs ├── BridgeInitializedEventArgs.cs ├── BridgeInitializingEventArgs.cs ├── BridgeTransferredEventArgs.cs ├── BridgeTransferringEventArgs.cs ├── EndEventArgs.cs ├── GlobalSuppressions.cs ├── IActivityListener.cs ├── IActivityMonitor.cs ├── IMessagingActivityMonitor.cs ├── MessageBusClosedEventArgs.cs ├── MessageBusClosingEventArgs.cs ├── MessageBusRegisteredHandlerEventArgs.cs ├── MessageBusRegisteringHandlerEventArgs.cs ├── MessageBusSendingEventArgs.cs ├── MessageBusSentEventArgs.cs ├── MessagingExceptionEventArgs.cs ├── Monitoring.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── Messaging.Monitoring.snk ├── PublisherClosedEventArgs.cs ├── PublisherClosingEventArgs.cs ├── PublisherInitializedEventArgs.cs ├── PublisherInitializingEventArgs.cs ├── PublisherSendingEventArgs.cs ├── PublisherSentEventArgs.cs ├── StyleCop.Cache ├── SubscriberClosedEventArgs.cs ├── SubscriberClosingEventArgs.cs ├── SubscriberInitializedEventArgs.cs ├── SubscriberInitializingEventArgs.cs ├── SubscriberMessageCountEventArgs.cs ├── SubscriberReceivedEventArgs.cs ├── SubscriberReceivingEventArgs.cs ├── WorkerCompletedEventArgs.cs ├── WorkerRunningEventArgs.cs ├── WorkerStartedEventArgs.cs ├── WorkerStartingEventArgs.cs ├── WorkerStoppedEventArgs.cs ├── WorkerStoppingEventArgs.cs ├── bin │ └── Debug │ │ ├── EventSemantics.Messaging.Shared.dll │ │ ├── EventSemantics.Messaging.Shared.pdb │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.dll │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ └── Microsoft.Practices.Unity.xml ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── EventSemantics.Monitoring.dll │ │ ├── EventSemantics.Monitoring.pdb │ │ ├── Monitoring.csproj.FileListAbsolute.txt │ │ ├── Monitoring.csprojResolveAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── README.md ├── SECURITY.md └── license.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Microsoft 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /Messaging.AzureEventHub/AzureEventHubFactory.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging.AzureEventHub 7 | { 8 | /// 9 | /// The implementation for Azure Event Hub messaging. 10 | /// 11 | public class AzureEventHubFactory : IMessageBusFactory 12 | { 13 | #region Public Methods and Operators 14 | 15 | /// 16 | /// Creates a concrete instance. 17 | /// 18 | /// 19 | /// The instance 20 | /// 21 | public IPublisher CreatePublisher() 22 | { 23 | return new AzureEventHubPublisher(); 24 | } 25 | 26 | /// 27 | /// Creates a concrete instance. 28 | /// 29 | /// 30 | /// The instance 31 | /// 32 | public ISubscriber CreateSubscriber() 33 | { 34 | return new AzureEventHubSubscriber(); 35 | } 36 | 37 | #endregion 38 | } 39 | } -------------------------------------------------------------------------------- /Messaging.AzureEventHub/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Messaging.AzureEventHub/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Platform Azure Event Hub Messaging Library")] 15 | [assembly: 16 | AssemblyDescription("A set of classes that implement Azure Event Hub messaging in the Event Semantics Platform")] 17 | [assembly: AssemblyConfiguration("")] 18 | [assembly: AssemblyCompany("Microsoft IT")] 19 | [assembly: AssemblyProduct("Event Semantics Platform")] 20 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 21 | [assembly: AssemblyTrademark("")] 22 | [assembly: AssemblyCulture("")] 23 | 24 | // Setting ComVisible to false makes the types in this assembly not visible 25 | // to COM components. If you need to access a type in this assembly from 26 | // COM, set the ComVisible attribute to true on that type. 27 | [assembly: ComVisible(false)] 28 | 29 | // Version information for an assembly consists of the following four values: 30 | // Major Version 31 | // Minor Version 32 | // Build Number 33 | // Revision 34 | // You can specify all the values or you can default the Build and Revision Numbers 35 | // by using the '*' as shown below: 36 | // [assembly: AssemblyVersion("1.0.*")] 37 | [assembly: AssemblyVersion("1.0.0.0")] 38 | [assembly: AssemblyFileVersion("1.0.0.0")] 39 | 40 | // Mark the assembly as CLS-compliant since it exposes public types. 41 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Messaging.AzureEventHub/Properties/Messaging.AzureEventHub.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/Properties/Messaging.AzureEventHub.snk -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.AzureEventHub.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.AzureEventHub.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.AzureEventHub.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.AzureEventHub.pdb -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.ServiceBus.Messaging.EventProcessorHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.ServiceBus.Messaging.EventProcessorHost.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.ServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.ServiceBus.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.WindowsAzure.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.WindowsAzure.Configuration.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/System.Spatial.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/de/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/de/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/de/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/de/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/de/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/de/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/de/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/de/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/es/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/es/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/es/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/es/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/es/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/es/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/es/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/es/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/fr/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/fr/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/fr/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/fr/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/fr/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/fr/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/fr/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/fr/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/it/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/it/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/it/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/it/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/it/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/it/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/it/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/it/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ja/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ja/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ja/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ja/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ja/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ja/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ja/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ja/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ko/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ko/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ko/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ko/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ko/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ko/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ko/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ko/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ru/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ru/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ru/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ru/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ru/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ru/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/ru/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/ru/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hans/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hans/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hans/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hans/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hans/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hans/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hans/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hans/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hant/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hant/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hant/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hant/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hant/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hant/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/bin/Debug/zh-Hant/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/bin/Debug/zh-Hant/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Messaging.AzureEventHub/obj/Debug/EventSemantics.Messaging.AzureEventHub.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/obj/Debug/EventSemantics.Messaging.AzureEventHub.dll -------------------------------------------------------------------------------- /Messaging.AzureEventHub/obj/Debug/EventSemantics.Messaging.AzureEventHub.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/obj/Debug/EventSemantics.Messaging.AzureEventHub.pdb -------------------------------------------------------------------------------- /Messaging.AzureEventHub/obj/Debug/Messaging.AzureEventHub.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/obj/Debug/Messaging.AzureEventHub.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Messaging.AzureEventHub/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Messaging.AzureEventHub/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Messaging.AzureEventHub/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureEventHub/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Messaging.AzureEventHub/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/AzureTopicFactory.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging.AzureServiceBus 7 | { 8 | /// 9 | /// Implements an Azure service bus topic factory. 10 | /// 11 | public class AzureTopicFactory : IMessageBusFactory 12 | { 13 | #region Public Methods and Operators 14 | 15 | /// 16 | /// Creates the topic publisher. 17 | /// 18 | /// 19 | /// The 20 | /// 21 | public IPublisher CreatePublisher() 22 | { 23 | return new AzureTopicPublisher(); 24 | } 25 | 26 | /// 27 | /// Creates the subscriber. 28 | /// 29 | /// 30 | /// The 31 | /// 32 | public ISubscriber CreateSubscriber() 33 | { 34 | return new AzureTopicSubscriber(); 35 | } 36 | 37 | #endregion 38 | } 39 | } -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Platform Azure Service Bus Messaging Library")] 15 | [assembly: AssemblyDescription("A set of classes that implement messaging to Azure Service Bus in the Event Semantics Platform")] 16 | [assembly: AssemblyConfiguration("")] 17 | [assembly: AssemblyCompany("Microsoft IT")] 18 | [assembly: AssemblyProduct("Event Semantics Platform")] 19 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 20 | [assembly: AssemblyTrademark("")] 21 | [assembly: AssemblyCulture("")] 22 | 23 | // Setting ComVisible to false makes the types in this assembly not visible 24 | // to COM components. If you need to access a type in this assembly from 25 | // COM, set the ComVisible attribute to true on that type. 26 | [assembly: ComVisible(false)] 27 | 28 | // Version information for an assembly consists of the following four values: 29 | // Major Version 30 | // Minor Version 31 | // Build Number 32 | // Revision 33 | // You can specify all the values or you can default the Build and Revision Numbers 34 | // by using the '*' as shown below: 35 | // [assembly: AssemblyVersion("1.0.*")] 36 | [assembly: AssemblyVersion("1.0.0.0")] 37 | [assembly: AssemblyFileVersion("1.0.0.0")] 38 | 39 | // Mark the assembly as CLS-compliant since it exposes public types. 40 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/Properties/Messaging.AzureServiceBus.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/Properties/Messaging.AzureServiceBus.snk -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.AzureServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.AzureServiceBus.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.AzureServiceBus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.AzureServiceBus.pdb -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/Microsoft.ServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/Microsoft.ServiceBus.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/bin/Debug/Microsoft.WindowsAzure.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/bin/Debug/Microsoft.WindowsAzure.Configuration.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/obj/Debug/EventSemantics.Messaging.AzureServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/obj/Debug/EventSemantics.Messaging.AzureServiceBus.dll -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/obj/Debug/EventSemantics.Messaging.AzureServiceBus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/obj/Debug/EventSemantics.Messaging.AzureServiceBus.pdb -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/obj/Debug/Messaging.AzureServiceBus.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/obj/Debug/Messaging.AzureServiceBus.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.AzureServiceBus/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Messaging.AzureServiceBus/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Messaging.Shared/DescriptionBase.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | /// 9 | /// The description base type. 10 | /// 11 | public abstract class DescriptionBase 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the connection string. 17 | /// 18 | public string ConnectionString { get; set; } 19 | 20 | /// 21 | /// Gets or sets the bus entity. 22 | /// 23 | public string Entity { get; set; } 24 | 25 | /// 26 | /// Gets or sets the certificate thumbprint. 27 | /// 28 | public string Certificate { get; set; } 29 | 30 | #endregion 31 | } 32 | } -------------------------------------------------------------------------------- /Messaging.Shared/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Messaging.Shared/IMessage.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | using System.Collections.Generic; 9 | 10 | /// 11 | /// The message interface for communicating on the message bus. 12 | /// 13 | public interface IMessage 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the correlation key. The correlation key should be the of a previous 19 | /// message. 20 | /// 21 | string CorrelationKey { get; set; } 22 | 23 | /// 24 | /// Gets or sets the message. The message is a JSON-encoded object being sent over the message bus. 25 | /// 26 | string Message { get; set; } 27 | 28 | /// 29 | /// Gets or sets the message key associated with the message. 30 | /// 31 | string MessageKey { get; set; } 32 | 33 | /// 34 | /// Gets or sets the partition key associated with the message. 35 | /// 36 | string PartitionKey { get; set; } 37 | 38 | /// 39 | /// Gets the custom properties associated with the message. 40 | /// 41 | IDictionary Properties { get; } 42 | 43 | #endregion 44 | } 45 | } -------------------------------------------------------------------------------- /Messaging.Shared/IMessageBus.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | using System; 9 | using System.Threading.Tasks; 10 | 11 | /// 12 | /// The message bus interface. 13 | /// 14 | public interface IMessageBus 15 | { 16 | #region Public Methods and Operators 17 | 18 | /// 19 | /// Closes the message bus instance asynchronously. 20 | /// 21 | /// 22 | /// A representing the close operation. 23 | /// 24 | Task CloseAsync(); 25 | 26 | /// 27 | /// Registers the message bus subscription handler asynchronously. 28 | /// 29 | /// 30 | /// The entity. 31 | /// 32 | /// 33 | /// The name. 34 | /// 35 | /// 36 | /// The handler. 37 | /// 38 | /// 39 | /// The . 40 | /// 41 | Task RegisterHandlerAsync(string entity, string name, Func handler); 42 | 43 | /// 44 | /// Sends the message to the message bus entity asynchronously. 45 | /// 46 | /// 47 | /// The message bus entity. 48 | /// 49 | /// 50 | /// The message. 51 | /// 52 | /// 53 | /// The representing the send operation. 54 | /// 55 | Task SendAsync(string entity, IMessage message); 56 | 57 | #endregion 58 | } 59 | } -------------------------------------------------------------------------------- /Messaging.Shared/IMessageBusBridge.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | using System.Threading.Tasks; 9 | 10 | /// 11 | /// Describes the message bus bridge adapter interface. 12 | /// 13 | public interface IMessageBusBridge 14 | { 15 | #region Public Methods and Operators 16 | 17 | /// 18 | /// Closes the message bridge and the underlying message bus instances asynchronously. 19 | /// 20 | /// A representing the close operation. 21 | Task CloseAsync(); 22 | 23 | /// 24 | /// Initializes the message bus bridge connection asynchronously. 25 | /// 26 | /// 27 | /// The message bus bridge description. 28 | /// 29 | /// 30 | /// A representing the initialization operation. 31 | /// 32 | Task InitializeAsync(MessageBusBridgeDescription description); 33 | 34 | #endregion 35 | } 36 | } -------------------------------------------------------------------------------- /Messaging.Shared/IMessageBusFactory.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | /// 9 | /// The message bus factory is used to create and instances for a 10 | /// concrete message bus implementation. 11 | /// 12 | public interface IMessageBusFactory 13 | { 14 | #region Public Methods and Operators 15 | 16 | /// 17 | /// Creates a concrete instance. 18 | /// 19 | /// The instance 20 | IPublisher CreatePublisher(); 21 | 22 | /// 23 | /// Creates a concrete instance. 24 | /// 25 | /// The instance 26 | ISubscriber CreateSubscriber(); 27 | 28 | #endregion 29 | } 30 | } -------------------------------------------------------------------------------- /Messaging.Shared/IPublisher.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | using System.Threading.Tasks; 9 | 10 | /// 11 | /// The publisher interface describes the methods on a publisher. A publisher is used for one-way, fire-and-forget 12 | /// message communication. 13 | /// 14 | public interface IPublisher 15 | { 16 | #region Public Methods and Operators 17 | 18 | /// 19 | /// Closes the publisher instance asynchronously. 20 | /// 21 | /// The representing the close operation. 22 | Task CloseAsync(); 23 | 24 | /// 25 | /// Initializes the publisher asynchronously. 26 | /// 27 | /// 28 | /// The publisher description. 29 | /// 30 | /// 31 | /// A representing the initialization operation. 32 | /// 33 | Task InitializeAsync(PublisherDescription description); 34 | 35 | /// 36 | /// Sends a message through the publisher asynchronously. 37 | /// 38 | /// 39 | /// The message to be sent. 40 | /// 41 | /// 42 | /// A representing the send operation. 43 | /// 44 | Task SendAsync(IMessage message); 45 | 46 | #endregion 47 | } 48 | } -------------------------------------------------------------------------------- /Messaging.Shared/ISubscriber.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | using System; 9 | using System.Threading.Tasks; 10 | 11 | /// 12 | /// The subscriber interface describes method on a subscriber. A subscriber is a message listener. The listener only 13 | /// has a single callback method. This means that any filtering must be performed by the listener. 14 | /// 15 | public interface ISubscriber 16 | { 17 | #region Public Methods and Operators 18 | 19 | /// 20 | /// Closes the subscriber asynchronously. 21 | /// 22 | /// 23 | /// The . 24 | /// 25 | Task CloseAsync(); 26 | 27 | /// 28 | /// Initializes the subscriber asynchronously. 29 | /// 30 | /// 31 | /// The description. 32 | /// 33 | /// 34 | /// The handler callback method. 35 | /// 36 | /// 37 | /// A representing the initialization operation. 38 | /// 39 | Task InitializeAsync(SubscriberDescription description, Func handler); 40 | 41 | #endregion 42 | } 43 | } -------------------------------------------------------------------------------- /Messaging.Shared/MessageBusBridgeDescription.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | /// 9 | /// The message bus bridge description. This contains information necessary to initialize the bridge. 10 | /// 11 | public class MessageBusBridgeDescription 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the name of the bridge. 17 | /// 18 | public string BridgeName { get; set; } 19 | 20 | /// 21 | /// Gets or sets the source message bus. 22 | /// 23 | public IMessageBus SourceBus { get; set; } 24 | 25 | /// 26 | /// Gets or sets the source entity. 27 | /// 28 | public string SourceEntity { get; set; } 29 | 30 | /// 31 | /// Gets or sets the target message bus. 32 | /// 33 | public IMessageBus TargetBus { get; set; } 34 | 35 | /// 36 | /// Gets or sets the target entity. 37 | /// 38 | public string TargetEntity { get; set; } 39 | 40 | #endregion 41 | } 42 | } -------------------------------------------------------------------------------- /Messaging.Shared/MessageBusDescription.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | /// 9 | /// Describes how to connect to the message bus instance. 10 | /// 11 | public class MessageBusDescription 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the certificate. 17 | /// 18 | public string Certificate { get; set; } 19 | 20 | /// 21 | /// Gets or sets the connection string. 22 | /// 23 | public string ConnectionString { get; set; } 24 | 25 | /// 26 | /// Gets or sets the message bus factory. 27 | /// 28 | public IMessageBusFactory Factory { get; set; } 29 | 30 | /// 31 | /// Gets or sets the storage connection string. 32 | /// 33 | public string StorageConnectionString { get; set; } 34 | 35 | #endregion 36 | } 37 | } -------------------------------------------------------------------------------- /Messaging.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Messaging Shared Library")] 15 | [assembly: AssemblyDescription("A set of interfaces, classes, and methods shared among the other Event Semantics Messaging libraries. The purpose of the shared library is to eliminate cyclic dependencies.")] 16 | [assembly: AssemblyConfiguration("")] 17 | [assembly: AssemblyCompany("Microsoft IT")] 18 | [assembly: AssemblyProduct("Event Semantics Platform")] 19 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 20 | [assembly: AssemblyTrademark("")] 21 | [assembly: AssemblyCulture("")] 22 | 23 | // Setting ComVisible to false makes the types in this assembly not visible 24 | // to COM components. If you need to access a type in this assembly from 25 | // COM, set the ComVisible attribute to true on that type. 26 | [assembly: ComVisible(false)] 27 | 28 | // Version information for an assembly consists of the following four values: 29 | // Major Version 30 | // Minor Version 31 | // Build Number 32 | // Revision 33 | // You can specify all the values or you can default the Build and Revision Numbers 34 | // by using the '*' as shown below: 35 | // [assembly: AssemblyVersion("1.0.*")] 36 | [assembly: AssemblyVersion("1.0.0.0")] 37 | [assembly: AssemblyFileVersion("1.0.0.0")] 38 | 39 | // Mark the assembly as CLS-compliant since it exposes external types. 40 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Messaging.Shared/Properties/Messaging.Shared.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/Properties/Messaging.Shared.snk -------------------------------------------------------------------------------- /Messaging.Shared/PublisherDescription.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | /// 9 | /// Describes how an instance should connect to its message bus. 10 | /// 11 | public class PublisherDescription : DescriptionBase 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Messaging.Shared/SubscriberDescription.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging 7 | { 8 | /// 9 | /// Describes how an instance should connect to its message bus. 10 | /// 11 | public class SubscriberDescription : DescriptionBase 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the name of the subscriber. 17 | /// 18 | public string Name { get; set; } 19 | 20 | /// 21 | /// Gets or sets the storage connection string. 22 | /// 23 | public string StorageConnectionString { get; set; } 24 | 25 | #endregion 26 | } 27 | } -------------------------------------------------------------------------------- /Messaging.Shared/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging.Shared/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging.Shared/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Messaging.Shared/bin/Debug/Microsoft.Practices.Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/bin/Debug/Microsoft.Practices.Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /Messaging.Shared/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Messaging.Shared/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Messaging.Shared/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Messaging.Shared/obj/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/obj/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging.Shared/obj/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/obj/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging.Shared/obj/Debug/Messaging.Shared.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/obj/Debug/Messaging.Shared.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Messaging.Shared/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Messaging.Shared/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Messaging.Shared/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Shared/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Messaging.Shared/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Messaging.Test/MockMessageBusFactory.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging.Test 7 | { 8 | using System.Diagnostics.CodeAnalysis; 9 | 10 | /// 11 | /// A mock 12 | /// 13 | [ExcludeFromCodeCoverage] 14 | internal class MockMessageBusFactory : IMessageBusFactory 15 | { 16 | #region Public Properties 17 | 18 | /// 19 | /// Gets or sets the publisher. 20 | /// 21 | /// 22 | /// The publisher. 23 | /// 24 | public MockPublisher Publisher { get; set; } 25 | 26 | /// 27 | /// Gets or sets the subscriber. 28 | /// 29 | /// 30 | /// The subscriber. 31 | /// 32 | public MockSubscriber Subscriber { get; set; } 33 | 34 | #endregion 35 | 36 | #region Public Methods and Operators 37 | 38 | /// 39 | /// Creates a concrete instance. 40 | /// 41 | /// 42 | /// The instance 43 | /// 44 | public IPublisher CreatePublisher() 45 | { 46 | return this.Publisher; 47 | } 48 | 49 | /// 50 | /// Creates a concrete instance. 51 | /// 52 | /// 53 | /// The instance 54 | /// 55 | public ISubscriber CreateSubscriber() 56 | { 57 | return this.Subscriber; 58 | } 59 | 60 | #endregion 61 | } 62 | } -------------------------------------------------------------------------------- /Messaging.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System.Reflection; 8 | using System.Runtime.InteropServices; 9 | 10 | // General Information about an assembly is controlled through the following 11 | // set of attributes. Change these attribute values to modify the information 12 | // associated with an assembly. 13 | [assembly: AssemblyTitle("MessageBridge.Messaging.Test")] 14 | [assembly: AssemblyDescription("")] 15 | [assembly: AssemblyConfiguration("")] 16 | [assembly: AssemblyCompany("")] 17 | [assembly: AssemblyProduct("MessageBridge.Messaging.Test")] 18 | [assembly: AssemblyCopyright("Copyright © 2015")] 19 | [assembly: AssemblyTrademark("")] 20 | [assembly: AssemblyCulture("")] 21 | 22 | // Setting ComVisible to false makes the types in this assembly not visible 23 | // to COM components. If you need to access a type in this assembly from 24 | // COM, set the ComVisible attribute to true on that type. 25 | [assembly: ComVisible(false)] 26 | 27 | // The following GUID is for the ID of the typelib if this project is exposed to COM 28 | [assembly: Guid("38a6de88-1f8c-4743-b766-4a9506a861b5")] 29 | 30 | // Version information for an assembly consists of the following four values: 31 | // Major Version 32 | // Minor Version 33 | // Build Number 34 | // Revision 35 | // You can specify all the values or you can default the Build and Revision Numbers 36 | // by using the '*' as shown below: 37 | // [assembly: AssemblyVersion("1.0.*")] 38 | [assembly: AssemblyVersion("1.0.0.0")] 39 | [assembly: AssemblyFileVersion("1.0.0.0")] -------------------------------------------------------------------------------- /Messaging.Test/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Messaging.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Messaging.Test.dll -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Messaging.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Messaging.Test.pdb -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Messaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Messaging.dll -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Messaging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Messaging.pdb -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Monitoring.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Monitoring.Tracing.dll -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Monitoring.Tracing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Monitoring.Tracing.pdb -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Messaging.Test/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Messaging.Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Messaging.Test/obj/Debug/EventSemantics.Messaging.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/obj/Debug/EventSemantics.Messaging.Test.dll -------------------------------------------------------------------------------- /Messaging.Test/obj/Debug/EventSemantics.Messaging.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/obj/Debug/EventSemantics.Messaging.Test.pdb -------------------------------------------------------------------------------- /Messaging.Test/obj/Debug/Messaging.Test.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/obj/Debug/Messaging.Test.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Messaging.Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Messaging.Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Messaging.Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Messaging.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Messaging.Tool/CommandLineOptions.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging.Tool 7 | { 8 | using CommandLine; 9 | using CommandLine.Text; 10 | 11 | /// 12 | /// The base command line options for this program. 13 | /// 14 | internal class CommandLineOptions 15 | { 16 | #region Public Properties 17 | 18 | /// 19 | /// Gets or sets the bridge verb options. 20 | /// 21 | /// 22 | /// The bridge. 23 | /// 24 | [VerbOption("bridge", HelpText = "Runs as a bridge client.")] 25 | public BridgeOptions Bridge { get; set; } 26 | 27 | /// 28 | /// Gets or sets the publish verb options. 29 | /// 30 | [VerbOption("pub", HelpText = "Runs as a publisher client.")] 31 | public PublicationOptions Publish { get; set; } 32 | 33 | /// 34 | /// Gets or sets the subscribe verb options. 35 | /// 36 | [VerbOption("sub", HelpText = "Runs as a subscription client.")] 37 | public SubscriptionOptions Subscribe { get; set; } 38 | 39 | #endregion 40 | 41 | #region Public Methods and Operators 42 | 43 | /// 44 | /// Gets the usage. 45 | /// 46 | /// 47 | /// The verb. 48 | /// 49 | /// 50 | /// The help text. 51 | /// 52 | [HelpVerbOption("help")] 53 | public string GetUsage(string verb) 54 | { 55 | return HelpText.AutoBuild(this, verb); 56 | } 57 | 58 | #endregion 59 | } 60 | } -------------------------------------------------------------------------------- /Messaging.Tool/Program.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging.Tool 7 | { 8 | using System; 9 | 10 | using CommandLine; 11 | using CommandLine.Text; 12 | 13 | /// 14 | /// The application program class. 15 | /// 16 | internal class Program 17 | { 18 | #region Methods 19 | 20 | /// 21 | /// The application entry point. 22 | /// 23 | /// 24 | /// The program command line arguments. 25 | /// 26 | private static void Main(string[] args) 27 | { 28 | var options = new CommandLineOptions(); 29 | var verb = string.Empty; 30 | object instance = null; 31 | 32 | if (!Parser.Default.ParseArguments( 33 | args, 34 | options, 35 | (v, i) => 36 | { 37 | verb = v; 38 | instance = i; 39 | })) 40 | { 41 | return; 42 | } 43 | 44 | // Display program banner 45 | Console.WriteLine(HelpText.AutoBuild(new { })); 46 | Console.WriteLine(); 47 | 48 | switch (verb) 49 | { 50 | case "sub": 51 | SubscriptionHandler.Handle((SubscriptionOptions)instance); 52 | break; 53 | 54 | case "pub": 55 | PublicationHandler.Handle((PublicationOptions)instance); 56 | break; 57 | case "bridge": 58 | BridgeHandler.Handle((BridgeOptions)instance); 59 | break; 60 | } 61 | } 62 | 63 | #endregion 64 | } 65 | } -------------------------------------------------------------------------------- /Messaging.Tool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System.Reflection; 8 | using System.Runtime.InteropServices; 9 | 10 | // General Information about an assembly is controlled through the following 11 | // set of attributes. Change these attribute values to modify the information 12 | // associated with an assembly. 13 | [assembly: AssemblyTitle("Event Semantics Platform Messaging Tool")] 14 | [assembly: AssemblyDescription("This is a command line utility program for testing the messaging libraries.")] 15 | [assembly: AssemblyConfiguration("")] 16 | [assembly: AssemblyCompany("Microsoft IT")] 17 | [assembly: AssemblyProduct("Event Semantics Platform")] 18 | [assembly: AssemblyCopyright("Copyright (c) 2015 Microsoft Corporation. All rights reserved.")] 19 | [assembly: AssemblyTrademark("")] 20 | [assembly: AssemblyCulture("")] 21 | 22 | // Setting ComVisible to false makes the types in this assembly not visible 23 | // to COM components. If you need to access a type in this assembly from 24 | // COM, set the ComVisible attribute to true on that type. 25 | [assembly: ComVisible(false)] 26 | 27 | // Version information for an assembly consists of the following four values: 28 | // Major Version 29 | // Minor Version 30 | // Build Number 31 | // Revision 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/CommandLine.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureEventHub.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureEventHub.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureEventHub.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureEventHub.pdb -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureServiceBus.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureServiceBus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.AzureServiceBus.pdb -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Messaging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Messaging.pdb -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Monitoring.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Monitoring.Debug.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Monitoring.Debug.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Monitoring.Debug.pdb -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/MessagingTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/MessagingTool.exe -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/MessagingTool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/MessagingTool.pdb -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.ServiceBus.Messaging.EventProcessorHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.ServiceBus.Messaging.EventProcessorHost.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.ServiceBus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.ServiceBus.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/System.Spatial.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/de/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/de/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/de/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/de/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/de/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/de/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/de/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/de/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/es/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/es/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/es/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/es/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/es/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/es/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/es/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/es/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/fr/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/fr/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/fr/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/fr/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/fr/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/fr/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/fr/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/fr/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/it/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/it/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/it/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/it/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/it/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/it/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/it/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/it/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ja/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ja/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ja/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ja/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ja/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ja/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ja/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ja/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ko/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ko/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ko/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ko/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ko/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ko/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ko/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ko/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ru/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ru/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ru/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ru/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ru/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ru/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/ru/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/ru/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hans/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hans/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hans/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hans/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hans/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hans/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hans/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hans/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hant/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hant/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hant/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hant/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hant/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hant/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/bin/Debug/zh-Hant/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/bin/Debug/zh-Hant/System.Spatial.resources.dll -------------------------------------------------------------------------------- /Messaging.Tool/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Messaging.Tool/obj/Debug/Messaging.Tool.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/obj/Debug/Messaging.Tool.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Messaging.Tool/obj/Debug/MessagingTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/obj/Debug/MessagingTool.exe -------------------------------------------------------------------------------- /Messaging.Tool/obj/Debug/MessagingTool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/obj/Debug/MessagingTool.pdb -------------------------------------------------------------------------------- /Messaging.Tool/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Messaging.Tool/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Messaging.Tool/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Tool/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Messaging.Tool/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Messaging.Web/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Messaging.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | [assembly: AssemblyTitle("Event Semantics Platform Messaging Library for Web Requests")] 12 | [assembly: 13 | AssemblyDescription( 14 | "A set of classes that implement messaging to HTTP Web endpoints in the Event Semantics Platform")] 15 | [assembly: AssemblyConfiguration("")] 16 | [assembly: AssemblyCompany("Microsoft IT")] 17 | [assembly: AssemblyProduct("Event Semantics Platform")] 18 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 19 | [assembly: AssemblyTrademark("")] 20 | [assembly: AssemblyCulture("")] 21 | [assembly: AssemblyVersion("1.0.0.0")] 22 | [assembly: AssemblyFileVersion("1.0.0.0")] 23 | [assembly: CLSCompliant(true)] 24 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /Messaging.Web/Properties/Messaging.Web.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/Properties/Messaging.Web.snk -------------------------------------------------------------------------------- /Messaging.Web/WebFactory.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Messaging.Web 7 | { 8 | using System; 9 | using System.Diagnostics.CodeAnalysis; 10 | 11 | /// 12 | /// Implements the message bus factory interface for HTTP web calls. 13 | /// 14 | public class WebFactory : IMessageBusFactory 15 | { 16 | #region Public Methods and Operators 17 | 18 | /// 19 | /// Creates a concrete instance. 20 | /// 21 | /// 22 | /// The instance 23 | /// 24 | [SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope", 25 | Justification = "The web publisher will be disposed by the caller.")] 26 | public IPublisher CreatePublisher() 27 | { 28 | return new WebPublisher(); 29 | } 30 | 31 | /// 32 | /// Creates a concrete instance. 33 | /// 34 | /// 35 | /// The instance 36 | /// 37 | /// A HTTP web subscriber is not supported at this time. 38 | public ISubscriber CreateSubscriber() 39 | { 40 | throw new NotSupportedException("A HTTP web subscriber is not supported at this time."); 41 | } 42 | 43 | #endregion 44 | } 45 | } -------------------------------------------------------------------------------- /Messaging.Web/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging.Web/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging.Web/bin/Debug/EventSemantics.Messaging.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/bin/Debug/EventSemantics.Messaging.Web.dll -------------------------------------------------------------------------------- /Messaging.Web/bin/Debug/EventSemantics.Messaging.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/bin/Debug/EventSemantics.Messaging.Web.pdb -------------------------------------------------------------------------------- /Messaging.Web/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Messaging.Web/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/EventSemantics.Messaging.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/obj/Debug/EventSemantics.Messaging.Web.dll -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/EventSemantics.Messaging.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/obj/Debug/EventSemantics.Messaging.Web.pdb -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/Messaging.Web.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Web.dll 2 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Web.pdb 3 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Shared.dll 4 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.dll 5 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.Configuration.dll 6 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Shared.pdb 7 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.xml 8 | D:\Source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.Configuration.xml 9 | D:\Source\MicrosoftMessageBridge\Messaging.Web\obj\Debug\Messaging.Web.csprojResolveAssemblyReference.cache 10 | D:\Source\MicrosoftMessageBridge\Messaging.Web\obj\Debug\EventSemantics.Messaging.Web.dll 11 | D:\Source\MicrosoftMessageBridge\Messaging.Web\obj\Debug\EventSemantics.Messaging.Web.pdb 12 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Web.dll 13 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Web.pdb 14 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Shared.dll 15 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.dll 16 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.Configuration.dll 17 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\EventSemantics.Messaging.Shared.pdb 18 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.xml 19 | C:\source\MicrosoftMessageBridge\Messaging.Web\bin\Debug\Microsoft.Practices.Unity.Configuration.xml 20 | C:\source\MicrosoftMessageBridge\Messaging.Web\obj\Debug\Messaging.Web.csprojResolveAssemblyReference.cache 21 | C:\source\MicrosoftMessageBridge\Messaging.Web\obj\Debug\EventSemantics.Messaging.Web.dll 22 | C:\source\MicrosoftMessageBridge\Messaging.Web\obj\Debug\EventSemantics.Messaging.Web.pdb 23 | -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/Messaging.Web.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/obj/Debug/Messaging.Web.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Messaging.Web/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging.Web/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Messaging/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Messaging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Platform Messaging Library")] 15 | [assembly: 16 | AssemblyDescription( 17 | "A set of classes and interfaces for performing messaging tasks with the Event Semantics Platform.")] 18 | [assembly: AssemblyConfiguration("")] 19 | [assembly: AssemblyCompany("Microsoft IT")] 20 | [assembly: AssemblyProduct("Event Semantics Platform")] 21 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 22 | [assembly: AssemblyTrademark("")] 23 | [assembly: AssemblyCulture("")] 24 | 25 | // Setting ComVisible to false makes the types in this assembly not visible 26 | // to COM components. If you need to access a type in this assembly from 27 | // COM, set the ComVisible attribute to true on that type. 28 | [assembly: ComVisible(false)] 29 | 30 | // Version information for an assembly consists of the following four values: 31 | // Major Version 32 | // Minor Version 33 | // Build Number 34 | // Revision 35 | // You can specify all the values or you can default the Build and Revision Numbers 36 | // by using the '*' as shown below: 37 | // [assembly: AssemblyVersion("1.0.*")] 38 | [assembly: AssemblyVersion("1.0.0.0")] 39 | [assembly: AssemblyFileVersion("1.0.0.0")] 40 | 41 | // Mark the assembly as CLS-compliant since it exposes public types. 42 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Messaging/Properties/Messaging.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/Properties/Messaging.snk -------------------------------------------------------------------------------- /Messaging/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Messaging/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Messaging/bin/Debug/EventSemantics.Messaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/EventSemantics.Messaging.dll -------------------------------------------------------------------------------- /Messaging/bin/Debug/EventSemantics.Messaging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/EventSemantics.Messaging.pdb -------------------------------------------------------------------------------- /Messaging/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Messaging/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Messaging/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Messaging/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Messaging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Messaging/obj/Debug/EventSemantics.Messaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/obj/Debug/EventSemantics.Messaging.dll -------------------------------------------------------------------------------- /Messaging/obj/Debug/EventSemantics.Messaging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/obj/Debug/EventSemantics.Messaging.pdb -------------------------------------------------------------------------------- /Messaging/obj/Debug/Messaging.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/obj/Debug/Messaging.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Messaging/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Messaging/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Messaging/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Messaging/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /MicrosoftMessageBridge.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/MicrosoftMessageBridge.v12.suo -------------------------------------------------------------------------------- /Monitoring.Debug/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Monitoring.Debug/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Monitoring Debug Library")] 15 | [assembly: AssemblyDescription("A set of classes to support debug monitoring output.")] 16 | [assembly: AssemblyConfiguration("")] 17 | [assembly: AssemblyCompany("Microsoft IT")] 18 | [assembly: AssemblyProduct("Event Semantics Platform")] 19 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 20 | [assembly: AssemblyTrademark("")] 21 | [assembly: AssemblyCulture("")] 22 | 23 | // Setting ComVisible to false makes the types in this assembly not visible 24 | // to COM components. If you need to access a type in this assembly from 25 | // COM, set the ComVisible attribute to true on that type. 26 | [assembly: ComVisible(false)] 27 | 28 | // Version information for an assembly consists of the following four values: 29 | // Major Version 30 | // Minor Version 31 | // Build Number 32 | // Revision 33 | // You can specify all the values or you can default the Build and Revision Numbers 34 | // by using the '*' as shown below: 35 | // [assembly: AssemblyVersion("1.0.*")] 36 | [assembly: AssemblyVersion("1.0.0.0")] 37 | [assembly: AssemblyFileVersion("1.0.0.0")] 38 | 39 | // Mark the assembly as CLS compliant since it exposes public types. 40 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Monitoring.Debug/Properties/Monitoring.Debug.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/Properties/Monitoring.Debug.snk -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.Debug.dll -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.Debug.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.Debug.pdb -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Monitoring.Debug/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Monitoring.Debug/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Monitoring.Debug/obj/Debug/EventSemantics.Monitoring.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/obj/Debug/EventSemantics.Monitoring.Debug.dll -------------------------------------------------------------------------------- /Monitoring.Debug/obj/Debug/EventSemantics.Monitoring.Debug.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/obj/Debug/EventSemantics.Monitoring.Debug.pdb -------------------------------------------------------------------------------- /Monitoring.Debug/obj/Debug/Monitoring.Debug.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/obj/Debug/Monitoring.Debug.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Monitoring.Debug/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Monitoring.Debug/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Monitoring.Debug/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Debug/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Monitoring.EventTracing/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Monitoring.EventTracing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Platform Monitoring Library for Event Tracing for Windows (ETW)")] 15 | [assembly: AssemblyDescription("A set of classes for producing event tracing (ETW) diagnostics.")] 16 | [assembly: AssemblyConfiguration("")] 17 | [assembly: AssemblyCompany("Microsoft IT")] 18 | [assembly: AssemblyProduct("Event Semantics Platform")] 19 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 20 | [assembly: AssemblyTrademark("")] 21 | [assembly: AssemblyCulture("")] 22 | 23 | // Setting ComVisible to false makes the types in this assembly not visible 24 | // to COM components. If you need to access a type in this assembly from 25 | // COM, set the ComVisible attribute to true on that type. 26 | [assembly: ComVisible(false)] 27 | 28 | // The following GUID is for the ID of the typelib if this project is exposed to COM 29 | [assembly: Guid("3261a909-976f-47b0-972b-1876841fd081")] 30 | 31 | // Version information for an assembly consists of the following four values: 32 | // Major Version 33 | // Minor Version 34 | // Build Number 35 | // Revision 36 | // You can specify all the values or you can default the Build and Revision Numbers 37 | // by using the '*' as shown below: 38 | // [assembly: AssemblyVersion("1.0.*")] 39 | [assembly: AssemblyVersion("1.0.0.0")] 40 | [assembly: AssemblyFileVersion("1.0.0.0")] 41 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Monitoring.EventTracing/Properties/Monitoring.EventTracing.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/Properties/Monitoring.EventTracing.snk -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.EventTracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.EventTracing.dll -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.EventTracing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.EventTracing.pdb -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/Microsoft.Diagnostics.Tracing.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/Microsoft.Diagnostics.Tracing.EventSource.dll -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Monitoring.EventTracing/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Monitoring.EventTracing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Monitoring.EventTracing/obj/Debug/EventSemantics.Monitoring.EventTracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/obj/Debug/EventSemantics.Monitoring.EventTracing.dll -------------------------------------------------------------------------------- /Monitoring.EventTracing/obj/Debug/EventSemantics.Monitoring.EventTracing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/obj/Debug/EventSemantics.Monitoring.EventTracing.pdb -------------------------------------------------------------------------------- /Monitoring.EventTracing/obj/Debug/Monitoring.EventTracing.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/obj/Debug/Monitoring.EventTracing.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Monitoring.EventTracing/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Monitoring.EventTracing/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Monitoring.EventTracing/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.EventTracing/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Monitoring.EventTracing/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Monitoring.Test/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Monitoring.Test/IMockActivityMonitor.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring.Test 7 | { 8 | using System.Threading.Tasks; 9 | 10 | /// 11 | /// A mock activity monitoring interface for unit testing. 12 | /// 13 | internal interface IMockActivityMonitor : IMessagingActivityMonitor 14 | { 15 | #region Public Methods and Operators 16 | 17 | /// 18 | /// Called when ending an activity. 19 | /// 20 | /// 21 | /// The sender. 22 | /// 23 | /// 24 | /// The instance containing the event data. 25 | /// 26 | /// 27 | /// The 28 | /// 29 | Task OnEnding(object sender, MockEndingEventArgs args); 30 | 31 | /// 32 | /// Called when starting an activity. 33 | /// 34 | /// 35 | /// The sender. 36 | /// 37 | /// 38 | /// The instance containing the event data. 39 | /// 40 | /// 41 | /// The 42 | /// 43 | Task OnStarting(object sender, MockStartingEventArgs args); 44 | 45 | #endregion 46 | } 47 | } -------------------------------------------------------------------------------- /Monitoring.Test/MockEndingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring.Test 7 | { 8 | /// 9 | /// The mock ending event arguments. 10 | /// 11 | internal class MockEndingEventArgs : EndEventArgs 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the context. 17 | /// 18 | /// 19 | /// The context. 20 | /// 21 | public string Context { get; set; } 22 | 23 | #endregion 24 | } 25 | } -------------------------------------------------------------------------------- /Monitoring.Test/MockStartingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring.Test 7 | { 8 | /// 9 | /// The mock starting event arguments. 10 | /// 11 | internal class MockStartingEventArgs : BeginEventArgs 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the context. 17 | /// 18 | /// 19 | /// The context. 20 | /// 21 | public string Context { get; set; } 22 | 23 | #endregion 24 | } 25 | } -------------------------------------------------------------------------------- /Monitoring.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System.Reflection; 8 | using System.Runtime.InteropServices; 9 | 10 | // General Information about an assembly is controlled through the following 11 | // set of attributes. Change these attribute values to modify the information 12 | // associated with an assembly. 13 | [assembly: AssemblyTitle("Messaging.Monitoring.Test")] 14 | [assembly: AssemblyDescription("")] 15 | [assembly: AssemblyConfiguration("")] 16 | [assembly: AssemblyCompany("")] 17 | [assembly: AssemblyProduct("Messaging.Monitoring.Test")] 18 | [assembly: AssemblyCopyright("Copyright © 2015")] 19 | [assembly: AssemblyTrademark("")] 20 | [assembly: AssemblyCulture("")] 21 | 22 | // Setting ComVisible to false makes the types in this assembly not visible 23 | // to COM components. If you need to access a type in this assembly from 24 | // COM, set the ComVisible attribute to true on that type. 25 | [assembly: ComVisible(false)] 26 | 27 | // The following GUID is for the ID of the typelib if this project is exposed to COM 28 | [assembly: Guid("c7619b21-2206-48a1-aaba-fac090e584d8")] 29 | 30 | // Version information for an assembly consists of the following four values: 31 | // Major Version 32 | // Minor Version 33 | // Build Number 34 | // Revision 35 | // You can specify all the values or you can default the Build and Revision Numbers 36 | // by using the '*' as shown below: 37 | // [assembly: AssemblyVersion("1.0.*")] 38 | [assembly: AssemblyVersion("1.0.0.0")] 39 | [assembly: AssemblyFileVersion("1.0.0.0")] -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Messaging.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Messaging.Test.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Messaging.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Messaging.Test.pdb -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Messaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Messaging.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Messaging.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Messaging.pdb -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Test.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Test.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Test.pdb -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Tracing.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Tracing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Monitoring.Tracing.pdb -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/Moq.dll -------------------------------------------------------------------------------- /Monitoring.Test/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Monitoring.Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Monitoring.Test/obj/Debug/EventSemantics.Monitoring.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/obj/Debug/EventSemantics.Monitoring.Test.dll -------------------------------------------------------------------------------- /Monitoring.Test/obj/Debug/EventSemantics.Monitoring.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/obj/Debug/EventSemantics.Monitoring.Test.pdb -------------------------------------------------------------------------------- /Monitoring.Test/obj/Debug/Monitoring.Test.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/obj/Debug/Monitoring.Test.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Monitoring.Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Monitoring.Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Monitoring.Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Monitoring.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Monitoring.Tracing/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Monitoring.Tracing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Platform Monitoring Library for Diagnostic Tracing")] 15 | [assembly: AssemblyDescription("A set of class to support diagnostics tracing.")] 16 | [assembly: AssemblyConfiguration("")] 17 | [assembly: AssemblyCompany("Microsoft IT")] 18 | [assembly: AssemblyProduct("Event Semantics Platform")] 19 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 20 | [assembly: AssemblyTrademark("")] 21 | [assembly: AssemblyCulture("")] 22 | 23 | // Setting ComVisible to false makes the types in this assembly not visible 24 | // to COM components. If you need to access a type in this assembly from 25 | // COM, set the ComVisible attribute to true on that type. 26 | [assembly: ComVisible(false)] 27 | 28 | // The following GUID is for the ID of the typelib if this project is exposed to COM 29 | [assembly: Guid("08382a52-02e5-4ccd-a5c6-616ab248ea45")] 30 | 31 | // Version information for an assembly consists of the following four values: 32 | // Major Version 33 | // Minor Version 34 | // Build Number 35 | // Revision 36 | // You can specify all the values or you can default the Build and Revision Numbers 37 | // by using the '*' as shown below: 38 | // [assembly: AssemblyVersion("1.0.*")] 39 | [assembly: AssemblyVersion("1.0.0.0")] 40 | [assembly: AssemblyFileVersion("1.0.0.0")] 41 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Monitoring.Tracing/Properties/Monitoring.Tracing.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/Properties/Monitoring.Tracing.snk -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.Tracing.dll -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.Tracing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.Tracing.pdb -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Monitoring.Tracing/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Monitoring.Tracing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Monitoring.Tracing/obj/Debug/EventSemantics.Monitoring.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/obj/Debug/EventSemantics.Monitoring.Tracing.dll -------------------------------------------------------------------------------- /Monitoring.Tracing/obj/Debug/EventSemantics.Monitoring.Tracing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/obj/Debug/EventSemantics.Monitoring.Tracing.pdb -------------------------------------------------------------------------------- /Monitoring.Tracing/obj/Debug/Monitoring.Tracing.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/obj/Debug/Monitoring.Tracing.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Monitoring.Tracing/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Monitoring.Tracing/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Monitoring.Tracing/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring.Tracing/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Monitoring/BeginEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using System; 9 | 10 | /// 11 | /// The data for a beginning event. 12 | /// 13 | public abstract class BeginEventArgs : EventArgs 14 | { 15 | } 16 | } -------------------------------------------------------------------------------- /Monitoring/BridgeClosedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the bridge has closed. 10 | /// 11 | public class BridgeClosedEventArgs : EndEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/BridgeClosingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the bridge is closing. 10 | /// 11 | public class BridgeClosingEventArgs : BeginEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/BridgeInitializedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the bridge has initialized. 12 | /// 13 | public class BridgeInitializedEventArgs : EndEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the description. 19 | /// 20 | public MessageBusBridgeDescription Description { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/BridgeInitializingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the bridge is initializing. 12 | /// 13 | public class BridgeInitializingEventArgs : BeginEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the description. 19 | /// 20 | public MessageBusBridgeDescription Description { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/BridgeTransferredEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the bridge has transferred a message. 12 | /// 13 | public class BridgeTransferredEventArgs : EndEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the message. 19 | /// 20 | public IMessage Message { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/BridgeTransferringEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the bridge is transferring a message. 12 | /// 13 | public class BridgeTransferringEventArgs : BeginEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the message. 19 | /// 20 | public IMessage Message { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/EndEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using System; 9 | 10 | /// 11 | /// The data for an ending event. 12 | /// 13 | public abstract class EndEventArgs : EventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the elapsed time for the operation that is ending. 19 | /// 20 | public TimeSpan Elapsed { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Monitoring/IActivityListener.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // 6 | // The ActivityListener interface. 7 | // 8 | // -------------------------------------------------------------------------------------------------------------------- 9 | namespace Microsoft.MessageBridge.Monitoring 10 | { 11 | /// 12 | /// The ActivityListener interface. 13 | /// 14 | public interface IActivityListener 15 | { 16 | #region Public Methods and Operators 17 | 18 | /// 19 | /// Initializes the listener. 20 | /// 21 | /// 22 | /// The monitor. 23 | /// 24 | void Initialize(IActivityMonitor monitor); 25 | 26 | #endregion 27 | } 28 | } -------------------------------------------------------------------------------- /Monitoring/IMessagingActivityMonitor.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using System.Threading.Tasks; 9 | 10 | /// 11 | /// The base messaging activity monitor interface. 12 | /// 13 | public interface IMessagingActivityMonitor 14 | { 15 | #region Public Methods and Operators 16 | 17 | /// 18 | /// The initialize. 19 | /// 20 | /// 21 | /// The . 22 | /// 23 | Task Initialize(); 24 | 25 | /// 26 | /// Called when an exception occurs. 27 | /// 28 | /// 29 | /// The sender. 30 | /// 31 | /// 32 | /// The instance containing the event data. 33 | /// 34 | /// 35 | /// The for the operation. 36 | /// 37 | Task OnException(object sender, MessagingExceptionEventArgs args); 38 | 39 | #endregion 40 | } 41 | } -------------------------------------------------------------------------------- /Monitoring/MessageBusClosedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the message bus has closed. 10 | /// 11 | public class MessageBusClosedEventArgs : EndEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/MessageBusClosingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the message bus is closing. 10 | /// 11 | public class MessageBusClosingEventArgs : BeginEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/MessageBusRegisteredHandlerEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the message bus has registered a handler. 10 | /// 11 | public class MessageBusRegisteredHandlerEventArgs : EndEventArgs 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the entity. 17 | /// 18 | public string Entity { get; set; } 19 | 20 | /// 21 | /// Gets or sets the name. 22 | /// 23 | public string Name { get; set; } 24 | 25 | #endregion 26 | } 27 | } -------------------------------------------------------------------------------- /Monitoring/MessageBusRegisteringHandlerEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the message bus is registering a handler. 10 | /// 11 | public class MessageBusRegisteringHandlerEventArgs : BeginEventArgs 12 | { 13 | #region Public Properties 14 | 15 | /// 16 | /// Gets or sets the entity. 17 | /// 18 | public string Entity { get; set; } 19 | 20 | /// 21 | /// Gets or sets the name. 22 | /// 23 | public string Name { get; set; } 24 | 25 | #endregion 26 | } 27 | } -------------------------------------------------------------------------------- /Monitoring/MessageBusSendingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the message bus is sending a message. 12 | /// 13 | public class MessageBusSendingEventArgs : BeginEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the entity. 19 | /// 20 | public string Entity { get; set; } 21 | 22 | /// 23 | /// Gets or sets the message. 24 | /// 25 | public IMessage Message { get; set; } 26 | 27 | #endregion 28 | } 29 | } -------------------------------------------------------------------------------- /Monitoring/MessageBusSentEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the message bus has sent a message. 12 | /// 13 | public class MessageBusSentEventArgs : EndEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the entity. 19 | /// 20 | public string Entity { get; set; } 21 | 22 | /// 23 | /// Gets or sets the message. 24 | /// 25 | public IMessage Message { get; set; } 26 | 27 | #endregion 28 | } 29 | } -------------------------------------------------------------------------------- /Monitoring/MessagingExceptionEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using System; 9 | 10 | /// 11 | /// The data for an event. 12 | /// 13 | public class MessagingExceptionEventArgs : EventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the exception. 19 | /// 20 | public Exception Exception { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | 7 | using System; 8 | using System.Reflection; 9 | using System.Runtime.InteropServices; 10 | 11 | // General Information about an assembly is controlled through the following 12 | // set of attributes. Change these attribute values to modify the information 13 | // associated with an assembly. 14 | [assembly: AssemblyTitle("Event Semantics Platform Messaging Monitoring Library")] 15 | [assembly: 16 | AssemblyDescription( 17 | "A set of classes and methods for emitting trace events used for monitoring the activity of the system.")] 18 | [assembly: AssemblyConfiguration("")] 19 | [assembly: AssemblyCompany("Microsoft IT")] 20 | [assembly: AssemblyProduct("Event Semantics Platform")] 21 | [assembly: AssemblyCopyright("Copyright © 2015 Microsoft Corporation. All rights reserved.")] 22 | [assembly: AssemblyTrademark("")] 23 | [assembly: AssemblyCulture("")] 24 | 25 | // Setting ComVisible to false makes the types in this assembly not visible 26 | // to COM components. If you need to access a type in this assembly from 27 | // COM, set the ComVisible attribute to true on that type. 28 | [assembly: ComVisible(false)] 29 | 30 | // Version information for an assembly consists of the following four values: 31 | // Major Version 32 | // Minor Version 33 | // Build Number 34 | // Revision 35 | // You can specify all the values or you can default the Build and Revision Numbers 36 | // by using the '*' as shown below: 37 | // [assembly: AssemblyVersion("1.0.*")] 38 | [assembly: AssemblyVersion("1.0.0.0")] 39 | [assembly: AssemblyFileVersion("1.0.0.0")] 40 | 41 | // Mark the assembly as CLS-compliant since it exposes types. 42 | [assembly: CLSCompliant(true)] -------------------------------------------------------------------------------- /Monitoring/Properties/Messaging.Monitoring.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/Properties/Messaging.Monitoring.snk -------------------------------------------------------------------------------- /Monitoring/PublisherClosedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the publisher has closed. 10 | /// 11 | public class PublisherClosedEventArgs : EndEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/PublisherClosingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the publisher is closing. 10 | /// 11 | public class PublisherClosingEventArgs : BeginEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/PublisherInitializedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the publisher has initialized. 12 | /// 13 | public class PublisherInitializedEventArgs : EndEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the description. 19 | /// 20 | public PublisherDescription Description { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/PublisherInitializingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the publisher is initializing. 12 | /// 13 | public class PublisherInitializingEventArgs : BeginEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the description. 19 | /// 20 | public PublisherDescription Description { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/PublisherSendingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the publisher is sending a message. 12 | /// 13 | public class PublisherSendingEventArgs : BeginEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the message. 19 | /// 20 | public IMessage Message { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/PublisherSentEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the publisher has sent a message. 12 | /// 13 | public class PublisherSentEventArgs : EndEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the message. 19 | /// 20 | public IMessage Message { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/SubscriberClosedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the subscriber has closed. 10 | /// 11 | public class SubscriberClosedEventArgs : EndEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/SubscriberClosingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the subscriber is closing. 10 | /// 11 | public class SubscriberClosingEventArgs : BeginEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/SubscriberInitializedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the subscriber has initialized. 12 | /// 13 | public class SubscriberInitializedEventArgs : EndEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the description. 19 | /// 20 | public SubscriberDescription Description { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/SubscriberInitializingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the subscriber is initializing. 12 | /// 13 | public class SubscriberInitializingEventArgs : BeginEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the description. 19 | /// 20 | public SubscriberDescription Description { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/SubscriberMessageCountEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // 6 | // The subscriber message count args. 7 | // 8 | // -------------------------------------------------------------------------------------------------------------------- 9 | 10 | namespace Microsoft.MessageBridge.Monitoring 11 | { 12 | using System; 13 | 14 | using Microsoft.MessageBridge.Messaging; 15 | 16 | /// 17 | /// The subscriber message count args. 18 | /// 19 | public class SubscriberMessageCountEventArgs : EventArgs 20 | { 21 | #region Properties 22 | 23 | /// 24 | /// Gets or sets the subscriber description. 25 | /// 26 | /// 27 | /// The subscriber description. 28 | /// 29 | public SubscriberDescription SubscriberDescription { get; set; } 30 | 31 | /// 32 | /// Gets or sets the total message count. 33 | /// 34 | /// 35 | /// The total message count. 36 | /// 37 | public long TotalMessageCount { get; set; } 38 | 39 | /// 40 | /// Gets or sets the active message count. 41 | /// 42 | /// 43 | /// The active message count. 44 | /// 45 | public long ActiveMessageCount { get; set; } 46 | 47 | /// 48 | /// Gets or sets the dead letter message count. 49 | /// 50 | /// 51 | /// The dead letter message count. 52 | /// 53 | public long DeadLetterMessageCount { get; set; } 54 | 55 | /// 56 | /// Gets or sets the signal time. 57 | /// 58 | public DateTime SignalTime { get; set; } 59 | 60 | #endregion 61 | } 62 | } -------------------------------------------------------------------------------- /Monitoring/SubscriberReceivedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the subscriber received a message. 12 | /// 13 | public class SubscriberReceivedEventArgs : EndEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the message. 19 | /// 20 | public IMessage Message { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/SubscriberReceivingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | using Microsoft.MessageBridge.Messaging; 9 | 10 | /// 11 | /// The data for the event where the subscriber is receiving a message. 12 | /// 13 | public class SubscriberReceivingEventArgs : BeginEventArgs 14 | { 15 | #region Public Properties 16 | 17 | /// 18 | /// Gets or sets the message. 19 | /// 20 | public IMessage Message { get; set; } 21 | 22 | #endregion 23 | } 24 | } -------------------------------------------------------------------------------- /Monitoring/WorkerCompletedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the worker role has completed execution. 10 | /// 11 | public class WorkerCompletedEventArgs : EndEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/WorkerRunningEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the worker role has started execution. 10 | /// 11 | public class WorkerRunningEventArgs : BeginEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/WorkerStartedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the worker role has started. 10 | /// 11 | public class WorkerStartedEventArgs : EndEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/WorkerStartingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the worker role is starting. 10 | /// 11 | public class WorkerStartingEventArgs : BeginEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/WorkerStoppedEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the worker role has stopped. 10 | /// 11 | public class WorkerStoppedEventArgs : EndEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/WorkerStoppingEventArgs.cs: -------------------------------------------------------------------------------- 1 | // -------------------------------------------------------------------------------------------------------------------- 2 | // 3 | // Copyright 2015 Microsoft Corporation. All rights reserved. 4 | // 5 | // -------------------------------------------------------------------------------------------------------------------- 6 | namespace Microsoft.MessageBridge.Monitoring 7 | { 8 | /// 9 | /// The data for the event where the worker role is stopping. 10 | /// 11 | public class WorkerStoppingEventArgs : BeginEventArgs 12 | { 13 | } 14 | } -------------------------------------------------------------------------------- /Monitoring/bin/Debug/EventSemantics.Messaging.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/bin/Debug/EventSemantics.Messaging.Shared.dll -------------------------------------------------------------------------------- /Monitoring/bin/Debug/EventSemantics.Messaging.Shared.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/bin/Debug/EventSemantics.Messaging.Shared.pdb -------------------------------------------------------------------------------- /Monitoring/bin/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/bin/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Monitoring/bin/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/bin/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Monitoring/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Monitoring/bin/Debug/Microsoft.Practices.Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/bin/Debug/Microsoft.Practices.Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /Monitoring/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Monitoring/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Monitoring/obj/Debug/EventSemantics.Monitoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/obj/Debug/EventSemantics.Monitoring.dll -------------------------------------------------------------------------------- /Monitoring/obj/Debug/EventSemantics.Monitoring.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/obj/Debug/EventSemantics.Monitoring.pdb -------------------------------------------------------------------------------- /Monitoring/obj/Debug/Monitoring.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/obj/Debug/Monitoring.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Monitoring/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /Monitoring/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /Monitoring/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Microsoft-Message-Bridge/05a7ca25498522c591e5774b03c6d672b99387dc/Monitoring/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /Monitoring/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Microsoft-Message-Bridge 2 | A messaging bridge that transforms messages and connects different real time interfaces such as service bus and event hub. 3 | Common uses may be cleaning or transforming incoming JSON data before pushing down stream to another hub, bus or webapi 4 | We have used Microsoft Message Bridge to connect streams to signalR sites to drive data visualization experiences. In other cases we have used Microsoft Message Bridge as a point to intercept the stream and cache a subset of entities and attributes in Redis. 5 | 6 | Jeff Dailey, 7 | Principal Software Engineer, 8 | Microsoft IT 9 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Microsoft Corporation 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 7 | the Software, and to permit persons to whom the Software is furnished to do so, 8 | subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 15 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 16 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 17 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 18 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 19 | --------------------------------------------------------------------------------