Skip to content

Commit

Permalink
Merge pull request dotnet/corefx#18166 from AtsushiKan/x
Browse files Browse the repository at this point in the history
NS2.0 Finish XmlDictionaryWriter surface area.

Commit migrated from dotnet/corefx@17dcb31
  • Loading branch information
joshfree authored Apr 10, 2017
2 parents 0f1b83e + da9822e commit c051cd4
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ public static XmlDictionaryWriter CreateDictionaryWriter(XmlWriter writer)
return dictionaryWriter;
}

public override Task WriteBase64Async(byte[] buffer, int index, int count)
{
WriteBase64(buffer, index, count);
return Task.CompletedTask;
}

public void WriteStartElement(XmlDictionaryString localName, XmlDictionaryString namespaceUri)
{
WriteStartElement((string)null, localName, namespaceUri);
Expand Down

0 comments on commit c051cd4

Please sign in to comment.