Skip to content

A C# Property List (plist) serialization library [MIT]

Notifications You must be signed in to change notification settings

Athari/Alba.Plist

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alba.Plist

Description

This is a Mac OS X Property List (Plist) serialization library written in C#. It supports both XML and binary versions of the plist format.

plist C#
string string
integer short, int, long
real double
dictionary Dictionary<string, object>
array List
date DateTime
data List
boolean bool

Usage

See PlistCS/PlistCS/plistTests.cs for examples of reading and writing all types to both XML and binary. E.g. to read a plist from disk whose root node is a dictionary:

    Dictionary<string, object> dict = (Dictionary<string, object>)Plist.readPlist("testBin.plist");

The plist format (binary or XML) is automatically detected so call the same readPlist method for XML

    Dictionary<string, object> dict = (Dictionary<string, object>)Plist.readPlist("testXml.plist");

To write a plist, e.g. dictionary

    Dictionary<string, object> dict = new Dictionary<string, object>
    {
        { "String Example", "Hello There" },
        { "Integer Example", 1234 }
    };
    Plist.writeXml(dict, "xmlTarget.plist");

and for a binary plist

    Dictionary<string, object> dict = new Dictionary<string, object>
    {
        { "String Example", "Hello There" },
        { "Integer Example", 1234 }
    };
    Plist.writeBinary(dict, "xmlTarget.plist");

Other public methods allow reading and writing from streams and byte arrays.

License

MIT License

Copyright © 2011, Mark Tilton, Animetrics Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A C# Property List (plist) serialization library [MIT]

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%