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


C# XMLNode.clearNamespaces方法代碼示例

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


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

示例1: test_XMLNode_clearNamespaces

 public void test_XMLNode_clearNamespaces()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLNode node = new XMLNode(triple,attr);
       XMLNamespaces nms;
       int i = node.addNamespace( "http://test1.org/", "test1");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       nms = node.getNamespaces();
       assertTrue( nms.getLength() == 1 );
       i = node.addNamespace( "http://test2.org/", "test2");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       nms = node.getNamespaces();
       assertTrue( nms.getLength() == 2 );
       i = node.clearNamespaces();
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       nms = node.getNamespaces();
       assertTrue( nms.getLength() == 0 );
       triple = null;
       attr = null;
       node = null;
 }
開發者ID:0u812,項目名稱:roadrunner-backup,代碼行數:22,代碼來源:TestXMLNode_newSetters.cs

示例2: test_XMLNode_namespace_set_clear

 public void test_XMLNode_namespace_set_clear()
 {
     XMLTriple triple = new  XMLTriple("test","","");
       XMLAttributes attr = new  XMLAttributes();
       XMLNode node = new XMLNode(triple,attr);
       XMLNamespaces ns = new  XMLNamespaces();
       assertTrue( node.getNamespacesLength() == 0 );
       assertTrue( node.isNamespacesEmpty() == true );
       ns.add( "http://test1.org/", "test1");
       ns.add( "http://test2.org/", "test2");
       ns.add( "http://test3.org/", "test3");
       ns.add( "http://test4.org/", "test4");
       ns.add( "http://test5.org/", "test5");
       node.setNamespaces(ns);
       assertTrue( node.getNamespacesLength() == 5 );
       assertTrue( node.isNamespacesEmpty() == false );
       assertTrue( (  "test1" != node.getNamespacePrefix(0) ) == false );
       assertTrue( (  "test2" != node.getNamespacePrefix(1) ) == false );
       assertTrue( (  "test3" != node.getNamespacePrefix(2) ) == false );
       assertTrue( (  "test4" != node.getNamespacePrefix(3) ) == false );
       assertTrue( (  "test5" != node.getNamespacePrefix(4) ) == false );
       assertTrue( (  "http://test1.org/" != node.getNamespaceURI(0) ) == false );
       assertTrue( (  "http://test2.org/" != node.getNamespaceURI(1) ) == false );
       assertTrue( (  "http://test3.org/" != node.getNamespaceURI(2) ) == false );
       assertTrue( (  "http://test4.org/" != node.getNamespaceURI(3) ) == false );
       assertTrue( (  "http://test5.org/" != node.getNamespaceURI(4) ) == false );
       node.clearNamespaces();
       assertTrue( node.getNamespacesLength() == 0 );
       assertTrue( node.isAttributesEmpty() != false );
       ns = null;
       node = null;
       triple = null;
       attr = null;
 }
開發者ID:alexholehouse,項目名稱:SBMLIntegrator,代碼行數:34,代碼來源:TestXMLNode.cs


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