You can get the type of the RegistrationDescription and filter through that.
To following example should give you an idea on how to do it.
var response = await hub.GetAllRegistrationsAsync(0);
response.ToList().ForEach(regDesc =>
{
if(regDesc.GetType() == typeof(FcmRegistrationDescription))
{
//do transform stuff for change to FcmV1RegistrationDescription and reregister
}
});