This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"action": "opened", | |
"issue": { | |
"url": "https://api.github.com/repos/octocat/Hello-World/issues/1347", | |
"number": 1347, | |
... | |
}, | |
"repository" : { | |
"id": 1296269, | |
"full_name": "octocat/Hello-World", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) .NET Foundation. All rights reserved. | |
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information | |
using System; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Data.Common; | |
using System.Data.Entity; | |
using System.Data.Entity.Core; | |
using System.Data.Entity.Infrastructure; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void Register(HttpConfiguration config) | |
{ | |
// Web API configuration and services | |
// Web API routes | |
config.MapHttpAttributeRoutes(); | |
config.Routes.MapHttpRoute( | |
name: "DefaultApi", | |
routeTemplate: "api/{controller}/{id}", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class WebApiConfig | |
{ | |
public static void Register() | |
{ | |
ConfigOptions options = new ConfigOptions(); | |
HttpConfiguration config = ServiceConfig.Initialize(new ConfigBuilder(options)); | |
// Workaround for notification hub connection string going missing. | |
IServiceSettingsProvider settingsProvider = config.DependencyResolver.GetServiceSettingsProvider(); | |
ServiceSettingsDictionary settings = settingsProvider.GetServiceSettings(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Web.Http; | |
using Autofac; | |
using Microsoft.WindowsAzure.Mobile.Service; | |
using Microsoft.WindowsAzure.Mobile.Service.Config; | |
using Owin; | |
namespace henrikntest09Service | |
{ | |
public static class WebApiConfig | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Web.Http.SelfHost; | |
namespace leveldb_sharp_sample | |
{ | |
public class WebHost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
namespace ResponseEntityProcessor.Handlers | |
{ | |
/// <summary> | |
/// Wraps an inner <see cref="HttpContent"/> and forces the content to be written |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Web.Http.Controllers; | |
using System.Web.Http.Filters; | |
namespace ActionFilter | |
{ | |
public class SampleFilter : ActionFilterAttribute | |
{ | |
public override void OnActionExecuting(HttpActionContext actionContext) | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Net.Http; | |
namespace CardStatus | |
{ | |
class Program | |
{ | |
static async void RunCheck(int antragsnummer) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace SelfHost.MessageHandlers | |
{ | |
/// <summary> | |
/// This sample HttpMessageHandler illustrates how to perform an async operation as part of the |
NewerOlder