namespace ClientApp
{
[Service(Exported = false)]
class RegistrationIntentService : IntentService
{
static object locker = new object();
public RegistrationIntentService() : base("RegistrationIntentService") { }
In the snippet above, the constructor extends a base("RegistrationIntentService"), what is this doing? I found this example at: https://developer.xamarin.com/guides/cross-platform/application_fundamentals/notifications/android/remote_notifications_in_android/
Does it mean the contructor is the same as the RegistrationIntentService
constructor?