Base64EncodeBytes writes v as a base64 value in XML string. It will auto close the parent xml element tag.
(v []byte)
| 166 | // Base64EncodeBytes writes v as a base64 value in XML string. |
| 167 | // It will auto close the parent xml element tag. |
| 168 | func (xv Value) Base64EncodeBytes(v []byte) { |
| 169 | encodeByteSlice(xv.w, (*xv.scratch)[:0], v) |
| 170 | xv.Close() |
| 171 | } |
| 172 | |
| 173 | // BigInteger encodes v big.Int as XML value. |
| 174 | // It will auto close the parent xml element tag. |