Ejemplo n.º 1
0
        public XMLRPCCallWrapper FindMethod(string name)
        {
            SegFault();
            IntPtr ret = findmethod(instance, name);

            if (ret == IntPtr.Zero)
            {
                return(null);
            }
            return(XMLRPCCallWrapper.LookUp(ret));
        }
Ejemplo n.º 2
0
 public void RemoveMethod(XMLRPCCallWrapper method)
 {
     SegFault();
     removemethod(instance, method.instance);
 }
Ejemplo n.º 3
0
 public void AddMethod(XMLRPCCallWrapper method)
 {
     SegFault();
     addmethod(instance, method.instance);
 }
Ejemplo n.º 4
0
 public void RemoveMethod(XMLRPCCallWrapper method)
 {
     SegFault();
     removemethod(instance, method.instance);
 }
Ejemplo n.º 5
0
        public void AddMethod(XMLRPCCallWrapper method)
        {
            SegFault();

            addmethod(instance, method.instance);
        }