internal static ReplyException RpcVersionError(reply_body replyBody, mismatch_info info) { return new ReplyException(replyBody, string.Format("unsupported RPC version number (supported versions of between {0} and {1})", info.low, info.high)); }
internal static ReplyException ProgramMismatch(reply_body replyBody, mismatch_info info) { return(new ReplyException(replyBody, string.Format("remote can't support program version (supported versions of between {0} and {1})", info.low, info.high))); }
internal static ReplyException ProgramMismatch(reply_body replyBody, mismatch_info info) { return new ReplyException(replyBody, string.Format("remote can't support program version (supported versions of between {0} and {1})", info.low, info.high)); }
internal static ReplyException RpcVersionError(reply_body replyBody, mismatch_info info) { return(new ReplyException(replyBody, string.Format("unsupported RPC version number (supported versions of between {0} and {1})", info.low, info.high))); }