Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -853,11 +853,11 @@ protected byte[] ToByteArrayBase64 (bool isNull)
{
readCount++;
if (isNull) {
Reader.ReadString ();
Reader.ReadElementString ();
return null;
}
else
return ToByteArrayBase64 (Reader.ReadString ());
return ToByteArrayBase64 (Reader.ReadElementString ());
}

protected static byte[] ToByteArrayBase64 (string value)
Expand All @@ -869,11 +869,11 @@ protected byte[] ToByteArrayHex (bool isNull)
{
readCount++;
if (isNull) {
Reader.ReadString ();
Reader.ReadElementString ();
return null;
}
else
return ToByteArrayHex (Reader.ReadString ());
return ToByteArrayHex (Reader.ReadElementString ());
}

protected static byte[] ToByteArrayHex (string value)
Expand Down