A BinaryPropertyListWriter is a helper class for writing out binary property list files.
It contains an output stream and various structures for keeping track of which NSObjects have already been serialized, and where they were put in the file.
See Also: Inherited members from object.
|
const
|
VERSION_00 | int (0). Binary property list version 0.0 |
|
const
|
VERSION_10 | int (10). Binary property list version 1.0 |
|
const
|
VERSION_15 | int (15). Binary property list version 1.5 |
|
const
|
VERSION_20 | int (20). Binary property list version 2.0 |
|
static
|
Write
(System.IO.FileInfo, NSObject)Writes a binary plist file with the given object as the root. |
|
|
static
|
Write
(System.IO.Stream, NSObject)Writes a binary plist serialization of the given object as the root. |
|
|
static
|
WriteToArray
(NSObject)Writes a binary plist serialization of the given object as the root into a byte array. |
|
Binary property list version 0.0Value: 0
Syntax
public const int VERSION_00Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: Claunia.PropertyList
Assembly: plist-cil (in plist-cil.dll)
Assembly Versions: 1.13.0.0, 1.14.0.0
Binary property list version 1.0Value: 10
Syntax
public const int VERSION_10Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: Claunia.PropertyList
Assembly: plist-cil (in plist-cil.dll)
Assembly Versions: 1.13.0.0, 1.14.0.0
Binary property list version 1.5Value: 15
Syntax
public const int VERSION_15Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: Claunia.PropertyList
Assembly: plist-cil (in plist-cil.dll)
Assembly Versions: 1.13.0.0, 1.14.0.0
Binary property list version 2.0Value: 20
Syntax
public const int VERSION_20Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: Claunia.PropertyList
Assembly: plist-cil (in plist-cil.dll)
Assembly Versions: 1.13.0.0, 1.14.0.0
Writes a binary plist file with the given object as the root.Syntax
Parameters
- file
- the file to write to
- root
- the source of the data to write to the file
Exceptions
Type Reason System.IO.IOException Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: Claunia.PropertyList
Assembly: plist-cil (in plist-cil.dll)
Assembly Versions: 1.13.0.0, 1.14.0.0
Writes a binary plist serialization of the given object as the root.Syntax
Parameters
- outStream
- the stream to write to
- root
- the source of the data to write to the stream
Exceptions
Type Reason System.IO.IOException Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: Claunia.PropertyList
Assembly: plist-cil (in plist-cil.dll)
Assembly Versions: 1.13.0.0, 1.14.0.0
Writes a binary plist serialization of the given object as the root into a byte array.Syntax
Parameters
- root
- The root object of the property list
Returns
The byte array containing the serialized property listExceptions
Type Reason System.IO.IOException Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: Claunia.PropertyList
Assembly: plist-cil (in plist-cil.dll)
Assembly Versions: 1.13.0.0, 1.14.0.0