├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE ├── README.md ├── appveyor.yml ├── src ├── Vlingo.Xoom.Http.Tests │ ├── BodyTest.cs │ ├── ChunkedBodyTest.cs │ ├── Content │ │ ├── css │ │ │ └── styles.css │ │ ├── index.html │ │ ├── js │ │ │ └── vuetify.js │ │ └── views │ │ │ ├── About.vue │ │ │ └── test 2 │ │ │ └── index.html │ ├── ContentEncodingMethodTest.cs │ ├── ContentEncodingTest.cs │ ├── ContentTypeTest.cs │ ├── Converter.cs │ ├── ExtendedCharactersFixture.cs │ ├── FiltersTest.cs │ ├── Media │ │ ├── AcceptMediaTypeTest.cs │ │ ├── ContentMediaTypeTest.cs │ │ ├── MediaTypeParserTest.cs │ │ └── ResponseContentMediaTypeSelectorTest.cs │ ├── MethodExtensionsTest.cs │ ├── QueryParametersParserTest.cs │ ├── RequestHeaderTest.cs │ ├── RequestParserTest.cs │ ├── RequestTest.cs │ ├── Resource │ │ ├── ActionTest.cs │ │ ├── ClientTest.cs │ │ ├── ConfigurationResourceTest.cs │ │ ├── ConfigurationTest.cs │ │ ├── DefaultTextPlainMapperTest.cs │ │ ├── DynamicResourceDispatcherTest.cs │ │ ├── DynamicResourceHandlerTest.cs │ │ ├── FailResource.cs │ │ ├── Feed │ │ │ ├── EventsFeedProducerActor.cs │ │ │ └── FeedResourceTest.cs │ │ ├── FluentTestResource.cs │ │ ├── MediaTypeMapperTest.cs │ │ ├── MockCompletesEventuallyResponse.cs │ │ ├── ParameterResolverTest.cs │ │ ├── RequestHandler0Test.cs │ │ ├── RequestHandler1Test.cs │ │ ├── RequestHandler2Test.cs │ │ ├── RequestHandler3Test.cs │ │ ├── RequestHandler4Test.cs │ │ ├── RequestHandler5Test.cs │ │ ├── RequestHandler6Test.cs │ │ ├── RequestHandlerTest.cs │ │ ├── RequestHandlerTestBase.cs │ │ ├── ResourceBuilderTest.cs │ │ ├── ResourceDispatcherGeneratorTest.cs │ │ ├── ResourceFailureTest.cs │ │ ├── ResourceTestFixtures.cs │ │ ├── ResourcesTest.cs │ │ ├── SecureClientTest.cs │ │ ├── ServerBootstrap.cs │ │ ├── ServerCORSTest.cs │ │ ├── ServerTest.cs │ │ ├── SinglePageApplicationResourceTest.cs │ │ ├── Sse │ │ │ ├── MessageEventTest.cs │ │ │ ├── MockRequestResponseContext.cs │ │ │ ├── MockResponseSenderChannel.cs │ │ │ ├── MockSseStreamResource.cs │ │ │ ├── SseClientTest.cs │ │ │ ├── SseEventTest.cs │ │ │ ├── SseFeedTest.cs │ │ │ ├── SseStreamResourceTest.cs │ │ │ └── SseSubscriberTest.cs │ │ ├── StaticFilesResourceTest.cs │ │ ├── TestDispatcher.cs │ │ ├── TestMapper.cs │ │ ├── TestResponseChannelConsumer.cs │ │ └── TestResponseConsumer.cs │ ├── ResponseParserTest.cs │ ├── ResponseTest.cs │ ├── Sample │ │ └── User │ │ │ ├── AllSseFeedActor.cs │ │ │ ├── ContactData.cs │ │ │ ├── Model │ │ │ ├── Contact.cs │ │ │ ├── IProfile.cs │ │ │ ├── IUser.cs │ │ │ ├── Name.cs │ │ │ ├── ProfileActor.cs │ │ │ ├── ProfileRepository.cs │ │ │ ├── ProfileState.cs │ │ │ ├── ProfileStateFactory.cs │ │ │ ├── UserActor.cs │ │ │ ├── UserRepository.cs │ │ │ ├── UserState.cs │ │ │ ├── UserStateFactory.cs │ │ │ └── User__Proxy.cs │ │ │ ├── NameData.cs │ │ │ ├── ProfileData.cs │ │ │ ├── ProfileDataMapper.cs │ │ │ ├── ProfileResource.cs │ │ │ ├── ProfileResourceFluent.cs │ │ │ ├── Serialization │ │ │ └── UserDataConverter.cs │ │ │ ├── UserData.cs │ │ │ ├── UserDataMapper.cs │ │ │ ├── UserResource.cs │ │ │ └── UserResourceFluent.cs │ ├── ToSpecParserTest.cs │ ├── VersionTest.cs │ ├── Vlingo.Xoom.Http.Tests.csproj │ ├── vlingo-actors.json │ └── vlingo-http.json ├── Vlingo.Xoom.Http.sln ├── Vlingo.Xoom.Http.sln.licenseheader └── Vlingo.Xoom.Http │ ├── BinaryBody.cs │ ├── Body.cs │ ├── CORSResponseFilter.cs │ ├── ChunkedBody.cs │ ├── ContentEncoding.cs │ ├── ContentEncodingMethod.cs │ ├── ContentPacket.cs │ ├── ContentType.cs │ ├── Context.cs │ ├── Filter.cs │ ├── Filters.cs │ ├── Header.cs │ ├── Headers.cs │ ├── Media │ ├── ContentMediaType.cs │ ├── MediaTypeDescriptor.cs │ ├── MediaTypeParser.cs │ └── ResponseMediaTypeSelector.cs │ ├── Method.cs │ ├── PlainBody.cs │ ├── QueryParameters.cs │ ├── Request.cs │ ├── RequestData.cs │ ├── RequestFilter.cs │ ├── RequestHeader.cs │ ├── RequestParser.cs │ ├── Resource │ ├── AbstractDispatcherPool.cs │ ├── Action.cs │ ├── Actions.cs │ ├── AgentDispatcherPool.cs │ ├── Client.cs │ ├── ClientConsumerCommons.cs │ ├── ClientConsumerWorkerActor.cs │ ├── ClientConsumer__Proxy.cs │ ├── ClientCorrelatingRequesterConsumerActor.cs │ ├── Configuration.cs │ ├── ConfigurationResource.cs │ ├── Content.cs │ ├── DefaultErrorHandler.cs │ ├── DefaultJsonMapper.cs │ ├── DefaultMediaTypeMapper.cs │ ├── DefaultTextPlainMapper.cs │ ├── DispatcherActor.cs │ ├── Dispatcher__Proxy.cs │ ├── DynamicResource.cs │ ├── DynamicResourceHandler.cs │ ├── EmbeddedResourceLoader.cs │ ├── Feed │ │ ├── FeedProducer__Proxy.cs │ │ ├── FeedProductRequest.cs │ │ ├── FeedResource.cs │ │ ├── FeedResourceDispatcher.cs │ │ └── IFeedProducer.cs │ ├── HandlerMissingException.cs │ ├── HttpProperties.cs │ ├── IClientConsumer.cs │ ├── IConfigurationResource.cs │ ├── IDispatcher.cs │ ├── IDispatcherPool.cs │ ├── IErrorHandler.cs │ ├── IMapper.cs │ ├── IRequestSender.cs │ ├── IResource.cs │ ├── IResourceRequestHandler.cs │ ├── IResponseConsumer.cs │ ├── IServer.cs │ ├── LoadBalancingClientRequestConsumerActor.cs │ ├── Loader.cs │ ├── MediaTypeMapper.cs │ ├── MediaTypeNotSupportedException.cs │ ├── ObjectResponse.cs │ ├── ParameterResolver.cs │ ├── RequestExecutor.cs │ ├── RequestHandler.cs │ ├── RequestHandler0.cs │ ├── RequestHandler1.cs │ ├── RequestHandler2.cs │ ├── RequestHandler3.cs │ ├── RequestHandler4.cs │ ├── RequestHandler5.cs │ ├── RequestHandler6.cs │ ├── RequestHandler7.cs │ ├── RequestHandler8.cs │ ├── RequestObjectExecutor.cs │ ├── RequestSenderProbeActor.cs │ ├── RequestSender__Proxy.cs │ ├── Resource.cs │ ├── ResourceBuilder.cs │ ├── ResourceDispatcherGenerator.cs │ ├── ResourceErrorProcessor.cs │ ├── ResourceHandler.cs │ ├── ResourceRequestHandlerActor.cs │ ├── ResourceRequestHandler__Proxy.cs │ ├── Resources.cs │ ├── RoundRobinClientRequestConsumerActor.cs │ ├── ServerActor.cs │ ├── Server__Proxy.cs │ ├── SinglePageApplicationConfiguration.cs │ ├── SinglePageApplicationResource.cs │ ├── Sse │ │ ├── ISseFeed.cs │ │ ├── ISsePublisher.cs │ │ ├── MessageEvent.cs │ │ ├── SseClient.cs │ │ ├── SseEvent.cs │ │ ├── SseFeed__Proxy.cs │ │ ├── SsePublisher__Proxy.cs │ │ ├── SseStreamResource.cs │ │ ├── SseStreamResourceDispatcher.cs │ │ └── SseSubscriber.cs │ ├── StaticFilesResource.cs │ ├── StaticFilesResourceDispatcher.cs │ └── TypeLoader.cs │ ├── Response.cs │ ├── ResponseFilter.cs │ ├── ResponseHeader.cs │ ├── ResponseParser.cs │ ├── UrlFactory.cs │ ├── Version.cs │ └── Vlingo.Xoom.Http.csproj └── vlingo-64x64.png /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/BodyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/BodyTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ChunkedBodyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ChunkedBodyTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Content/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Content/css/styles.css -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Content/index.html -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Content/js/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Content/js/vuetify.js -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Content/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Content/views/About.vue -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Content/views/test 2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Content/views/test 2/index.html -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ContentEncodingMethodTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ContentEncodingMethodTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ContentEncodingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ContentEncodingTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ContentTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ContentTypeTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Converter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ExtendedCharactersFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ExtendedCharactersFixture.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/FiltersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/FiltersTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Media/AcceptMediaTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Media/AcceptMediaTypeTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Media/ContentMediaTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Media/ContentMediaTypeTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Media/MediaTypeParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Media/MediaTypeParserTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Media/ResponseContentMediaTypeSelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Media/ResponseContentMediaTypeSelectorTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/MethodExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/MethodExtensionsTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/QueryParametersParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/QueryParametersParserTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/RequestHeaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/RequestHeaderTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/RequestParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/RequestParserTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/RequestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/RequestTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ActionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ActionTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ClientTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ConfigurationResourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ConfigurationResourceTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ConfigurationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ConfigurationTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/DefaultTextPlainMapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/DefaultTextPlainMapperTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/DynamicResourceDispatcherTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/DynamicResourceDispatcherTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/DynamicResourceHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/DynamicResourceHandlerTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/FailResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/FailResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Feed/EventsFeedProducerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Feed/EventsFeedProducerActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Feed/FeedResourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Feed/FeedResourceTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/FluentTestResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/FluentTestResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/MediaTypeMapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/MediaTypeMapperTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/MockCompletesEventuallyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/MockCompletesEventuallyResponse.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ParameterResolverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ParameterResolverTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler0Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler0Test.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler1Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler1Test.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler2Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler2Test.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler3Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler3Test.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler4Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler4Test.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler5Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler5Test.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler6Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandler6Test.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandlerTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/RequestHandlerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/RequestHandlerTestBase.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ResourceBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ResourceBuilderTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ResourceDispatcherGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ResourceDispatcherGeneratorTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ResourceFailureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ResourceFailureTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ResourceTestFixtures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ResourceTestFixtures.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ResourcesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ResourcesTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/SecureClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/SecureClientTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ServerBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ServerBootstrap.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ServerCORSTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ServerCORSTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/ServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/ServerTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/SinglePageApplicationResourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/SinglePageApplicationResourceTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/MessageEventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/MessageEventTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/MockRequestResponseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/MockRequestResponseContext.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/MockResponseSenderChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/MockResponseSenderChannel.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/MockSseStreamResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/MockSseStreamResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseClientTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseEventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseEventTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseFeedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseFeedTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseStreamResourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseStreamResourceTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseSubscriberTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/Sse/SseSubscriberTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/StaticFilesResourceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/StaticFilesResourceTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/TestDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/TestDispatcher.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/TestMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/TestMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/TestResponseChannelConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/TestResponseChannelConsumer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Resource/TestResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Resource/TestResponseConsumer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ResponseParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ResponseParserTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ResponseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ResponseTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/AllSseFeedActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/AllSseFeedActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/ContactData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/ContactData.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/Contact.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/IProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/IProfile.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/IUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/IUser.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/Name.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileRepository.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileState.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileStateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/ProfileStateFactory.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserRepository.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserState.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserStateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/UserStateFactory.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Model/User__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Model/User__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/NameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/NameData.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileData.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileDataMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileDataMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileResourceFluent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/ProfileResourceFluent.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/Serialization/UserDataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/Serialization/UserDataConverter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/UserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/UserData.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/UserDataMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/UserDataMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/UserResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/UserResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Sample/User/UserResourceFluent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Sample/User/UserResourceFluent.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/ToSpecParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/ToSpecParserTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/VersionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/VersionTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/Vlingo.Xoom.Http.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/Vlingo.Xoom.Http.Tests.csproj -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/vlingo-actors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/vlingo-actors.json -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.Tests/vlingo-http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.Tests/vlingo-http.json -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.sln -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http.sln.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http.sln.licenseheader -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/BinaryBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/BinaryBody.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Body.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Body.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/CORSResponseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/CORSResponseFilter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ChunkedBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ChunkedBody.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ContentEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ContentEncoding.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ContentEncodingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ContentEncodingMethod.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ContentPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ContentPacket.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ContentType.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Context.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Filter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Filters.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Header.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Headers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Headers.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Media/ContentMediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Media/ContentMediaType.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Media/MediaTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Media/MediaTypeDescriptor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Media/MediaTypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Media/MediaTypeParser.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Media/ResponseMediaTypeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Media/ResponseMediaTypeSelector.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Method.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/PlainBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/PlainBody.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/QueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/QueryParameters.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Request.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/RequestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/RequestData.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/RequestFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/RequestFilter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/RequestHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/RequestHeader.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/RequestParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/RequestParser.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/AbstractDispatcherPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/AbstractDispatcherPool.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Action.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Actions.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/AgentDispatcherPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/AgentDispatcherPool.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Client.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ClientConsumerCommons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ClientConsumerCommons.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ClientConsumerWorkerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ClientConsumerWorkerActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ClientConsumer__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ClientConsumer__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ClientCorrelatingRequesterConsumerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ClientCorrelatingRequesterConsumerActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Configuration.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ConfigurationResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ConfigurationResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Content.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/DefaultErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/DefaultErrorHandler.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/DefaultJsonMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/DefaultJsonMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/DefaultMediaTypeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/DefaultMediaTypeMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/DefaultTextPlainMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/DefaultTextPlainMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/DispatcherActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/DispatcherActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Dispatcher__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Dispatcher__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/DynamicResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/DynamicResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/DynamicResourceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/DynamicResourceHandler.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/EmbeddedResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/EmbeddedResourceLoader.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Feed/FeedProducer__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Feed/FeedProducer__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Feed/FeedProductRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Feed/FeedProductRequest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Feed/FeedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Feed/FeedResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Feed/FeedResourceDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Feed/FeedResourceDispatcher.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Feed/IFeedProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Feed/IFeedProducer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/HandlerMissingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/HandlerMissingException.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/HttpProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/HttpProperties.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IClientConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IClientConsumer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IConfigurationResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IConfigurationResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IDispatcher.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IDispatcherPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IDispatcherPool.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IErrorHandler.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IRequestSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IRequestSender.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IResourceRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IResourceRequestHandler.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IResponseConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IResponseConsumer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/IServer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/LoadBalancingClientRequestConsumerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/LoadBalancingClientRequestConsumerActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Loader.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/MediaTypeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/MediaTypeMapper.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/MediaTypeNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/MediaTypeNotSupportedException.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ObjectResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ObjectResponse.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ParameterResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ParameterResolver.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestExecutor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler0.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler1.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler2.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler3.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler4.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler5.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler6.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler7.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestHandler8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestHandler8.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestObjectExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestObjectExecutor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestSenderProbeActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestSenderProbeActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RequestSender__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RequestSender__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Resource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ResourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ResourceBuilder.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ResourceDispatcherGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ResourceDispatcherGenerator.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ResourceErrorProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ResourceErrorProcessor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ResourceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ResourceHandler.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ResourceRequestHandlerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ResourceRequestHandlerActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ResourceRequestHandler__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ResourceRequestHandler__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Resources.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/RoundRobinClientRequestConsumerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/RoundRobinClientRequestConsumerActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/ServerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/ServerActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Server__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Server__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/SinglePageApplicationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/SinglePageApplicationConfiguration.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/SinglePageApplicationResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/SinglePageApplicationResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/ISseFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/ISseFeed.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/ISsePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/ISsePublisher.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/MessageEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/MessageEvent.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/SseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/SseClient.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/SseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/SseEvent.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/SseFeed__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/SseFeed__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/SsePublisher__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/SsePublisher__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/SseStreamResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/SseStreamResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/SseStreamResourceDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/SseStreamResourceDispatcher.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/Sse/SseSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/Sse/SseSubscriber.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/StaticFilesResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/StaticFilesResource.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/StaticFilesResourceDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/StaticFilesResourceDispatcher.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Resource/TypeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Resource/TypeLoader.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Response.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ResponseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ResponseFilter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ResponseHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ResponseHeader.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/ResponseParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/ResponseParser.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/UrlFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/UrlFactory.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Version.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Http/Vlingo.Xoom.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/src/Vlingo.Xoom.Http/Vlingo.Xoom.Http.csproj -------------------------------------------------------------------------------- /vlingo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-http/HEAD/vlingo-64x64.png --------------------------------------------------------------------------------