Click here to Skip to main content
15,895,192 members
Articles / General Programming

Self Hosted Web API Wrapper Class

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
5 Sep 2013CPOL2 min read 11.5K   153   5  
A wrapper class to simplify the implementation of a Self Hosted Web API Service

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Express 2012 for Windows Desktop
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPIHost_Test", "WebAPIHost_Test\WebAPIHost_Test.csproj", "{FC6B65F4-9788-4E01-BEAC-28E69795696B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPI_Host", "WebAPI_Host\WebAPI_Host.csproj", "{90D7CF2E-D1D3-4F0E-AB94-57FEF7285A18}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestController", "TestController\TestController.csproj", "{48A49729-9453-46ED-A7B8-E5286EAE2F59}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestController2", "TestController2\TestController2.csproj", "{09CEC584-DA6E-4BD0-9815-A7A2E7CDD1FB}"
EndProject
Global
	GlobalSection(TeamFoundationVersionControl) = preSolution
		SccNumberOfProjects = 5
		SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
		SccTeamFoundationServer = https://gamevault.visualstudio.com/defaultcollection
		SccLocalPath0 = .
		SccProjectUniqueName1 = WebAPIHost_Test\\WebAPIHost_Test.csproj
		SccProjectName1 = WebAPIHost_Test
		SccLocalPath1 = WebAPIHost_Test
		SccProjectUniqueName2 = WebAPI_Host\\WebAPI_Host.csproj
		SccProjectName2 = WebAPI_Host
		SccLocalPath2 = WebAPI_Host
		SccProjectUniqueName3 = TestController\\TestController.csproj
		SccProjectName3 = TestController
		SccLocalPath3 = TestController
		SccProjectUniqueName4 = TestController2\\TestController2.csproj
		SccProjectName4 = TestController2
		SccLocalPath4 = TestController2
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{FC6B65F4-9788-4E01-BEAC-28E69795696B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{FC6B65F4-9788-4E01-BEAC-28E69795696B}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{FC6B65F4-9788-4E01-BEAC-28E69795696B}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{FC6B65F4-9788-4E01-BEAC-28E69795696B}.Release|Any CPU.Build.0 = Release|Any CPU
		{90D7CF2E-D1D3-4F0E-AB94-57FEF7285A18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{90D7CF2E-D1D3-4F0E-AB94-57FEF7285A18}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{90D7CF2E-D1D3-4F0E-AB94-57FEF7285A18}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{90D7CF2E-D1D3-4F0E-AB94-57FEF7285A18}.Release|Any CPU.Build.0 = Release|Any CPU
		{48A49729-9453-46ED-A7B8-E5286EAE2F59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{48A49729-9453-46ED-A7B8-E5286EAE2F59}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{48A49729-9453-46ED-A7B8-E5286EAE2F59}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{48A49729-9453-46ED-A7B8-E5286EAE2F59}.Release|Any CPU.Build.0 = Release|Any CPU
		{09CEC584-DA6E-4BD0-9815-A7A2E7CDD1FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{09CEC584-DA6E-4BD0-9815-A7A2E7CDD1FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{09CEC584-DA6E-4BD0-9815-A7A2E7CDD1FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{09CEC584-DA6E-4BD0-9815-A7A2E7CDD1FB}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions