├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe ├── NuGet.targets └── NuGet.xml ├── LICENSE ├── README.md ├── WebAPI2PostMan.Client ├── Properties │ └── AssemblyInfo.cs ├── WebAPI2PostMan.Client.csproj ├── WebAPI2PostManClient.cs ├── WebAPI2PostManStatic.cs ├── WebApiHelper.cs └── packages.config ├── WebAPI2PostMan.Common ├── Attributes │ ├── MinAttribute.cs │ └── ValidateModelAttribute.cs ├── Properties │ └── AssemblyInfo.cs ├── WebAPI2PostMan.Common.csproj └── packages.config ├── WebAPI2PostMan.Nuget ├── ApiDescriptionExtensions.cs ├── Controllers │ └── PostManController.cs ├── HelpPageConfigurationExtensions.cs ├── ModelDescriptions │ ├── CollectionModelDescription.cs │ ├── ComplexTypeModelDescription.cs │ ├── DictionaryModelDescription.cs │ ├── EnumTypeModelDescription.cs │ ├── EnumValueDescription.cs │ ├── IModelDocumentationProvider.cs │ ├── KeyValuePairModelDescription.cs │ ├── ModelDescription.cs │ ├── ModelDescriptionGenerator.cs │ ├── ModelNameAttribute.cs │ ├── ModelNameHelper.cs │ ├── ParameterAnnotation.cs │ ├── ParameterDescription.cs │ └── SimpleTypeModelDescription.cs ├── Models │ ├── HelpPageApiModel.cs │ └── PostManFuture.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleGeneration │ ├── HelpPageSampleGenerator.cs │ ├── HelpPageSampleKey.cs │ ├── InvalidSample.cs │ ├── ObjectGenerator.cs │ ├── SampleDirection.cs │ └── TextSample.cs ├── WebAPI2PostMan.Nuget.csproj └── packages.config ├── WebAPI2PostMan.Tests ├── App.config ├── Properties │ └── AssemblyInfo.cs ├── WebAPI2PostMan.Tests.csproj ├── WebAPI2PostManClientTest.cs └── packages.config ├── WebAPI2PostMan.WebModel ├── App_Data │ └── XmlDocument.xml ├── Product.cs ├── Properties │ └── AssemblyInfo.cs └── WebAPI2PostMan.WebModel.csproj ├── WebAPI2PostMan.sln └── WebAPI2PostMan ├── App_Data ├── WebAPI2PostMan.WebModel.XmlDocument.xml └── XmlDocument.xml ├── App_Start ├── BundleConfig.cs └── WebApiConfig.cs ├── Areas └── HelpPage │ ├── ApiDescriptionExtensions.cs │ ├── App_Start │ └── HelpPageConfig.cs │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ └── HelpController.cs │ ├── HelpPage.css │ ├── HelpPageAreaRegistration.cs │ ├── HelpPageConfigurationExtensions.cs │ ├── ModelDescriptions │ ├── CollectionModelDescription.cs │ ├── ComplexTypeModelDescription.cs │ ├── DictionaryModelDescription.cs │ ├── EnumTypeModelDescription.cs │ ├── EnumValueDescription.cs │ ├── IModelDocumentationProvider.cs │ ├── KeyValuePairModelDescription.cs │ ├── ModelDescription.cs │ ├── ModelDescriptionGenerator.cs │ ├── ModelNameAttribute.cs │ ├── ModelNameHelper.cs │ ├── ParameterAnnotation.cs │ ├── ParameterDescription.cs │ └── SimpleTypeModelDescription.cs │ ├── Models │ └── HelpPageApiModel.cs │ ├── MultiXmlDocumentationProvider.cs │ ├── SampleGeneration │ ├── HelpPageSampleGenerator.cs │ ├── HelpPageSampleKey.cs │ ├── ImageSample.cs │ ├── InvalidSample.cs │ ├── ObjectGenerator.cs │ ├── SampleDirection.cs │ └── TextSample.cs │ ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js │ ├── Views │ ├── Help │ │ ├── Api.cshtml │ │ ├── DisplayTemplates │ │ │ ├── ApiGroup.cshtml │ │ │ ├── CollectionModelDescription.cshtml │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ ├── HelpPageApiModel.cshtml │ │ │ ├── ImageSample.cshtml │ │ │ ├── InvalidSample.cshtml │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ ├── Parameters.cshtml │ │ │ ├── Samples.cshtml │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ └── TextSample.cshtml │ │ ├── Index.cshtml │ │ └── ResourceModel.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ └── XmlDocumentationProvider.cs ├── Controllers └── ProductController.cs ├── Global.asax ├── Global.asax.cs ├── Properties └── AssemblyInfo.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebAPI2PostManWebHost.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.nuget/NuGet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/.nuget/NuGet.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/README.md -------------------------------------------------------------------------------- /WebAPI2PostMan.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Client/WebAPI2PostMan.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Client/WebAPI2PostMan.Client.csproj -------------------------------------------------------------------------------- /WebAPI2PostMan.Client/WebAPI2PostManClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Client/WebAPI2PostManClient.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Client/WebAPI2PostManStatic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Client/WebAPI2PostManStatic.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Client/WebApiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Client/WebApiHelper.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Client/packages.config -------------------------------------------------------------------------------- /WebAPI2PostMan.Common/Attributes/MinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Common/Attributes/MinAttribute.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Common/Attributes/ValidateModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Common/Attributes/ValidateModelAttribute.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Common/WebAPI2PostMan.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Common/WebAPI2PostMan.Common.csproj -------------------------------------------------------------------------------- /WebAPI2PostMan.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Common/packages.config -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/Controllers/PostManController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/Controllers/PostManController.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/Models/PostManFuture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/Models/PostManFuture.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/WebAPI2PostMan.Nuget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/WebAPI2PostMan.Nuget.csproj -------------------------------------------------------------------------------- /WebAPI2PostMan.Nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Nuget/packages.config -------------------------------------------------------------------------------- /WebAPI2PostMan.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Tests/App.config -------------------------------------------------------------------------------- /WebAPI2PostMan.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Tests/WebAPI2PostMan.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Tests/WebAPI2PostMan.Tests.csproj -------------------------------------------------------------------------------- /WebAPI2PostMan.Tests/WebAPI2PostManClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Tests/WebAPI2PostManClientTest.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.Tests/packages.config -------------------------------------------------------------------------------- /WebAPI2PostMan.WebModel/App_Data/XmlDocument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.WebModel/App_Data/XmlDocument.xml -------------------------------------------------------------------------------- /WebAPI2PostMan.WebModel/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.WebModel/Product.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.WebModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.WebModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI2PostMan.WebModel/WebAPI2PostMan.WebModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.WebModel/WebAPI2PostMan.WebModel.csproj -------------------------------------------------------------------------------- /WebAPI2PostMan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan.sln -------------------------------------------------------------------------------- /WebAPI2PostMan/App_Data/WebAPI2PostMan.WebModel.XmlDocument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/App_Data/WebAPI2PostMan.WebModel.XmlDocument.xml -------------------------------------------------------------------------------- /WebAPI2PostMan/App_Data/XmlDocument.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/App_Data/XmlDocument.xml -------------------------------------------------------------------------------- /WebAPI2PostMan/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Content/Site.css -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Content/bootstrap.css -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/MultiXmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/MultiXmlDocumentationProvider.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/_references.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/respond.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Scripts/respond.min.js -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebAPI2PostMan/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Controllers/ProductController.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Global.asax -------------------------------------------------------------------------------- /WebAPI2PostMan/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Global.asax.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI2PostMan/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Web.Debug.config -------------------------------------------------------------------------------- /WebAPI2PostMan/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Web.Release.config -------------------------------------------------------------------------------- /WebAPI2PostMan/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/Web.config -------------------------------------------------------------------------------- /WebAPI2PostMan/WebAPI2PostManWebHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/WebAPI2PostManWebHost.csproj -------------------------------------------------------------------------------- /WebAPI2PostMan/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanghongjie/WebAPI2PostMan/HEAD/WebAPI2PostMan/packages.config --------------------------------------------------------------------------------