32 строки
1.4 KiB
C#
32 строки
1.4 KiB
C#
// ----------------------------------------------------------------------------------
|
|
// Microsoft Developer & Platform Evangelism
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
|
// EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
|
|
// OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
// ----------------------------------------------------------------------------------
|
|
// The example companies, organizations, products, domain names,
|
|
// e-mail addresses, logos, people, places, and events depicted
|
|
// herein are fictitious. No association with any real company,
|
|
// organization, product, domain name, email address, logo, person,
|
|
// places, or events is intended or should be inferred.
|
|
// ----------------------------------------------------------------------------------
|
|
|
|
namespace Microsoft.WindowsAzure.Samples.CloudServices.Notifications
|
|
{
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
|
|
internal static class ConfigurationExtensions
|
|
{
|
|
internal static HttpConfiguration AddDelegatingHandlers(this HttpConfiguration config, params DelegatingHandler[] handlers)
|
|
{
|
|
handlers.ToList().ForEach(t => config.MessageHandlers.Add(t));
|
|
|
|
return config;
|
|
}
|
|
}
|
|
} |