using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IpcLibrary.Core { // /// 方法调用响应 /// [Serializable] public class MethodCallResponse { public object Result { get; set; } public Exception Exception { get; set; } public bool IsSuccess => Exception == null; public Type ResultType { get; set; } } }