mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 23:01:53 +03:00
00f97e41d6
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/01/14/windows-push-notification-server-side-helper-library.aspx http://create.msdn.com/en-us/education/catalog/article/pnhelp-wp7
27 lines
724 B
C#
27 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using System.IO;
|
|
using System.ServiceModel.Web;
|
|
|
|
namespace WindowsPhone.Recipes.Push.Server.Services
|
|
{
|
|
/// <summary>
|
|
/// Provides custom tile images.
|
|
/// </summary>
|
|
[ServiceContract]
|
|
public interface IImageService
|
|
{
|
|
/// <summary>
|
|
/// Get custom tile image.
|
|
/// </summary>
|
|
/// <param name="parameter">The tile image request parameter.</param>
|
|
/// <returns>Custom tile image stream.</returns>
|
|
[OperationContract, WebGet]
|
|
Stream GetTileImage(string parameter);
|
|
}
|
|
}
|