public virtual bool HasPayloadType(Type contextType)
        {
            if (contextType.IsInstanceOfType(this))
            {
                return(true);
            }

            return(_payloadCache.HasPayloadType(contextType));
        }
Beispiel #2
0
 public override bool HasPayloadType(Type contextType)
 {
     return(_payloadCache.HasPayloadType(contextType) || base.HasPayloadType(contextType));
 }
 public virtual bool HasPayloadType(Type contextType)
 {
     return(_payloadCache.HasPayloadType(contextType));
 }