/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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace Passbook.Sample.Web.Services
  6. {
  7. public class WebServiceHandler : IWebServiceHandler
  8. {
  9. public void RegisterPass(string version, string deviceLibraryIdentifier, string passTypeIdentifier, string serialNumber, string pushToken, string authorizationToken, out PassRegistrationResult result)
  10. {
  11. // Implement your custom handler here.
  12. result = PassRegistrationResult.SuccessfullyRegistered;
  13. }
  14. }
  15. }