当前位置: 首页>>代码示例>>C#>>正文


C# XMLNode.getNamespaces方法代码示例

本文整理汇总了C#中libsbmlcs.XMLNode.getNamespaces方法的典型用法代码示例。如果您正苦于以下问题:C# XMLNode.getNamespaces方法的具体用法?C# XMLNode.getNamespaces怎么用?C# XMLNode.getNamespaces使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在libsbmlcs.XMLNode的用法示例。


在下文中一共展示了XMLNode.getNamespaces方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: test_XMLNode_removeNamespaces

 public void test_XMLNode_removeNamespaces()
 {
     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.removeNamespace(7);
       assertTrue( i == libsbml.LIBSBML_INDEX_EXCEEDS_SIZE );
       nms = node.getNamespaces();
       assertTrue( nms.getLength() == 2 );
       i = node.removeNamespace( "name7");
       assertTrue( i == libsbml.LIBSBML_INDEX_EXCEEDS_SIZE );
       nms = node.getNamespaces();
       assertTrue( nms.getLength() == 2 );
       i = node.removeNamespace(0);
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       nms = node.getNamespaces();
       assertTrue( nms.getLength() == 1 );
       i = node.removeNamespace( "test2");
       assertTrue( i == libsbml.LIBSBML_OPERATION_SUCCESS );
       nms = node.getNamespaces();
       assertTrue( nms.getLength() == 0 );
       triple = null;
       attr = null;
       node = null;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:34,代码来源:TestXMLNode_newSetters.cs

示例2: test_XMLNode_getters

 public void test_XMLNode_getters()
 {
     XMLToken token;
       XMLNode node;
       XMLTriple triple;
       XMLAttributes attr;
       XMLNamespaces NS;
       NS = new  XMLNamespaces();
       NS.add( "http://test1.org/", "test1");
       token = new  XMLToken("This is a test");
       node = new XMLNode(token);
       assertTrue( node != null );
       assertTrue( node.getNumChildren() == 0 );
       assertTrue( (  "This is a test" != node.getCharacters() ) == false );
       assertTrue( node.getChild(1) != null );
       attr = new  XMLAttributes();
       assertTrue( attr != null );
       attr.add( "attr2", "value");
       triple = new  XMLTriple("attr", "uri", "prefix");
       token = new  XMLToken(triple,attr);
       assertTrue( token != null );
       node = new XMLNode(token);
       assertTrue( (  "attr" != node.getName() ) == false );
       assertTrue( (  "uri" != node.getURI() ) == false );
       assertTrue( (  "prefix" != node.getPrefix() ) == false );
       XMLAttributes returnattr = node.getAttributes();
       assertTrue( (  "attr2" != returnattr.getName(0) ) == false );
       assertTrue( (  "value" != returnattr.getValue(0) ) == false );
       token = new  XMLToken(triple,attr,NS);
       node = new XMLNode(token);
       XMLNamespaces returnNS = node.getNamespaces();
       assertTrue( returnNS.getLength() == 1 );
       assertTrue( returnNS.isEmpty() == false );
       triple = null;
       token = null;
       node = null;
 }
开发者ID:alexholehouse,项目名称:SBMLIntegrator,代码行数:37,代码来源:TestXMLNode.cs


注:本文中的libsbmlcs.XMLNode.getNamespaces方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。