示例#1
0
        /// <summary>
        /// Get key node associated to an item. Item must be member of a dictionary.
        /// </summary>
        /// <param name="node">
        /// the item
        /// </param>
        /// <returns>
        /// the key node of the given item, or NULL.
        /// </returns>
        public virtual PlistHandle plist_dict_item_get_key(PlistHandle node)
        {
            PlistHandle returnValue;

            returnValue     = PlistNativeMethods.plist_dict_item_get_key(node);
            returnValue.Api = this.Parent;
            return(returnValue);
        }