當前位置: 首頁>>代碼示例>>C#>>正文


C# XMLNode.getNamespaceIndexByPrefix方法代碼示例

本文整理匯總了C#中libsbmlcs.XMLNode.getNamespaceIndexByPrefix方法的典型用法代碼示例。如果您正苦於以下問題:C# XMLNode.getNamespaceIndexByPrefix方法的具體用法?C# XMLNode.getNamespaceIndexByPrefix怎麽用?C# XMLNode.getNamespaceIndexByPrefix使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在libsbmlcs.XMLNode的用法示例。


在下文中一共展示了XMLNode.getNamespaceIndexByPrefix方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: test_XMLNode_namespace_get

 public void test_XMLNode_namespace_get()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLNode node = new XMLNode(triple,attr);
       node.addNamespace( "http://test1.org/", "test1");
       node.addNamespace( "http://test2.org/", "test2");
       node.addNamespace( "http://test3.org/", "test3");
       node.addNamespace( "http://test4.org/", "test4");
       node.addNamespace( "http://test5.org/", "test5");
       node.addNamespace( "http://test6.org/", "test6");
       node.addNamespace( "http://test7.org/", "test7");
       node.addNamespace( "http://test8.org/", "test8");
       node.addNamespace( "http://test9.org/", "test9");
       assertTrue( node.getNamespacesLength() == 9 );
       assertTrue( node.getNamespaceIndex( "http://test1.org/") == 0 );
       assertTrue( (  "test2" != node.getNamespacePrefix(1) ) == false );
       assertTrue( ( 		      "test1" != node.getNamespacePrefix( "http://test1.org/") ) == false );
       assertTrue( (  "http://test2.org/" != node.getNamespaceURI(1) ) == false );
       assertTrue( ( 		      "http://test2.org/" != node.getNamespaceURI( "test2") ) == false );
       assertTrue( node.getNamespaceIndex( "http://test1.org/") == 0 );
       assertTrue( node.getNamespaceIndex( "http://test2.org/") == 1 );
       assertTrue( node.getNamespaceIndex( "http://test5.org/") == 4 );
       assertTrue( node.getNamespaceIndex( "http://test9.org/") == 8 );
       assertTrue( node.getNamespaceIndex( "http://testX.org/") == -1 );
       assertTrue( node.hasNamespaceURI( "http://test1.org/") != false );
       assertTrue( node.hasNamespaceURI( "http://test2.org/") != false );
       assertTrue( node.hasNamespaceURI( "http://test5.org/") != false );
       assertTrue( node.hasNamespaceURI( "http://test9.org/") != false );
       assertTrue( node.hasNamespaceURI( "http://testX.org/") == false );
       assertTrue( node.getNamespaceIndexByPrefix( "test1") == 0 );
       assertTrue( node.getNamespaceIndexByPrefix( "test5") == 4 );
       assertTrue( node.getNamespaceIndexByPrefix( "test9") == 8 );
       assertTrue( node.getNamespaceIndexByPrefix( "testX") == -1 );
       assertTrue( node.hasNamespacePrefix( "test1") != false );
       assertTrue( node.hasNamespacePrefix( "test5") != false );
       assertTrue( node.hasNamespacePrefix( "test9") != false );
       assertTrue( node.hasNamespacePrefix( "testX") == false );
       assertTrue( node.hasNamespaceNS( "http://test1.org/", "test1") != false );
       assertTrue( node.hasNamespaceNS( "http://test5.org/", "test5") != false );
       assertTrue( node.hasNamespaceNS( "http://test9.org/", "test9") != false );
       assertTrue( node.hasNamespaceNS( "http://testX.org/", "testX") == false );
       node = null;
       triple = null;
       attr = null;
 }
開發者ID:alexholehouse,項目名稱:SBMLIntegrator,代碼行數:46,代碼來源:TestXMLNode.cs


注:本文中的libsbmlcs.XMLNode.getNamespaceIndexByPrefix方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。