/// <summary>
 /// Registers your preferred options for notifying the user.
 /// </summary>
 /// <description>
 /// If your app displays alerts, play sounds, or badges its icon, you must call this method soon after the app launch to request permission to alert the user in these ways.
 /// </description>
 /// <param name="_notificationTypes">The notification types that your app uses to alert user.</param>
 /// <remarks>
 /// \note It is recommended that you call this method before you schedule any local notifications or register with the push notification service.
 /// Multiple types can be combined together using the <c>|</c> operator.
 /// </remarks>
 public void RegisterNotificationTypes(NotificationType _notificationTypes)
 {
     m_platform.RegisterNotificationTypes(_notificationTypes);
 }