Example #1
0
 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));
 }
Example #2
0
 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)));
 }
Example #3
0
 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));
 }
Example #4
0
 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)));
 }