using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IpcLibrary.Core { /// /// 方法调用请求 /// [Serializable] public class MethodCallRequest { public string ServiceName { get; set; } public string MethodName { get; set; } public Type[] ParameterTypes { get; set; } public object[] Parameters { get; set; } } }