Method: LibXML::XML::InputCallbacks.register

Defined in:
ext/libxml/ruby_xml_input_cbg.c

.registerObject

Register a new set of I/O callback for handling parser input.



91
92
93
94
95
# File 'ext/libxml/ruby_xml_input_cbg.c', line 91

static VALUE input_callbacks_register_input_callbacks()
{
  xmlRegisterInputCallbacks(ic_match, ic_open, ic_read, ic_close);
  return (Qtrue);
}