Sfoglia il codice sorgente

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

master
Savorboard 4 anni fa
parent
commit
04a272a780
1 ha cambiato i file con 8 aggiunte e 1 eliminazioni
  1. +8
    -1
      src/DotNetCore.CAP/Internal/ISubscribeInvoker.Default.cs

+ 8
- 1
src/DotNetCore.CAP/Internal/ISubscribeInvoker.Default.cs Vedi File

@@ -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);
}
}
}
}


Caricamento…
Annulla
Salva