¿Por qué no se guardan las etiquetas de Azure Notification Hub?

Estoy intentando enviar un mensaje al centro de notificaciones, pero mis etiquetas no se guardan.

Verifiqué Service Hub con Service Hub Explorer y las etiquetas están vacías:

Registro de dispositivo:

var hs = new HashSet<string>();
        hs.Add(tag);
        hs.Add(sys.ToString());
        switch (sys)
        {
            case SystemVendorEnum.Android:
                await Hub.CreateGcmNativeRegistrationAsync(pnsHandle, hs);
                break;
            case SystemVendorEnum.Ios:
                await Hub.CreateAppleNativeRegistrationAsync(pnsHandle, hs);
                break;
        }

Invocación del método de prueba que envía un mensaje al concentrador:

// param1: json payload, param2: tag
await Hub.SendGcmNativeNotificationAsync("{ \"data\": { \"methodId\":\"1\" }}", "ae65d2d5-103e-4023-a784-c5c8e2684db0");

¿Hay algo que me falta? No tengo etiquetas en el centro de notificaciones:

¿Es ese el caso?

Respuestas a la pregunta(1)

Su respuesta a la pregunta