You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CorePush/Apple/ApnSender.cs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,11 @@ public class ApnSender : IApnSender
38
38
privatereadonlyHttpClienthttp;
39
39
privatereadonlyIJsonSerializerserializer;
40
40
41
-
/// <param name="http">A <see cref="HttpClient"/> dedicated to this <see cref="ApnSender"/>. Do not use a shared <see cref="HttpClient"/> instance, since its instance-level state may be modified. However, its <see cref="HttpClientHandler" can be shared.</param>
41
+
/// <summary>
42
+
/// Creates a new Apple Push Notification sender with default JSON serialization.
/// <param name="http">A <see cref="HttpClient"/> dedicated to this <see cref="ApnSender"/>. Do not use a shared <see cref="HttpClient"/> instance, since its instance-level state may be modified. However, its <see cref="HttpClientHandler"/> can be shared.</param>
/// <summary>The device token is inactive for the specified topic. The <see cref="ApnsError.Timestamp"/> field contains the last valid timestamp.</summary>
45
107
publicconststringUnregistered="Unregistered";
108
+
109
+
/// <summary>The notification payload is too large (max 4096 bytes).</summary>
0 commit comments