SerializationExceptionsNewTypeCannotDeserialize Method (Type, String, Exception) |
This is intended to MsgPack for CLI internal use. Do not use this type from application directly.
Returns new exception to notify that value type cannot deserialize.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static Exception NewTypeCannotDeserialize(
Type type,
string memberName,
Exception inner
)
Public Shared Function NewTypeCannotDeserialize (
type As Type,
memberName As String,
inner As Exception
) As Exception
public:
static Exception^ NewTypeCannotDeserialize(
Type^ type,
String^ memberName,
Exception^ inner
)
static member NewTypeCannotDeserialize :
type : Type *
memberName : string *
inner : Exception -> Exception
Parameters
- type
- Type: SystemType
The target type. - memberName
- Type: SystemString
The name of deserializing member. - inner
- Type: SystemException
The inner exception.
Return Value
Type:
ExceptionException instance. It will not be
null.
See Also