├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── AspNetWebApi.sln ├── AspNetWebApi ├── AspNetWebApi.csproj ├── Code │ └── WebApi │ │ ├── Binders │ │ ├── NakedBodyAttribute.cs │ │ ├── NakedBodyParameterBinding.cs │ │ └── SimplePostVariableParameterBinding.cs │ │ ├── Filters │ │ ├── ApiMessageError.cs │ │ └── UnhandledExceptionFilter.cs │ │ ├── Formatters │ │ ├── JavaScriptSerializerFormatter.cs │ │ ├── JsonNetFormatter.cs │ │ └── JsonpFormatter.cs │ │ └── Helpers │ │ └── EmptyTask.cs ├── Controllers │ ├── AlbumApiController.cs │ ├── AlbumRpcApiController.cs │ └── SamplesApiController.cs ├── Css │ ├── GetAlbums.css │ ├── Images │ │ ├── DialogHeader.png │ │ ├── DialogHighlight.png │ │ ├── DialogSelection.png │ │ ├── DialogStrip.png │ │ ├── EditBlue.gif │ │ ├── EditBlue.png │ │ ├── EditWhite.gif │ │ ├── HeaderGradient.png │ │ ├── Info.gif │ │ ├── Info.png │ │ ├── LightBlueGradient.png │ │ ├── LightOrangeGradient.png │ │ ├── MenuHighlight.png │ │ ├── New.gif │ │ ├── New.png │ │ ├── Remove.gif │ │ ├── Remove.png │ │ ├── Sort.gif │ │ ├── TabHover.gif │ │ ├── TabHover.png │ │ ├── TabNormal.gif │ │ ├── TabNormal.png │ │ ├── TabSelected.gif │ │ ├── TabSelected.png │ │ ├── close.gif │ │ ├── close.png │ │ ├── edit.gif │ │ ├── edit.png │ │ ├── help.gif │ │ ├── help.png │ │ ├── home.gif │ │ ├── home.png │ │ ├── loading_black.gif │ │ ├── loading_small.gif │ │ ├── next.png │ │ ├── prev.png │ │ ├── refresh.gif │ │ ├── refresh.png │ │ ├── search.gif │ │ ├── search.png │ │ ├── users.gif │ │ ├── users.png │ │ └── warning.gif │ ├── Reset.css │ └── Standard.css ├── GetAlbums.htm ├── GetAlbums.js ├── Global.asax ├── Global.asax.cs ├── HttpClient_Requests.aspx ├── HttpClient_Requests.aspx.cs ├── HttpClient_Requests.aspx.designer.cs ├── Images │ ├── Load16.png │ └── SailBig.jpg ├── JsonpClient.htm ├── Model │ └── MusicAlbums │ │ ├── Album.cs │ │ └── AlbumData.cs ├── MulitplePostVariables.htm ├── Properties │ └── AssemblyInfo.cs ├── RpcCalls.htm ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── default.htm ├── packages.config └── scripts │ ├── _reference.js │ ├── jquery-vsdoc.js │ ├── jquery.js │ ├── jquery.min.js │ ├── knockout-2.0.0.js │ ├── knockout-mapping.js │ ├── ww.jquery.js │ └── ww.jquery.min.js ├── AspNetWebApiTests ├── App.config ├── AspNetWebApiTests.csproj ├── NakedBodyAttributeTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SimplePostVariableParameterBindingTests.cs └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /AspNetWebApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi.sln -------------------------------------------------------------------------------- /AspNetWebApi/AspNetWebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/AspNetWebApi.csproj -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Binders/NakedBodyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Binders/NakedBodyAttribute.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Binders/NakedBodyParameterBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Binders/NakedBodyParameterBinding.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Binders/SimplePostVariableParameterBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Binders/SimplePostVariableParameterBinding.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Filters/ApiMessageError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Filters/ApiMessageError.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Filters/UnhandledExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Filters/UnhandledExceptionFilter.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Formatters/JavaScriptSerializerFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Formatters/JavaScriptSerializerFormatter.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Formatters/JsonNetFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Formatters/JsonNetFormatter.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Formatters/JsonpFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Formatters/JsonpFormatter.cs -------------------------------------------------------------------------------- /AspNetWebApi/Code/WebApi/Helpers/EmptyTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Code/WebApi/Helpers/EmptyTask.cs -------------------------------------------------------------------------------- /AspNetWebApi/Controllers/AlbumApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Controllers/AlbumApiController.cs -------------------------------------------------------------------------------- /AspNetWebApi/Controllers/AlbumRpcApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Controllers/AlbumRpcApiController.cs -------------------------------------------------------------------------------- /AspNetWebApi/Controllers/SamplesApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Controllers/SamplesApiController.cs -------------------------------------------------------------------------------- /AspNetWebApi/Css/GetAlbums.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/GetAlbums.css -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/DialogHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/DialogHeader.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/DialogHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/DialogHighlight.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/DialogSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/DialogSelection.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/DialogStrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/DialogStrip.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/EditBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/EditBlue.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/EditBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/EditBlue.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/EditWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/EditWhite.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/HeaderGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/HeaderGradient.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/Info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/Info.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/Info.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/LightBlueGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/LightBlueGradient.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/LightOrangeGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/LightOrangeGradient.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/MenuHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/MenuHighlight.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/New.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/New.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/New.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/Remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/Remove.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/Remove.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/Sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/Sort.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/TabHover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/TabHover.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/TabHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/TabHover.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/TabNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/TabNormal.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/TabNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/TabNormal.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/TabSelected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/TabSelected.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/TabSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/TabSelected.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/close.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/close.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/edit.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/edit.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/help.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/help.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/home.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/home.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/loading_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/loading_black.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/loading_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/loading_small.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/next.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/prev.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/refresh.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/refresh.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/search.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/search.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/users.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/users.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/users.png -------------------------------------------------------------------------------- /AspNetWebApi/Css/Images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Images/warning.gif -------------------------------------------------------------------------------- /AspNetWebApi/Css/Reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Reset.css -------------------------------------------------------------------------------- /AspNetWebApi/Css/Standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Css/Standard.css -------------------------------------------------------------------------------- /AspNetWebApi/GetAlbums.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/GetAlbums.htm -------------------------------------------------------------------------------- /AspNetWebApi/GetAlbums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/GetAlbums.js -------------------------------------------------------------------------------- /AspNetWebApi/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Global.asax -------------------------------------------------------------------------------- /AspNetWebApi/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Global.asax.cs -------------------------------------------------------------------------------- /AspNetWebApi/HttpClient_Requests.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/HttpClient_Requests.aspx -------------------------------------------------------------------------------- /AspNetWebApi/HttpClient_Requests.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/HttpClient_Requests.aspx.cs -------------------------------------------------------------------------------- /AspNetWebApi/HttpClient_Requests.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/HttpClient_Requests.aspx.designer.cs -------------------------------------------------------------------------------- /AspNetWebApi/Images/Load16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Images/Load16.png -------------------------------------------------------------------------------- /AspNetWebApi/Images/SailBig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Images/SailBig.jpg -------------------------------------------------------------------------------- /AspNetWebApi/JsonpClient.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/JsonpClient.htm -------------------------------------------------------------------------------- /AspNetWebApi/Model/MusicAlbums/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Model/MusicAlbums/Album.cs -------------------------------------------------------------------------------- /AspNetWebApi/Model/MusicAlbums/AlbumData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Model/MusicAlbums/AlbumData.cs -------------------------------------------------------------------------------- /AspNetWebApi/MulitplePostVariables.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/MulitplePostVariables.htm -------------------------------------------------------------------------------- /AspNetWebApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AspNetWebApi/RpcCalls.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/RpcCalls.htm -------------------------------------------------------------------------------- /AspNetWebApi/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Web.Debug.config -------------------------------------------------------------------------------- /AspNetWebApi/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Web.Release.config -------------------------------------------------------------------------------- /AspNetWebApi/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/Web.config -------------------------------------------------------------------------------- /AspNetWebApi/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/default.htm -------------------------------------------------------------------------------- /AspNetWebApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/packages.config -------------------------------------------------------------------------------- /AspNetWebApi/scripts/_reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/_reference.js -------------------------------------------------------------------------------- /AspNetWebApi/scripts/jquery-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/jquery-vsdoc.js -------------------------------------------------------------------------------- /AspNetWebApi/scripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/jquery.js -------------------------------------------------------------------------------- /AspNetWebApi/scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/jquery.min.js -------------------------------------------------------------------------------- /AspNetWebApi/scripts/knockout-2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/knockout-2.0.0.js -------------------------------------------------------------------------------- /AspNetWebApi/scripts/knockout-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/knockout-mapping.js -------------------------------------------------------------------------------- /AspNetWebApi/scripts/ww.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/ww.jquery.js -------------------------------------------------------------------------------- /AspNetWebApi/scripts/ww.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApi/scripts/ww.jquery.min.js -------------------------------------------------------------------------------- /AspNetWebApiTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApiTests/App.config -------------------------------------------------------------------------------- /AspNetWebApiTests/AspNetWebApiTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApiTests/AspNetWebApiTests.csproj -------------------------------------------------------------------------------- /AspNetWebApiTests/NakedBodyAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApiTests/NakedBodyAttributeTests.cs -------------------------------------------------------------------------------- /AspNetWebApiTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApiTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AspNetWebApiTests/SimplePostVariableParameterBindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApiTests/SimplePostVariableParameterBindingTests.cs -------------------------------------------------------------------------------- /AspNetWebApiTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/AspNetWebApiTests/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickStrahl/AspNetWebApiArticle/HEAD/README.md --------------------------------------------------------------------------------