WriteBase64() public method

public WriteBase64 ( byte buffer, int index, int count ) : void
buffer byte
index int
count int
return void
Esempio n. 1
0
 public override void WriteBase64(byte[] buffer, int index, int count)
 {
     EnsureWrappedWriter(XmlOutputMethod.Xml);
     _wrapped.WriteBase64(buffer, index, count);
 }