 | RpcRemoteExceptionReadFrom Method |
Deserializes an exception.
Namespace: Ookii.Jumbo.RpcAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static Exception ReadFrom(
BinaryReader reader
)
Public Shared Function ReadFrom (
reader As BinaryReader
) As Exception
public:
static Exception^ ReadFrom(
BinaryReader^ reader
)
static member ReadFrom :
reader : BinaryReader -> Exception
Parameters
- reader BinaryReader
- The BinaryReader to read the exception from.
Return Value
Exception
The deserialized exception. In most cases, this will be a
RpcRemoteException
object, but for some supported exception types the original type is preserved.
See Also