/// <summary> /// Variadic version of #plist_access_path. /// </summary> /// <param name="plist"> /// the node to access result from. /// </param> /// <param name="length"> /// length of the path to access /// </param> /// <param name="v"> /// list of array's index and dic'st key /// </param> /// <returns> /// the value to access. /// </returns> public virtual PlistHandle plist_access_pathv(PlistHandle plist, uint length, System.IntPtr v) { PlistHandle returnValue; returnValue = PlistNativeMethods.plist_access_pathv(plist, length, v); returnValue.Api = this.Parent; return(returnValue); }