You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
596 B
26 lines
596 B
Imports Xdr
|
|
|
|
Namespace Rpc.MessageProtocol
|
|
''' <summary>
|
|
''' message body
|
|
''' http://tools.ietf.org/html/rfc5531#section-9
|
|
''' </summary>
|
|
Public Class body
|
|
''' <summary>
|
|
''' message type
|
|
''' </summary>
|
|
<Switch>
|
|
Public mtype As msg_type
|
|
''' <summary>
|
|
''' call body
|
|
''' </summary>
|
|
<[Case](msg_type.CALL)>
|
|
Public cbody As call_body
|
|
''' <summary>
|
|
''' reply body
|
|
''' </summary>
|
|
<[Case](msg_type.REPLY)>
|
|
Public rbody As reply_body
|
|
End Class
|
|
End Namespace
|