Lines Matching refs:IMessage
70 internal static void ForceInitialize<T>() => new ReflectionHelper<IMessage, T>();
81 /// <param name="method">The method to create a delegate for, which must be declared in an IMessage
83 internal static Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) =>
92 /// <param name="method">The method to create a delegate for, which must be declared in an IMessage
94 internal static Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method) =>
101 /// <param name="method">The method to create a delegate for, which must be declared in an IMessage
103 internal static Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) =>
110 /// <param name="method">The method to create a delegate for, which must be declared in an IMessage
112 internal static Action<IMessage> CreateActionIMessage(MethodInfo method) =>
115 internal static Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method) =>
118 internal static Func<IMessage, bool> CreateIsInitializedCaller(Type msg) =>
141 Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method);
142 Action<IMessage> CreateActionIMessage(MethodInfo method);
143 Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method);
144 Action<IMessage, object> CreateActionIMessageObject(MethodInfo method);
145 Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method);
150 object GetExtension(IMessage message);
151 void SetExtension(IMessage message, object value);
152 bool HasExtension(IMessage message);
153 void ClearExtension(IMessage message);
158 Func<IMessage, bool> CreateIsInitializedCaller();
164 public Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method)
183 public Action<IMessage> CreateActionIMessage(MethodInfo method)
189 public Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method)
195 public Action<IMessage, object> CreateActionIMessageObject(MethodInfo method)
201 public Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method)
218 public object GetExtension(IMessage message)
241 public bool HasExtension(IMessage message)
264 public void SetExtension(IMessage message, object value)
287 public void ClearExtension(IMessage message)
313 public Func<IMessage, bool> CreateIsInitializedCaller()