Esempio n. 1
0
        public Cdn.SelectorPseudoType PseudoType()
        {
            int raw_ret = cdn_selector_part_pseudo_type(Handle);

            Cdn.SelectorPseudoType ret = (Cdn.SelectorPseudoType)raw_ret;
            return(ret);
        }
Esempio n. 2
0
        public uint AppendPseudo(Cdn.SelectorPseudoType type, GLib.SList arguments)
        {
            uint raw_ret = cdn_selector_append_pseudo(Handle, (int)type, arguments == null ? IntPtr.Zero : arguments.Handle);
            uint ret     = raw_ret;

            return(ret);
        }
Esempio n. 3
0
 public void PushSelectorPseudo(Cdn.SelectorPseudoType type, GLib.SList arguments)
 {
     cdn_parser_context_push_selector_pseudo(Handle, (int)type, arguments == null ? IntPtr.Zero : arguments.Handle);
 }