Explorar el Código

Add determines whether the subscriber parameter is an instance of the current type. #669

master
Savorboard hace 4 años
padre
commit
04a272a780
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. +8
    -1
      src/DotNetCore.CAP/Internal/ISubscribeInvoker.Default.cs

+ 8
- 1
src/DotNetCore.CAP/Internal/ISubscribeInvoker.Default.cs Ver fichero

@@ -73,7 +73,14 @@ namespace DotNetCore.CAP.Internal
}
else
{
executeParameters[i] = Convert.ChangeType(message.Value, parameterDescriptors[i].ParameterType);
if (parameterDescriptors[i].ParameterType.IsInstanceOfType(message.Value))
{
executeParameters[i] = message.Value;
}
else
{
executeParameters[i] = Convert.ChangeType(message.Value, parameterDescriptors[i].ParameterType);
}
}
}
}


Cargando…
Cancelar
Guardar