|
|
@@ -125,9 +125,9 @@ namespace System.Xml.Serialization {
|
|
|
return new InvalidOperationException (message);
|
|
|
}
|
|
|
|
|
|
- protected static string FromByteArrayBase64 (byte[] value)
|
|
|
+ protected static byte[] FromByteArrayBase64 (byte[] value)
|
|
|
{
|
|
|
- return XmlCustomFormatter.FromByteArrayBase64 (value);
|
|
|
+ return value;
|
|
|
}
|
|
|
|
|
|
protected static string FromByteArrayHex (byte[] value)
|