/// <summary>
 /// Finds the association property value by looking up the association property name in the event message's
 /// {@link org.axonframework.messaging.MetaData}.
 /// </summary>
 public object Resolve <T>(string associationPropertyName, IEventMessage <object> message, IMessageHandlingMember <T> handler)
 {
     return(message.GetMetaData()[associationPropertyName]);
 }