Exemplo n.º 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));
 }
Exemplo n.º 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)));
 }
Exemplo n.º 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));
 }
Exemplo n.º 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)));
 }