Class | LibXML::XML::Schema |
In: |
ext/libxml/libxml.c
|
Parent: | Object |
Create a new schema from the specified URI.
/* * call-seq: * XML::Schema.document(document) -> schema * * Create a new schema from the specified URI. */ VALUE ruby_xml_schema_init_from_document(VALUE class, VALUE document) {
Create a new schema using the specified string.
/* * call-seq: * XML::Schema.string("schema_data") -> "value" * * Create a new schema using the specified string. */ VALUE ruby_xml_schema_init_from_string(VALUE self, VALUE schema_str) {