mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
NSPropertyList.h: mention base64 encoding
Base64 parsing is supported since3f2fa9ddfe
and it is the default since9aa5d4cd04
. We should definitely document that.
This commit is contained in:
parent
c8cfcec652
commit
c2d44f800a
1 changed files with 7 additions and 3 deletions
|
@ -117,12 +117,16 @@ typedef NSUInteger NSPropertyListFormat;
|
|||
* </desc>
|
||||
* <term>[NSData]</term>
|
||||
* <desc>
|
||||
* An array is represented as a series of pairs of hexadecimal characters
|
||||
* (each pair representing a byte of data) enclosed in angle brackets.
|
||||
* Spaces are ignored).
|
||||
* A data object is represented as a series of pairs of hexadecimal
|
||||
* characters (each pair representing a byte of data) enclosed in angle
|
||||
* brackets. (Spaces are ignored).
|
||||
* <example>
|
||||
* < 54637374 696D67 >
|
||||
* </example>
|
||||
* Base64 can be used since Base 1.24.9:
|
||||
* <example>
|
||||
* <[VGNzdGltZw==]>
|
||||
* </example>
|
||||
* In XML format, a data object is an element whose name is
|
||||
* <code>data</code> and whose content is a stream of base64 encoded bytes.
|
||||
* </desc>
|
||||
|
|
Loading…
Reference in a new issue