libsbml.XMLTriple.getURI C# (CSharp) Method

getURI() public method

public getURI ( ) : string
return string
        public string getURI()
        {
            string ret = libsbmlPINVOKE.XMLTriple_getURI(swigCPtr);
            return ret;
        }

Usage Example

 public void test_Triple_clone()
 {
     XMLTriple t = new XMLTriple("sarah", "http://foo.org/", "bar");
       assertTrue( t.getName() ==  "sarah" );
       assertTrue( t.getURI() ==  "http://foo.org/" );
       assertTrue( t.getPrefix() ==  "bar" );
       XMLTriple t2 = (XMLTriple) t.clone();
       assertTrue( t2.getName() ==  "sarah" );
       assertTrue( t2.getURI() ==  "http://foo.org/" );
       assertTrue( t2.getPrefix() ==  "bar" );
       t = null;
       t2 = null;
 }
All Usage Examples Of libsbml.XMLTriple::getURI