mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-06 06:30:46 +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>
|
* </desc>
|
||||||
* <term>[NSData]</term>
|
* <term>[NSData]</term>
|
||||||
* <desc>
|
* <desc>
|
||||||
* An array is represented as a series of pairs of hexadecimal characters
|
* A data object is represented as a series of pairs of hexadecimal
|
||||||
* (each pair representing a byte of data) enclosed in angle brackets.
|
* characters (each pair representing a byte of data) enclosed in angle
|
||||||
* Spaces are ignored).
|
* brackets. (Spaces are ignored).
|
||||||
* <example>
|
* <example>
|
||||||
* < 54637374 696D67 >
|
* < 54637374 696D67 >
|
||||||
* </example>
|
* </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
|
* 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.
|
* <code>data</code> and whose content is a stream of base64 encoded bytes.
|
||||||
* </desc>
|
* </desc>
|
||||||
|
@ -160,13 +164,13 @@ typedef NSUInteger NSPropertyListFormat;
|
||||||
* }
|
* }
|
||||||
* </example>
|
* </example>
|
||||||
* In XML format, a dictionary is an element whose name is
|
* In XML format, a dictionary is an element whose name is
|
||||||
* <code>dictionary</code> and whose content consists of pairs of
|
* <code>dict</code> and whose content consists of pairs of
|
||||||
* strings and other <em>property list</em> objects.
|
* string <code>key</code> and other <em>property list</em> objects.
|
||||||
* <example>
|
* <example>
|
||||||
* <dictionary>
|
* <dict>
|
||||||
* <string>key1</string>
|
* <key>key1</key>
|
||||||
* <string>value1</string>
|
* <string>value1</string>
|
||||||
* </dictionary>
|
* </dict>
|
||||||
* </example>
|
* </example>
|
||||||
* </desc>
|
* </desc>
|
||||||
* <term>[NSNumber]</term>
|
* <term>[NSNumber]</term>
|
||||||
|
|
Loading…
Reference in a new issue