Esempio n. 1
0
 private static Type GetRequestHandlerTypeFor(RequestMessageBase request)
 {
     // get a type reference to IRequestHandler<ThisSpecificRequestType>
     return(typeof(IMessageHandler <>).MakeGenericType(request.GetType()));
 }
Esempio n. 2
0
 private static Type GetRequestHandlerTypeFor(RequestMessageBase request)
 {
     // get a type reference to IRequestHandler<ThisSpecificRequestType>
     return typeof(IMessageHandler<>).MakeGenericType(request.GetType());
 }