Show / Hide Table of Contents

Class ISN_UIRegisterRemoteNotificationsResult

Objects that delivers result of application attempt to registered with Apple Push Notification service (APNs).

Inheritance
System.Object
ISN_UIRegisterRemoteNotificationsResult
Namespace: SA.iOS.UIKit
Assembly: cs.temp.dll.dll
Syntax
public class ISN_UIRegisterRemoteNotificationsResult : SA_Result

Properties

DeviceToken

A token that identifies the device to APNs. The token is an opaque data type because that is the form that the provider needs to submit to the APNs servers when it sends a notification to a device. The APNs servers require a binary format for performance reasons.

APNs device tokens are of variable length. Do not hard-code their size.

Note that the device token is different from the IdentifierForVendor property of ISN_UIDevice, for security and privacy reasons, it must change when the device is wiped.

Declaration
public byte[] DeviceToken { get; }
Property Value
Type Description
System.Byte[]

DeviceTokenUTF8

The UFT8 string representation of DeviceToken

Declaration
public string DeviceTokenUTF8 { get; }
Property Value
Type Description
System.String
In This Article
Back to top Generated by DocFX