namespace ClientApp
{
[Service(Exported = false)]
class RegistrationIntentService : IntentService
{
static object locker = new object();
public RegistrationIntentService() : base("RegistrationIntentService") { }
В приведенном выше фрагменте конструктор расширяет базу ("RegistrationIntentService"), что он делает? Я нашел этот пример по адресу: https://developer.xamarin.com/guides/cross-platform/application_fundamentals/notifications/android/remote_notifications_in_android/
Означает ли это, что конструктор такой же, как конструктор RegistrationIntentService
?