public void Delete([FromBody] PushSubscription subscription)
 {
     _pushSubscriptionsService.Delete(WebUtility.UrlDecode(subscription.Endpoint));
 }
예제 #2
0
 public void Delete(string endpoint)
 {
     _pushSubscriptionsService.Delete(endpoint);
 }
 public void Delete(string endpoint)
 {
     _pushSubscriptionsService.Delete(WebUtility.UrlDecode(endpoint));
 }