19 lines
471 B
C#
19 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IpcLibrary.Core {
|
|
/// <summary>
|
|
/// 方法调用请求
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MethodCallRequest {
|
|
public string ServiceName { get; set; }
|
|
public string MethodName { get; set; }
|
|
public Type[] ParameterTypes { get; set; }
|
|
public object[] Parameters { get; set; }
|
|
}
|
|
}
|