Ejemplo n.º 1
0
 /// <summary>
 /// Helper function to check the value of a PLIST_BOOL node.
 /// </summary>
 /// <param name="boolnode">
 /// node of type PLIST_BOOL
 /// </param>
 /// <returns>
 /// 1 if the boolean node has a value of TRUE, 0 if FALSE,
 /// or -1 if the node is not of type PLIST_BOOL
 /// </returns>
 public virtual int plist_bool_val_is_true(PlistHandle boolnode)
 {
     return(PlistNativeMethods.plist_bool_val_is_true(boolnode));
 }