Exemple #1
0
 /// <summary>
 /// Create an iterator of a #PLIST_DICT node.
 /// The allocated iterator should be freed with the standard free function.
 /// </summary>
 /// <param name="node">
 /// The node of type #PLIST_DICT.
 /// </param>
 /// <param name="iter">
 /// Location to store the iterator for the dictionary.
 /// </param>
 public virtual void plist_dict_new_iter(PlistHandle node, out PlistDictIterHandle iter)
 {
     PlistNativeMethods.plist_dict_new_iter(node, out iter);
     iter.Api = this.Parent;
 }