Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- using System;
-
- namespace CI.WSANative.Notification
- {
- public class WSAPushNotificationChannel
- {
- public string Uri
- {
- get
- {
- return string.Empty;
- }
- }
-
- public DateTimeOffset ExpirationTime
- {
- get
- {
- return DateTimeOffset.MinValue;
- }
- }
-
- public void Close()
- {
- }
-
- public Action PushNotificationReceived;
- }
- }
|