├── .gitignore ├── HTTPDataCollectorAPI.sln ├── HTTPDataCollectorAPI ├── Collector.cs ├── HTTPDataCollectorAPI.csproj ├── HTTPDataCollectorAPI.xproj.nuspec └── ICollector.cs ├── LICENSE ├── README.md └── test ├── .gitignore ├── HTTPDataCollectorAPITests.cs ├── test.csproj └── xunit.runner.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /HTTPDataCollectorAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/HTTPDataCollectorAPI.sln -------------------------------------------------------------------------------- /HTTPDataCollectorAPI/Collector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/HTTPDataCollectorAPI/Collector.cs -------------------------------------------------------------------------------- /HTTPDataCollectorAPI/HTTPDataCollectorAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/HTTPDataCollectorAPI/HTTPDataCollectorAPI.csproj -------------------------------------------------------------------------------- /HTTPDataCollectorAPI/HTTPDataCollectorAPI.xproj.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/HTTPDataCollectorAPI/HTTPDataCollectorAPI.xproj.nuspec -------------------------------------------------------------------------------- /HTTPDataCollectorAPI/ICollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/HTTPDataCollectorAPI/ICollector.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/README.md -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/HTTPDataCollectorAPITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/test/HTTPDataCollectorAPITests.cs -------------------------------------------------------------------------------- /test/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/test/test.csproj -------------------------------------------------------------------------------- /test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ealsur/HTTPDataCollectorAPI/HEAD/test/xunit.runner.json --------------------------------------------------------------------------------