libsbmlcs.XMLError.isFatal C# (CSharp) Method

isFatal() public method

public isFatal ( ) : bool
return bool
        public bool isFatal()
        {
            bool ret = libsbmlPINVOKE.XMLError_isFatal(swigCPtr);
            return ret;
        }

Usage Example

Esempio n. 1
0
 public void test_XMLError_create_C()
 {
     XMLError error = new  XMLError();
       assertTrue( error != null );
       assertTrue( error.isInfo() == false );
       assertTrue( error.isWarning() == false );
       assertTrue( error.isError() == false );
       assertTrue( error.isFatal() == true );
       error = null;
       error = new  XMLError(12345, "My message");
       assertTrue( (  "My message" != error.getMessage() ) == false );
       assertTrue( error.getErrorId() == 12345 );
       error = null;
 }
All Usage Examples Of libsbmlcs.XMLError::isFatal