mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-03 13:21:00 +00:00
Merge pull request #99 from Artoria2e5/patch-1
NSPropertyList.h: mention base64 encoding
This commit is contained in:
commit
c5402c028c
1 changed files with 12 additions and 8 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>
|
||||
|
@ -160,13 +164,13 @@ typedef NSUInteger NSPropertyListFormat;
|
|||
* }
|
||||
* </example>
|
||||
* In XML format, a dictionary is an element whose name is
|
||||
* <code>dictionary</code> and whose content consists of pairs of
|
||||
* strings and other <em>property list</em> objects.
|
||||
* <code>dict</code> and whose content consists of pairs of
|
||||
* string <code>key</code> and other <em>property list</em> objects.
|
||||
* <example>
|
||||
* <dictionary>
|
||||
* <string>key1</string>
|
||||
* <dict>
|
||||
* <key>key1</key>
|
||||
* <string>value1</string>
|
||||
* </dictionary>
|
||||
* </dict>
|
||||
* </example>
|
||||
* </desc>
|
||||
* <term>[NSNumber]</term>
|
||||
|
|
Loading…
Reference in a new issue