Lines Matching refs:MethodInfo
83 internal static Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) =>
94 internal static Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method) =>
103 internal static Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) =>
112 internal static Action<IMessage> CreateActionIMessage(MethodInfo method) =>
115 internal static Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method) =>
138 Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method); in CreateFuncIMessageInt32()
139 Action<IMessage> CreateActionIMessage(MethodInfo method); in CreateActionIMessage()
140 Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method); in CreateFuncIMessageObject()
141 Action<IMessage, object> CreateActionIMessageObject(MethodInfo method); in CreateActionIMessageObject()
142 Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method); in CreateFuncIMessageBool()
156 public Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method) in CreateFuncIMessageInt32()
175 public Action<IMessage> CreateActionIMessage(MethodInfo method) in CreateActionIMessage()
181 public Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) in CreateFuncIMessageObject()
187 public Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) in CreateActionIMessageObject()
193 public Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method) in CreateFuncIMessageBool()
314 MethodInfo method = typeof(ReflectionUtil).GetMethod(nameof(SampleEnumMethod)); in CheckCanConvertEnumFuncToInt32Func()