//------------------------------------------------------------------------------ // 此代码版权(除特别声明或在XREF结尾的命名空间的代码)归作者本人若汝棋茗所有 // 源代码使用协议遵循本仓库的开源协议及附加协议,若本仓库没有设置,则按MIT开源协议授权 // CSDN博客:https://blog.csdn.net/qq_40374647 // 哔哩哔哩视频:https://space.bilibili.com/94253567 // Gitee源代码仓库:https://gitee.com/RRQM_Home // Github源代码仓库:https://github.com/RRQM // API首页:https://touchsocket.net/ // 交流QQ群:234762506 // 感谢您的下载和使用 //------------------------------------------------------------------------------ using System; using System.Reflection; using TouchSocket.Core; namespace TouchSocket.Rpc { /// /// Rpc参数 /// public class RpcParameter { /// /// Rpc参数 /// public RpcParameter(ParameterInfo parameterInfo) { this.ParameterInfo = parameterInfo; this.Type = parameterInfo.ParameterType.GetRefOutType(); this.IsCallContext = typeof(ICallContext).IsAssignableFrom(this.Type); this.IsFromServices = parameterInfo.IsDefined(typeof(FromServicesAttribute)); } /// /// 参数信息 /// public ParameterInfo ParameterInfo { get; } /// /// 参数名称 /// public string Name => this.ParameterInfo.Name; /// /// 参数类型,已处理out或者ref /// public Type Type { get; private set; } /// /// 是否为调用上下文 /// public bool IsCallContext { get; private set; } /// /// 标识参数是否应该来自于服务 /// public bool IsFromServices { get; private set; } /// /// 包含Out或者Ref /// public bool IsByRef => this.ParameterInfo.ParameterType.IsByRef; } }