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