/Passbook.Sample.Web/Services/WebServiceHandler.cs
https://github.com/Comezon/dotnet-passbook · C# · 16 lines · 14 code · 1 blank · 1 comment · 0 complexity · 5e5a475e3ec3a190690200ee669555b9 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Passbook.Sample.Web.Services
- {
- public class WebServiceHandler : IWebServiceHandler
- {
- public void RegisterPass(string version, string deviceLibraryIdentifier, string passTypeIdentifier, string serialNumber, string pushToken, string authorizationToken, out PassRegistrationResult result)
- {
- // Implement your custom handler here.
- result = PassRegistrationResult.SuccessfullyRegistered;
- }
- }
- }