Пример #1
0
 /// <summary>
 /// Increment iterator of a #PLIST_ARRAY node.
 /// </summary>
 /// <param name="node">
 /// The node of type #PLIST_ARRAY.
 /// </param>
 /// <param name="iter">
 /// Iterator of the array
 /// </param>
 /// <param name="item">
 /// Location to store the item. The caller must *not* free the
 /// returned item. Will be set to NULL when no more items are left
 /// to iterate.
 /// </param>
 public virtual void plist_array_next_item(PlistHandle node, PlistArrayIterHandle iter, out PlistHandle item)
 {
     PlistNativeMethods.plist_array_next_item(node, iter, out item);
     item.Api = this.Parent;
 }