Skip to content

Commit

Permalink
Fix XML Serializer Missing Parameter (#4729)
Browse files Browse the repository at this point in the history
  • Loading branch information
afifi-ins authored Oct 15, 2021
1 parent d06c8bc commit 2dfeab9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ private void SerializeBody(XmlDictionaryWriter writer, MessageVersion version, X
}

string encoding = _isEncoded ? GetEncoding(version.Envelope) : null;
serializer.Serialize(writer, bodyParameters, null);
serializer.Serialize(writer, bodyParameters, null, encoding);
}


Expand Down

0 comments on commit 2dfeab9

Please sign in to comment.