C# Class KNFoundation.KNPropertyListSerialization

ファイルを表示 Open project: iKenndac/KNFoundation

Public Methods

Method Description
DataWithPropertyList ( object>.Dictionary plist ) : byte[]
PropertyListWithData ( byte data ) : object>.Dictionary

Gets the property list from the given XML data. This implementation of KNPropertyListSerialization requires that the base property list is a Dictionary.

Private Methods

Method Description
ArrayFromArrayElement ( XmlNode arrayNode ) : ArrayList
DataFromDataElement ( XmlNode dataNode ) : byte[]
DateTimeFromDateElement ( XmlNode dateNode ) : System.DateTime
DictionaryFromDictElement ( XmlNode dictNode ) : object>.Dictionary
DoubleFromRealElement ( XmlNode realNode ) : double
IntegerFromIntegerElement ( XmlNode intNode ) : int
StringFromStringElement ( XmlNode stringNode ) : string

Method Details

DataWithPropertyList() public static method

public static DataWithPropertyList ( object>.Dictionary plist ) : byte[]
plist object>.Dictionary
return byte[]

PropertyListWithData() public static method

Gets the property list from the given XML data. This implementation of KNPropertyListSerialization requires that the base property list is a Dictionary.
public static PropertyListWithData ( byte data ) : object>.Dictionary
data byte The plist XML data.
return object>.Dictionary