1 using System;
2 using System.Runtime.InteropServices;
3 
4 //------------------------------------------------------------------------------
5 // <auto-generated />
6 //
7 // This file was automatically generated by SWIG (http://www.swig.org).
8 // Version 4.0.2
9 //
10 // Do not make changes to this file unless you know what you are doing--modify
11 // the SWIG interface file instead.
12 //------------------------------------------------------------------------------
13 
14 namespace libsbmlcs {
15 
16 class libsbmlPINVOKE {
17 
18   protected class SWIGExceptionHelper {
19 
ExceptionDelegate(string message)20     public delegate void ExceptionDelegate(string message);
ExceptionArgumentDelegate(string message, string paramName)21     public delegate void ExceptionArgumentDelegate(string message, string paramName);
22 
23     static ExceptionDelegate applicationDelegate = new ExceptionDelegate(SetPendingApplicationException);
24     static ExceptionDelegate arithmeticDelegate = new ExceptionDelegate(SetPendingArithmeticException);
25     static ExceptionDelegate divideByZeroDelegate = new ExceptionDelegate(SetPendingDivideByZeroException);
26     static ExceptionDelegate indexOutOfRangeDelegate = new ExceptionDelegate(SetPendingIndexOutOfRangeException);
27     static ExceptionDelegate invalidCastDelegate = new ExceptionDelegate(SetPendingInvalidCastException);
28     static ExceptionDelegate invalidOperationDelegate = new ExceptionDelegate(SetPendingInvalidOperationException);
29     static ExceptionDelegate ioDelegate = new ExceptionDelegate(SetPendingIOException);
30     static ExceptionDelegate nullReferenceDelegate = new ExceptionDelegate(SetPendingNullReferenceException);
31     static ExceptionDelegate outOfMemoryDelegate = new ExceptionDelegate(SetPendingOutOfMemoryException);
32     static ExceptionDelegate overflowDelegate = new ExceptionDelegate(SetPendingOverflowException);
33     static ExceptionDelegate systemDelegate = new ExceptionDelegate(SetPendingSystemException);
34 
35     static ExceptionArgumentDelegate argumentDelegate = new ExceptionArgumentDelegate(SetPendingArgumentException);
36     static ExceptionArgumentDelegate argumentNullDelegate = new ExceptionArgumentDelegate(SetPendingArgumentNullException);
37     static ExceptionArgumentDelegate argumentOutOfRangeDelegate = new ExceptionArgumentDelegate(SetPendingArgumentOutOfRangeException);
38 
39     [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="SWIGRegisterExceptionCallbacks_libsbml")]
SWIGRegisterExceptionCallbacks_libsbml( ExceptionDelegate applicationDelegate, ExceptionDelegate arithmeticDelegate, ExceptionDelegate divideByZeroDelegate, ExceptionDelegate indexOutOfRangeDelegate, ExceptionDelegate invalidCastDelegate, ExceptionDelegate invalidOperationDelegate, ExceptionDelegate ioDelegate, ExceptionDelegate nullReferenceDelegate, ExceptionDelegate outOfMemoryDelegate, ExceptionDelegate overflowDelegate, ExceptionDelegate systemExceptionDelegate)40     public static extern void SWIGRegisterExceptionCallbacks_libsbml(
41                                 ExceptionDelegate applicationDelegate,
42                                 ExceptionDelegate arithmeticDelegate,
43                                 ExceptionDelegate divideByZeroDelegate,
44                                 ExceptionDelegate indexOutOfRangeDelegate,
45                                 ExceptionDelegate invalidCastDelegate,
46                                 ExceptionDelegate invalidOperationDelegate,
47                                 ExceptionDelegate ioDelegate,
48                                 ExceptionDelegate nullReferenceDelegate,
49                                 ExceptionDelegate outOfMemoryDelegate,
50                                 ExceptionDelegate overflowDelegate,
51                                 ExceptionDelegate systemExceptionDelegate);
52 
53     [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="SWIGRegisterExceptionArgumentCallbacks_libsbml")]
SWIGRegisterExceptionCallbacksArgument_libsbml( ExceptionArgumentDelegate argumentDelegate, ExceptionArgumentDelegate argumentNullDelegate, ExceptionArgumentDelegate argumentOutOfRangeDelegate)54     public static extern void SWIGRegisterExceptionCallbacksArgument_libsbml(
55                                 ExceptionArgumentDelegate argumentDelegate,
56                                 ExceptionArgumentDelegate argumentNullDelegate,
57                                 ExceptionArgumentDelegate argumentOutOfRangeDelegate);
58 
SetPendingApplicationException(string message)59     static void SetPendingApplicationException(string message) {
60       SWIGPendingException.Set(new global::System.ApplicationException(message, SWIGPendingException.Retrieve()));
61     }
SetPendingArithmeticException(string message)62     static void SetPendingArithmeticException(string message) {
63       SWIGPendingException.Set(new global::System.ArithmeticException(message, SWIGPendingException.Retrieve()));
64     }
SetPendingDivideByZeroException(string message)65     static void SetPendingDivideByZeroException(string message) {
66       SWIGPendingException.Set(new global::System.DivideByZeroException(message, SWIGPendingException.Retrieve()));
67     }
SetPendingIndexOutOfRangeException(string message)68     static void SetPendingIndexOutOfRangeException(string message) {
69       SWIGPendingException.Set(new global::System.IndexOutOfRangeException(message, SWIGPendingException.Retrieve()));
70     }
SetPendingInvalidCastException(string message)71     static void SetPendingInvalidCastException(string message) {
72       SWIGPendingException.Set(new global::System.InvalidCastException(message, SWIGPendingException.Retrieve()));
73     }
SetPendingInvalidOperationException(string message)74     static void SetPendingInvalidOperationException(string message) {
75       SWIGPendingException.Set(new global::System.InvalidOperationException(message, SWIGPendingException.Retrieve()));
76     }
SetPendingIOException(string message)77     static void SetPendingIOException(string message) {
78       SWIGPendingException.Set(new global::System.IO.IOException(message, SWIGPendingException.Retrieve()));
79     }
SetPendingNullReferenceException(string message)80     static void SetPendingNullReferenceException(string message) {
81       SWIGPendingException.Set(new global::System.NullReferenceException(message, SWIGPendingException.Retrieve()));
82     }
SetPendingOutOfMemoryException(string message)83     static void SetPendingOutOfMemoryException(string message) {
84       SWIGPendingException.Set(new global::System.OutOfMemoryException(message, SWIGPendingException.Retrieve()));
85     }
SetPendingOverflowException(string message)86     static void SetPendingOverflowException(string message) {
87       SWIGPendingException.Set(new global::System.OverflowException(message, SWIGPendingException.Retrieve()));
88     }
SetPendingSystemException(string message)89     static void SetPendingSystemException(string message) {
90       SWIGPendingException.Set(new global::System.SystemException(message, SWIGPendingException.Retrieve()));
91     }
92 
SetPendingArgumentException(string message, string paramName)93     static void SetPendingArgumentException(string message, string paramName) {
94       SWIGPendingException.Set(new global::System.ArgumentException(message, paramName, SWIGPendingException.Retrieve()));
95     }
SetPendingArgumentNullException(string message, string paramName)96     static void SetPendingArgumentNullException(string message, string paramName) {
97       global::System.Exception e = SWIGPendingException.Retrieve();
98       if (e != null) message = message + " Inner Exception: " + e.Message;
99       SWIGPendingException.Set(new global::System.ArgumentNullException(paramName, message));
100     }
SetPendingArgumentOutOfRangeException(string message, string paramName)101     static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
102       global::System.Exception e = SWIGPendingException.Retrieve();
103       if (e != null) message = message + " Inner Exception: " + e.Message;
104       SWIGPendingException.Set(new global::System.ArgumentOutOfRangeException(paramName, message));
105     }
106 
SWIGExceptionHelper()107     static SWIGExceptionHelper() {
108       SWIGRegisterExceptionCallbacks_libsbml(
109                                 applicationDelegate,
110                                 arithmeticDelegate,
111                                 divideByZeroDelegate,
112                                 indexOutOfRangeDelegate,
113                                 invalidCastDelegate,
114                                 invalidOperationDelegate,
115                                 ioDelegate,
116                                 nullReferenceDelegate,
117                                 outOfMemoryDelegate,
118                                 overflowDelegate,
119                                 systemDelegate);
120 
121       SWIGRegisterExceptionCallbacksArgument_libsbml(
122                                 argumentDelegate,
123                                 argumentNullDelegate,
124                                 argumentOutOfRangeDelegate);
125     }
126   }
127 
128   protected static SWIGExceptionHelper swigExceptionHelper = new SWIGExceptionHelper();
129 
130   public class SWIGPendingException {
131     [global::System.ThreadStatic]
132     private static global::System.Exception pendingException = null;
133     private static int numExceptionsPending = 0;
134     private static global::System.Object exceptionsLock = null;
135 
136     public static bool Pending {
137       get {
138         bool pending = false;
139         if (numExceptionsPending > 0)
140           if (pendingException != null)
141             pending = true;
142         return pending;
143       }
144     }
145 
Set(global::System.Exception e)146     public static void Set(global::System.Exception e) {
147       if (pendingException != null)
148         throw new global::System.ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
149       pendingException = e;
150       lock(exceptionsLock) {
151         numExceptionsPending++;
152       }
153     }
154 
Retrieve()155     public static global::System.Exception Retrieve() {
156       global::System.Exception e = null;
157       if (numExceptionsPending > 0) {
158         if (pendingException != null) {
159           e = pendingException;
160           pendingException = null;
161           lock(exceptionsLock) {
162             numExceptionsPending--;
163           }
164         }
165       }
166       return e;
167     }
168 
SWIGPendingException()169     static SWIGPendingException() {
170       exceptionsLock = new global::System.Object();
171     }
172   }
173 
174 
175   protected class SWIGStringHelper {
176 
SWIGStringDelegate(string message)177     public delegate string SWIGStringDelegate(string message);
178     static SWIGStringDelegate stringDelegate = new SWIGStringDelegate(CreateString);
179 
180     [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="SWIGRegisterStringCallback_libsbml")]
SWIGRegisterStringCallback_libsbml(SWIGStringDelegate stringDelegate)181     public static extern void SWIGRegisterStringCallback_libsbml(SWIGStringDelegate stringDelegate);
182 
CreateString(string cString)183     static string CreateString(string cString) {
184       return cString;
185     }
186 
SWIGStringHelper()187     static SWIGStringHelper() {
188       SWIGRegisterStringCallback_libsbml(stringDelegate);
189     }
190   }
191 
192   static protected SWIGStringHelper swigStringHelper = new SWIGStringHelper();
193 
194 
libsbmlPINVOKE()195   static libsbmlPINVOKE() {
196   }
197 
198 
199   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModelCreatorList")]
new_ModelCreatorList()200   public static extern global::System.IntPtr new_ModelCreatorList();
201 
202   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ModelCreatorList")]
delete_ModelCreatorList(global::System.Runtime.InteropServices.HandleRef jarg1)203   public static extern void delete_ModelCreatorList(global::System.Runtime.InteropServices.HandleRef jarg1);
204 
205   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreatorList_add")]
ModelCreatorList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)206   public static extern void ModelCreatorList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
207 
208   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreatorList_get")]
ModelCreatorList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)209   public static extern global::System.IntPtr ModelCreatorList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
210 
211   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreatorList_prepend")]
ModelCreatorList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)212   public static extern void ModelCreatorList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
213 
214   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreatorList_remove")]
ModelCreatorList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)215   public static extern global::System.IntPtr ModelCreatorList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
216 
217   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreatorList_getSize")]
ModelCreatorList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1)218   public static extern uint ModelCreatorList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1);
219 
220   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_DateList")]
new_DateList()221   public static extern global::System.IntPtr new_DateList();
222 
223   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_DateList")]
delete_DateList(global::System.Runtime.InteropServices.HandleRef jarg1)224   public static extern void delete_DateList(global::System.Runtime.InteropServices.HandleRef jarg1);
225 
226   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DateList_add")]
DateList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)227   public static extern void DateList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
228 
229   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DateList_get")]
DateList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)230   public static extern global::System.IntPtr DateList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
231 
232   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DateList_prepend")]
DateList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)233   public static extern void DateList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
234 
235   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DateList_remove")]
DateList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)236   public static extern global::System.IntPtr DateList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
237 
238   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DateList_getSize")]
DateList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1)239   public static extern uint DateList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1);
240 
241   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CVTermList")]
new_CVTermList()242   public static extern global::System.IntPtr new_CVTermList();
243 
244   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_CVTermList")]
delete_CVTermList(global::System.Runtime.InteropServices.HandleRef jarg1)245   public static extern void delete_CVTermList(global::System.Runtime.InteropServices.HandleRef jarg1);
246 
247   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTermList_add")]
CVTermList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)248   public static extern void CVTermList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
249 
250   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTermList_get")]
CVTermList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)251   public static extern global::System.IntPtr CVTermList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
252 
253   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTermList_prepend")]
CVTermList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)254   public static extern void CVTermList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
255 
256   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTermList_remove")]
CVTermList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)257   public static extern global::System.IntPtr CVTermList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
258 
259   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTermList_getSize")]
CVTermList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1)260   public static extern uint CVTermList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1);
261 
262   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ASTNodeList")]
new_ASTNodeList()263   public static extern global::System.IntPtr new_ASTNodeList();
264 
265   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ASTNodeList")]
delete_ASTNodeList(global::System.Runtime.InteropServices.HandleRef jarg1)266   public static extern void delete_ASTNodeList(global::System.Runtime.InteropServices.HandleRef jarg1);
267 
268   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeList_add")]
ASTNodeList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)269   public static extern void ASTNodeList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
270 
271   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeList_get")]
ASTNodeList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)272   public static extern global::System.IntPtr ASTNodeList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
273 
274   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeList_prepend")]
ASTNodeList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)275   public static extern void ASTNodeList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
276 
277   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeList_remove")]
ASTNodeList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)278   public static extern global::System.IntPtr ASTNodeList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
279 
280   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeList_getSize")]
ASTNodeList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1)281   public static extern uint ASTNodeList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1);
282 
283   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLNamespacesList")]
new_SBMLNamespacesList()284   public static extern global::System.IntPtr new_SBMLNamespacesList();
285 
286   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLNamespacesList")]
delete_SBMLNamespacesList(global::System.Runtime.InteropServices.HandleRef jarg1)287   public static extern void delete_SBMLNamespacesList(global::System.Runtime.InteropServices.HandleRef jarg1);
288 
289   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespacesList_add")]
SBMLNamespacesList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)290   public static extern void SBMLNamespacesList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
291 
292   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespacesList_get")]
SBMLNamespacesList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)293   public static extern global::System.IntPtr SBMLNamespacesList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
294 
295   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespacesList_prepend")]
SBMLNamespacesList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)296   public static extern void SBMLNamespacesList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
297 
298   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespacesList_remove")]
SBMLNamespacesList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)299   public static extern global::System.IntPtr SBMLNamespacesList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
300 
301   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespacesList_getSize")]
SBMLNamespacesList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1)302   public static extern uint SBMLNamespacesList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1);
303 
304   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBaseList")]
new_SBaseList()305   public static extern global::System.IntPtr new_SBaseList();
306 
307   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBaseList")]
delete_SBaseList(global::System.Runtime.InteropServices.HandleRef jarg1)308   public static extern void delete_SBaseList(global::System.Runtime.InteropServices.HandleRef jarg1);
309 
310   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseList_add")]
SBaseList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)311   public static extern void SBaseList_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
312 
313   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseList_get")]
SBaseList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)314   public static extern global::System.IntPtr SBaseList_get(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
315 
316   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseList_prepend")]
SBaseList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)317   public static extern void SBaseList_prepend(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
318 
319   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseList_remove")]
SBaseList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2)320   public static extern global::System.IntPtr SBaseList_remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2);
321 
322   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseList_getSize")]
SBaseList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1)323   public static extern uint SBaseList_getSize(global::System.Runtime.InteropServices.HandleRef jarg1);
324 
325   protected class SWIGWStringHelper {
326 
327     [return: global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPWStr)]
SWIGWStringDelegate(global::System.IntPtr message)328     public delegate string SWIGWStringDelegate(global::System.IntPtr message);
329     static SWIGWStringDelegate wstringDelegate = new SWIGWStringDelegate(CreateWString);
330 
331     [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="SWIGRegisterWStringCallback_libsbml")]
SWIGRegisterWStringCallback_libsbml(SWIGWStringDelegate wstringDelegate)332     public static extern void SWIGRegisterWStringCallback_libsbml(SWIGWStringDelegate wstringDelegate);
333 
CreateWString([global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPWStr)]global::System.IntPtr cString)334     static string CreateWString([global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPWStr)]global::System.IntPtr cString) {
335       return global::System.Runtime.InteropServices.Marshal.PtrToStringUni(cString);
336     }
337 
SWIGWStringHelper()338     static SWIGWStringHelper() {
339       SWIGRegisterWStringCallback_libsbml(wstringDelegate);
340     }
341   }
342 
343   static protected SWIGWStringHelper swigWStringHelper = new SWIGWStringHelper();
344 
345 
346   class CustomExceptionHelper {
347     // C# delegate for the C/C++ customExceptionCallback
CustomExceptionDelegate(string message, int type)348     public delegate void CustomExceptionDelegate(string message, int type);
349     static CustomExceptionDelegate customDelegate =
350                                    new CustomExceptionDelegate(SetPendingCustomException);
351 
352     [DllImport("libsbmlcs", EntryPoint="CustomExceptionRegisterCallback")]
353     public static extern
CustomExceptionRegisterCallback(CustomExceptionDelegate customCallback)354            void CustomExceptionRegisterCallback(CustomExceptionDelegate customCallback);
355 
SetPendingCustomException(string message, int type)356     static void SetPendingCustomException(string message, int type) {
357       if (type == 0)
358       SWIGPendingException.Set(new SBMLConstructorException(message));
359 	  else
360 		SWIGPendingException.Set(new XMLConstructorException(message));
361     }
362 
CustomExceptionHelper()363     static CustomExceptionHelper() {
364       CustomExceptionRegisterCallback(customDelegate);
365     }
366   }
367 
368   // The following pragma's disable the compiler warning that the variable is
369   // never used.  Don't remove the actual code, though, or you will get
370   // compile-time errors.
371 
372   #pragma warning disable 0414
373   static CustomExceptionHelper exceptionHelper = new CustomExceptionHelper();
374   #pragma warning restore 0414
375 
376 
377   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_OStream__SWIG_0")]
new_OStream__SWIG_0(int jarg1)378   public static extern global::System.IntPtr new_OStream__SWIG_0(int jarg1);
379 
380   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_OStream__SWIG_1")]
new_OStream__SWIG_1()381   public static extern global::System.IntPtr new_OStream__SWIG_1();
382 
383   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_OStream")]
delete_OStream(global::System.Runtime.InteropServices.HandleRef jarg1)384   public static extern void delete_OStream(global::System.Runtime.InteropServices.HandleRef jarg1);
385 
386   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OStream_get_ostream")]
OStream_get_ostream(global::System.Runtime.InteropServices.HandleRef jarg1)387   public static extern global::System.IntPtr OStream_get_ostream(global::System.Runtime.InteropServices.HandleRef jarg1);
388 
389   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OStream_endl")]
OStream_endl(global::System.Runtime.InteropServices.HandleRef jarg1)390   public static extern void OStream_endl(global::System.Runtime.InteropServices.HandleRef jarg1);
391 
392   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_OFStream__SWIG_0")]
new_OFStream__SWIG_0(string jarg1, bool jarg2)393   public static extern global::System.IntPtr new_OFStream__SWIG_0(string jarg1, bool jarg2);
394 
395   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_OFStream__SWIG_1")]
new_OFStream__SWIG_1(string jarg1)396   public static extern global::System.IntPtr new_OFStream__SWIG_1(string jarg1);
397 
398   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_OFStream")]
delete_OFStream(global::System.Runtime.InteropServices.HandleRef jarg1)399   public static extern void delete_OFStream(global::System.Runtime.InteropServices.HandleRef jarg1);
400 
401   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OFStream_open__SWIG_0")]
OFStream_open__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)402   public static extern void OFStream_open__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
403 
404   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OFStream_open__SWIG_1")]
OFStream_open__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)405   public static extern void OFStream_open__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
406 
407   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OFStream_close")]
OFStream_close(global::System.Runtime.InteropServices.HandleRef jarg1)408   public static extern void OFStream_close(global::System.Runtime.InteropServices.HandleRef jarg1);
409 
410   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OFStream_is_open")]
OFStream_is_open(global::System.Runtime.InteropServices.HandleRef jarg1)411   public static extern bool OFStream_is_open(global::System.Runtime.InteropServices.HandleRef jarg1);
412 
413   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_OStringStream")]
new_OStringStream()414   public static extern global::System.IntPtr new_OStringStream();
415 
416   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OStringStream_str__SWIG_0")]
OStringStream_str__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)417   public static extern string OStringStream_str__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
418 
419   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OStringStream_str__SWIG_1")]
OStringStream_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)420   public static extern void OStringStream_str__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
421 
422   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_OStringStream")]
delete_OStringStream(global::System.Runtime.InteropServices.HandleRef jarg1)423   public static extern void delete_OStringStream(global::System.Runtime.InteropServices.HandleRef jarg1);
424 
425   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_getLibSBMLVersion")]
getLibSBMLVersion()426   public static extern int getLibSBMLVersion();
427 
428   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_getLibSBMLDottedVersion")]
getLibSBMLDottedVersion()429   public static extern string getLibSBMLDottedVersion();
430 
431   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_getLibSBMLVersionString")]
getLibSBMLVersionString()432   public static extern string getLibSBMLVersionString();
433 
434   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_isLibSBMLCompiledWith")]
isLibSBMLCompiledWith(string jarg1)435   public static extern int isLibSBMLCompiledWith(string jarg1);
436 
437   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_getLibSBMLDependencyVersionOf")]
getLibSBMLDependencyVersionOf(string jarg1)438   public static extern string getLibSBMLDependencyVersionOf(string jarg1);
439 
440   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OperationReturnValue_toString")]
OperationReturnValue_toString(int jarg1)441   public static extern string OperationReturnValue_toString(int jarg1);
442 
443   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_IdList__SWIG_0")]
new_IdList__SWIG_0()444   public static extern global::System.IntPtr new_IdList__SWIG_0();
445 
446   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_IdList__SWIG_1")]
new_IdList__SWIG_1(string jarg1)447   public static extern global::System.IntPtr new_IdList__SWIG_1(string jarg1);
448 
449   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdList_append")]
IdList_append(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)450   public static extern void IdList_append(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
451 
452   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdList_contains")]
IdList_contains(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)453   public static extern bool IdList_contains(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
454 
455   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdList_empty")]
IdList_empty(global::System.Runtime.InteropServices.HandleRef jarg1)456   public static extern bool IdList_empty(global::System.Runtime.InteropServices.HandleRef jarg1);
457 
458   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdList_removeIdsBefore")]
IdList_removeIdsBefore(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)459   public static extern void IdList_removeIdsBefore(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
460 
461   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdList_size")]
IdList_size(global::System.Runtime.InteropServices.HandleRef jarg1)462   public static extern uint IdList_size(global::System.Runtime.InteropServices.HandleRef jarg1);
463 
464   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdList_clear")]
IdList_clear(global::System.Runtime.InteropServices.HandleRef jarg1)465   public static extern void IdList_clear(global::System.Runtime.InteropServices.HandleRef jarg1);
466 
467   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdList_at")]
IdList_at(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)468   public static extern string IdList_at(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
469 
470   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_IdList")]
delete_IdList(global::System.Runtime.InteropServices.HandleRef jarg1)471   public static extern void delete_IdList(global::System.Runtime.InteropServices.HandleRef jarg1);
472 
473   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_IdentifierTransformer")]
new_IdentifierTransformer()474   public static extern global::System.IntPtr new_IdentifierTransformer();
475 
476   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_IdentifierTransformer")]
delete_IdentifierTransformer(global::System.Runtime.InteropServices.HandleRef jarg1)477   public static extern void delete_IdentifierTransformer(global::System.Runtime.InteropServices.HandleRef jarg1);
478 
479   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdentifierTransformer_transform")]
IdentifierTransformer_transform(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)480   public static extern int IdentifierTransformer_transform(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
481 
482   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdentifierTransformer_transformSwigExplicitIdentifierTransformer")]
IdentifierTransformer_transformSwigExplicitIdentifierTransformer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)483   public static extern int IdentifierTransformer_transformSwigExplicitIdentifierTransformer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
484 
485   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_IdentifierTransformer_director_connect")]
IdentifierTransformer_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, IdentifierTransformer.SwigDelegateIdentifierTransformer_0 delegate0)486   public static extern void IdentifierTransformer_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, IdentifierTransformer.SwigDelegateIdentifierTransformer_0 delegate0);
487 
488   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ElementFilter")]
new_ElementFilter()489   public static extern global::System.IntPtr new_ElementFilter();
490 
491   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ElementFilter")]
delete_ElementFilter(global::System.Runtime.InteropServices.HandleRef jarg1)492   public static extern void delete_ElementFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
493 
494   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ElementFilter_filter")]
ElementFilter_filter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)495   public static extern bool ElementFilter_filter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
496 
497   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ElementFilter_filterSwigExplicitElementFilter")]
ElementFilter_filterSwigExplicitElementFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)498   public static extern bool ElementFilter_filterSwigExplicitElementFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
499 
500   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ElementFilter_director_connect")]
ElementFilter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, ElementFilter.SwigDelegateElementFilter_0 delegate0)501   public static extern void ElementFilter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, ElementFilter.SwigDelegateElementFilter_0 delegate0);
502 
503   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLReader")]
new_SBMLReader()504   public static extern global::System.IntPtr new_SBMLReader();
505 
506   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLReader")]
delete_SBMLReader(global::System.Runtime.InteropServices.HandleRef jarg1)507   public static extern void delete_SBMLReader(global::System.Runtime.InteropServices.HandleRef jarg1);
508 
509   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReader_readSBML")]
SBMLReader_readSBML(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)510   public static extern global::System.IntPtr SBMLReader_readSBML(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
511 
512   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReader_readSBMLFromFile")]
SBMLReader_readSBMLFromFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)513   public static extern global::System.IntPtr SBMLReader_readSBMLFromFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
514 
515   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReader_readSBMLFromString")]
SBMLReader_readSBMLFromString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)516   public static extern global::System.IntPtr SBMLReader_readSBMLFromString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
517 
518   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReader_hasZlib")]
SBMLReader_hasZlib()519   public static extern bool SBMLReader_hasZlib();
520 
521   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReader_hasBzip2")]
SBMLReader_hasBzip2()522   public static extern bool SBMLReader_hasBzip2();
523 
524   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_readSBML")]
readSBML(string jarg1)525   public static extern global::System.IntPtr readSBML(string jarg1);
526 
527   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_readSBMLFromFile")]
readSBMLFromFile(string jarg1)528   public static extern global::System.IntPtr readSBMLFromFile(string jarg1);
529 
530   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_readSBMLFromString")]
readSBMLFromString(string jarg1)531   public static extern global::System.IntPtr readSBMLFromString(string jarg1);
532 
533   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLWriter")]
new_SBMLWriter()534   public static extern global::System.IntPtr new_SBMLWriter();
535 
536   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLWriter")]
delete_SBMLWriter(global::System.Runtime.InteropServices.HandleRef jarg1)537   public static extern void delete_SBMLWriter(global::System.Runtime.InteropServices.HandleRef jarg1);
538 
539   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_setProgramName")]
SBMLWriter_setProgramName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)540   public static extern int SBMLWriter_setProgramName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
541 
542   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_setProgramVersion")]
SBMLWriter_setProgramVersion(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)543   public static extern int SBMLWriter_setProgramVersion(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
544 
545   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_writeSBML__SWIG_0")]
SBMLWriter_writeSBML__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)546   public static extern bool SBMLWriter_writeSBML__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
547 
548   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_writeSBML__SWIG_1")]
SBMLWriter_writeSBML__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)549   public static extern bool SBMLWriter_writeSBML__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
550 
551   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_writeToString")]
SBMLWriter_writeToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)552   public static extern string SBMLWriter_writeToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
553 
554   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_writeSBMLToFile")]
SBMLWriter_writeSBMLToFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)555   public static extern bool SBMLWriter_writeSBMLToFile(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
556 
557   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_writeSBMLToString")]
SBMLWriter_writeSBMLToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)558   public static extern string SBMLWriter_writeSBMLToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
559 
560   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_hasZlib")]
SBMLWriter_hasZlib()561   public static extern bool SBMLWriter_hasZlib();
562 
563   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLWriter_hasBzip2")]
SBMLWriter_hasBzip2()564   public static extern bool SBMLWriter_hasBzip2();
565 
566   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_writeSBML")]
writeSBML(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)567   public static extern int writeSBML(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
568 
569   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_writeSBMLToString")]
writeSBMLToString(global::System.Runtime.InteropServices.HandleRef jarg1)570   public static extern string writeSBMLToString(global::System.Runtime.InteropServices.HandleRef jarg1);
571 
572   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_writeSBMLToFile")]
writeSBMLToFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)573   public static extern int writeSBMLToFile(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
574 
575   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTypeCode_toString")]
SBMLTypeCode_toString(int jarg1, string jarg2)576   public static extern string SBMLTypeCode_toString(int jarg1, string jarg2);
577 
578   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBase")]
delete_SBase(global::System.Runtime.InteropServices.HandleRef jarg1)579   public static extern void delete_SBase(global::System.Runtime.InteropServices.HandleRef jarg1);
580 
581   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_clone")]
SBase_clone(global::System.Runtime.InteropServices.HandleRef jarg1)582   public static extern global::System.IntPtr SBase_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
583 
584   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getElementBySId__SWIG_0")]
SBase_getElementBySId__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)585   public static extern global::System.IntPtr SBase_getElementBySId__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
586 
587   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getElementByMetaId__SWIG_0")]
SBase_getElementByMetaId__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)588   public static extern global::System.IntPtr SBase_getElementByMetaId__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
589 
590   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_renameSIdRefs")]
SBase_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)591   public static extern void SBase_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
592 
593   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_renameMetaIdRefs")]
SBase_renameMetaIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)594   public static extern void SBase_renameMetaIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
595 
596   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_renameUnitSIdRefs")]
SBase_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)597   public static extern void SBase_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
598 
599   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_replaceSIDWithFunction")]
SBase_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)600   public static extern void SBase_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
601 
602   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_divideAssignmentsToSIdByFunction")]
SBase_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)603   public static extern void SBase_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
604 
605   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_multiplyAssignmentsToSIdByFunction")]
SBase_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)606   public static extern void SBase_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
607 
608   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getElementFromPluginsBySId")]
SBase_getElementFromPluginsBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)609   public static extern global::System.IntPtr SBase_getElementFromPluginsBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
610 
611   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getElementFromPluginsByMetaId")]
SBase_getElementFromPluginsByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)612   public static extern global::System.IntPtr SBase_getElementFromPluginsByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
613 
614   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_hasNonstandardIdentifierBeginningWith")]
SBase_hasNonstandardIdentifierBeginningWith(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)615   public static extern bool SBase_hasNonstandardIdentifierBeginningWith(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
616 
617   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_prependStringToAllIdentifiers")]
SBase_prependStringToAllIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)618   public static extern int SBase_prependStringToAllIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
619 
620   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_transformIdentifiers")]
SBase_transformIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)621   public static extern int SBase_transformIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
622 
623   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getMetaId")]
SBase_getMetaId(global::System.Runtime.InteropServices.HandleRef jarg1)624   public static extern string SBase_getMetaId(global::System.Runtime.InteropServices.HandleRef jarg1);
625 
626   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getId")]
SBase_getId(global::System.Runtime.InteropServices.HandleRef jarg1)627   public static extern string SBase_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
628 
629   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getIdAttribute")]
SBase_getIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1)630   public static extern string SBase_getIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1);
631 
632   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getName")]
SBase_getName(global::System.Runtime.InteropServices.HandleRef jarg1)633   public static extern string SBase_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
634 
635   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getNotes__SWIG_0")]
SBase_getNotes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)636   public static extern global::System.IntPtr SBase_getNotes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
637 
638   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getNotesString__SWIG_0")]
SBase_getNotesString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)639   public static extern string SBase_getNotesString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
640 
641   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getAnnotation__SWIG_0")]
SBase_getAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)642   public static extern global::System.IntPtr SBase_getAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
643 
644   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getAnnotationString__SWIG_0")]
SBase_getAnnotationString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)645   public static extern string SBase_getAnnotationString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
646 
647   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getNamespaces")]
SBase_getNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)648   public static extern global::System.IntPtr SBase_getNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
649 
650   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getSBMLDocument__SWIG_0")]
SBase_getSBMLDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)651   public static extern global::System.IntPtr SBase_getSBMLDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
652 
653   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getParentSBMLObject__SWIG_0")]
SBase_getParentSBMLObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)654   public static extern global::System.IntPtr SBase_getParentSBMLObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
655 
656   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getAncestorOfType__SWIG_0")]
SBase_getAncestorOfType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3)657   public static extern global::System.IntPtr SBase_getAncestorOfType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3);
658 
659   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getAncestorOfType__SWIG_1")]
SBase_getAncestorOfType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)660   public static extern global::System.IntPtr SBase_getAncestorOfType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
661 
662   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getSBOTerm")]
SBase_getSBOTerm(global::System.Runtime.InteropServices.HandleRef jarg1)663   public static extern int SBase_getSBOTerm(global::System.Runtime.InteropServices.HandleRef jarg1);
664 
665   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getSBOTermID")]
SBase_getSBOTermID(global::System.Runtime.InteropServices.HandleRef jarg1)666   public static extern string SBase_getSBOTermID(global::System.Runtime.InteropServices.HandleRef jarg1);
667 
668   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getSBOTermAsURL")]
SBase_getSBOTermAsURL(global::System.Runtime.InteropServices.HandleRef jarg1)669   public static extern string SBase_getSBOTermAsURL(global::System.Runtime.InteropServices.HandleRef jarg1);
670 
671   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getLine")]
SBase_getLine(global::System.Runtime.InteropServices.HandleRef jarg1)672   public static extern uint SBase_getLine(global::System.Runtime.InteropServices.HandleRef jarg1);
673 
674   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getColumn")]
SBase_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1)675   public static extern uint SBase_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1);
676 
677   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getModelHistory__SWIG_0")]
SBase_getModelHistory__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)678   public static extern global::System.IntPtr SBase_getModelHistory__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
679 
680   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetMetaId")]
SBase_isSetMetaId(global::System.Runtime.InteropServices.HandleRef jarg1)681   public static extern bool SBase_isSetMetaId(global::System.Runtime.InteropServices.HandleRef jarg1);
682 
683   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetId")]
SBase_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)684   public static extern bool SBase_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
685 
686   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetIdAttribute")]
SBase_isSetIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1)687   public static extern bool SBase_isSetIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1);
688 
689   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetName")]
SBase_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)690   public static extern bool SBase_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
691 
692   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetNotes")]
SBase_isSetNotes(global::System.Runtime.InteropServices.HandleRef jarg1)693   public static extern bool SBase_isSetNotes(global::System.Runtime.InteropServices.HandleRef jarg1);
694 
695   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetAnnotation")]
SBase_isSetAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1)696   public static extern bool SBase_isSetAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1);
697 
698   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetSBOTerm")]
SBase_isSetSBOTerm(global::System.Runtime.InteropServices.HandleRef jarg1)699   public static extern bool SBase_isSetSBOTerm(global::System.Runtime.InteropServices.HandleRef jarg1);
700 
701   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setMetaId")]
SBase_setMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)702   public static extern int SBase_setMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
703 
704   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetModelHistory")]
SBase_isSetModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1)705   public static extern bool SBase_isSetModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
706 
707   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setId")]
SBase_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)708   public static extern int SBase_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
709 
710   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setIdAttribute")]
SBase_setIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)711   public static extern int SBase_setIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
712 
713   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setName")]
SBase_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)714   public static extern int SBase_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
715 
716   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setAnnotation__SWIG_0")]
SBase_setAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)717   public static extern int SBase_setAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
718 
719   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setAnnotation__SWIG_1")]
SBase_setAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)720   public static extern int SBase_setAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
721 
722   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_appendAnnotation__SWIG_0")]
SBase_appendAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)723   public static extern int SBase_appendAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
724 
725   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_appendAnnotation__SWIG_1")]
SBase_appendAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)726   public static extern int SBase_appendAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
727 
728   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_removeTopLevelAnnotationElement__SWIG_0")]
SBase_removeTopLevelAnnotationElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)729   public static extern int SBase_removeTopLevelAnnotationElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
730 
731   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_removeTopLevelAnnotationElement__SWIG_1")]
SBase_removeTopLevelAnnotationElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)732   public static extern int SBase_removeTopLevelAnnotationElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
733 
734   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_removeTopLevelAnnotationElement__SWIG_2")]
SBase_removeTopLevelAnnotationElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)735   public static extern int SBase_removeTopLevelAnnotationElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
736 
737   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_replaceTopLevelAnnotationElement__SWIG_0")]
SBase_replaceTopLevelAnnotationElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)738   public static extern int SBase_replaceTopLevelAnnotationElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
739 
740   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_replaceTopLevelAnnotationElement__SWIG_1")]
SBase_replaceTopLevelAnnotationElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)741   public static extern int SBase_replaceTopLevelAnnotationElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
742 
743   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setNotes__SWIG_0")]
SBase_setNotes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)744   public static extern int SBase_setNotes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
745 
746   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setNotes__SWIG_1")]
SBase_setNotes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)747   public static extern int SBase_setNotes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
748 
749   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setNotes__SWIG_2")]
SBase_setNotes__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)750   public static extern int SBase_setNotes__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
751 
752   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_appendNotes__SWIG_0")]
SBase_appendNotes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)753   public static extern int SBase_appendNotes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
754 
755   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_appendNotes__SWIG_1")]
SBase_appendNotes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)756   public static extern int SBase_appendNotes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
757 
758   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setModelHistory")]
SBase_setModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)759   public static extern int SBase_setModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
760 
761   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_connectToParent")]
SBase_connectToParent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)762   public static extern void SBase_connectToParent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
763 
764   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_connectToChild")]
SBase_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)765   public static extern void SBase_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
766 
767   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setSBOTerm__SWIG_0")]
SBase_setSBOTerm__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)768   public static extern int SBase_setSBOTerm__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
769 
770   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setSBOTerm__SWIG_1")]
SBase_setSBOTerm__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)771   public static extern int SBase_setSBOTerm__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
772 
773   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setNamespaces")]
SBase_setNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)774   public static extern int SBase_setNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
775 
776   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetMetaId")]
SBase_unsetMetaId(global::System.Runtime.InteropServices.HandleRef jarg1)777   public static extern int SBase_unsetMetaId(global::System.Runtime.InteropServices.HandleRef jarg1);
778 
779   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetId")]
SBase_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1)780   public static extern int SBase_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1);
781 
782   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetIdAttribute")]
SBase_unsetIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1)783   public static extern int SBase_unsetIdAttribute(global::System.Runtime.InteropServices.HandleRef jarg1);
784 
785   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetName")]
SBase_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)786   public static extern int SBase_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
787 
788   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetNotes")]
SBase_unsetNotes(global::System.Runtime.InteropServices.HandleRef jarg1)789   public static extern int SBase_unsetNotes(global::System.Runtime.InteropServices.HandleRef jarg1);
790 
791   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetAnnotation")]
SBase_unsetAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1)792   public static extern int SBase_unsetAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1);
793 
794   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetSBOTerm")]
SBase_unsetSBOTerm(global::System.Runtime.InteropServices.HandleRef jarg1)795   public static extern int SBase_unsetSBOTerm(global::System.Runtime.InteropServices.HandleRef jarg1);
796 
797   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_addCVTerm__SWIG_0")]
SBase_addCVTerm__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)798   public static extern int SBase_addCVTerm__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
799 
800   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_addCVTerm__SWIG_1")]
SBase_addCVTerm__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)801   public static extern int SBase_addCVTerm__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
802 
803   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getCVTerms__SWIG_0")]
SBase_getCVTerms__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)804   public static extern global::System.IntPtr SBase_getCVTerms__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
805 
806   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getNumCVTerms")]
SBase_getNumCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1)807   public static extern uint SBase_getNumCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1);
808 
809   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getCVTerm")]
SBase_getCVTerm(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)810   public static extern global::System.IntPtr SBase_getCVTerm(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
811 
812   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetCVTerms")]
SBase_unsetCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1)813   public static extern int SBase_unsetCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1);
814 
815   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetModelHistory")]
SBase_unsetModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1)816   public static extern int SBase_unsetModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
817 
818   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getResourceBiologicalQualifier")]
SBase_getResourceBiologicalQualifier(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)819   public static extern int SBase_getResourceBiologicalQualifier(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
820 
821   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getResourceModelQualifier")]
SBase_getResourceModelQualifier(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)822   public static extern int SBase_getResourceModelQualifier(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
823 
824   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getModel")]
SBase_getModel(global::System.Runtime.InteropServices.HandleRef jarg1)825   public static extern global::System.IntPtr SBase_getModel(global::System.Runtime.InteropServices.HandleRef jarg1);
826 
827   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getLevel")]
SBase_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1)828   public static extern uint SBase_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1);
829 
830   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getVersion")]
SBase_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1)831   public static extern uint SBase_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
832 
833   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getPackageCoreVersion")]
SBase_getPackageCoreVersion(global::System.Runtime.InteropServices.HandleRef jarg1)834   public static extern uint SBase_getPackageCoreVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
835 
836   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getPackageVersion")]
SBase_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1)837   public static extern uint SBase_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
838 
839   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getPackageName")]
SBase_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1)840   public static extern string SBase_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1);
841 
842   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getTypeCode")]
SBase_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)843   public static extern int SBase_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
844 
845   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_hasValidLevelVersionNamespaceCombination")]
SBase_hasValidLevelVersionNamespaceCombination(global::System.Runtime.InteropServices.HandleRef jarg1)846   public static extern bool SBase_hasValidLevelVersionNamespaceCombination(global::System.Runtime.InteropServices.HandleRef jarg1);
847 
848   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getElementName")]
SBase_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)849   public static extern string SBase_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
850 
851   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_toSBML")]
SBase_toSBML(global::System.Runtime.InteropServices.HandleRef jarg1)852   public static extern string SBase_toSBML(global::System.Runtime.InteropServices.HandleRef jarg1);
853 
854   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_toXMLNode")]
SBase_toXMLNode(global::System.Runtime.InteropServices.HandleRef jarg1)855   public static extern global::System.IntPtr SBase_toXMLNode(global::System.Runtime.InteropServices.HandleRef jarg1);
856 
857   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_read__SWIG_0")]
SBase_read__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)858   public static extern void SBase_read__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
859 
860   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_read__SWIG_1")]
SBase_read__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)861   public static extern void SBase_read__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
862 
863   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getPlugin__SWIG_0")]
SBase_getPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)864   public static extern global::System.IntPtr SBase_getPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
865 
866   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getPlugin__SWIG_2")]
SBase_getPlugin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)867   public static extern global::System.IntPtr SBase_getPlugin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
868 
869   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getDisabledPlugin__SWIG_0")]
SBase_getDisabledPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)870   public static extern global::System.IntPtr SBase_getDisabledPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
871 
872   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getNumPlugins")]
SBase_getNumPlugins(global::System.Runtime.InteropServices.HandleRef jarg1)873   public static extern uint SBase_getNumPlugins(global::System.Runtime.InteropServices.HandleRef jarg1);
874 
875   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getNumDisabledPlugins")]
SBase_getNumDisabledPlugins(global::System.Runtime.InteropServices.HandleRef jarg1)876   public static extern uint SBase_getNumDisabledPlugins(global::System.Runtime.InteropServices.HandleRef jarg1);
877 
878   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_deleteDisabledPlugins__SWIG_0")]
SBase_deleteDisabledPlugins__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)879   public static extern void SBase_deleteDisabledPlugins__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
880 
881   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_deleteDisabledPlugins__SWIG_1")]
SBase_deleteDisabledPlugins__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)882   public static extern void SBase_deleteDisabledPlugins__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
883 
884   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_enablePackage")]
SBase_enablePackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)885   public static extern int SBase_enablePackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
886 
887   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_disablePackage")]
SBase_disablePackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)888   public static extern int SBase_disablePackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
889 
890   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_enablePackageInternal")]
SBase_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)891   public static extern void SBase_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
892 
893   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isPackageURIEnabled")]
SBase_isPackageURIEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)894   public static extern bool SBase_isPackageURIEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
895 
896   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isPackageEnabled")]
SBase_isPackageEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)897   public static extern bool SBase_isPackageEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
898 
899   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isPkgURIEnabled")]
SBase_isPkgURIEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)900   public static extern bool SBase_isPkgURIEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
901 
902   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isPkgEnabled")]
SBase_isPkgEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)903   public static extern bool SBase_isPkgEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
904 
905   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_writeExtensionElements")]
SBase_writeExtensionElements(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)906   public static extern void SBase_writeExtensionElements(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
907 
908   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_read__SWIG_2")]
SBase_read__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)909   public static extern void SBase_read__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
910 
911   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_write")]
SBase_write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)912   public static extern void SBase_write(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
913 
914   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_hasRequiredAttributes")]
SBase_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)915   public static extern bool SBase_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
916 
917   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_hasRequiredElements")]
SBase_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)918   public static extern bool SBase_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
919 
920   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_checkCompatibility")]
SBase_checkCompatibility(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)921   public static extern int SBase_checkCompatibility(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
922 
923   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_setSBMLNamespacesAndOwn")]
SBase_setSBMLNamespacesAndOwn(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)924   public static extern void SBase_setSBMLNamespacesAndOwn(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
925 
926   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getSBMLNamespaces")]
SBase_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)927   public static extern global::System.IntPtr SBase_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
928 
929   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_removeDuplicateAnnotations")]
SBase_removeDuplicateAnnotations(global::System.Runtime.InteropServices.HandleRef jarg1)930   public static extern void SBase_removeDuplicateAnnotations(global::System.Runtime.InteropServices.HandleRef jarg1);
931 
932   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_checkMathMLNamespace")]
SBase_checkMathMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)933   public static extern string SBase_checkMathMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
934 
935   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getDerivedUnitDefinition")]
SBase_getDerivedUnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)936   public static extern global::System.IntPtr SBase_getDerivedUnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
937 
938   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_containsUndeclaredUnits")]
SBase_containsUndeclaredUnits(global::System.Runtime.InteropServices.HandleRef jarg1)939   public static extern bool SBase_containsUndeclaredUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
940 
941   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_removeFromParentAndDelete")]
SBase_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)942   public static extern int SBase_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
943 
944   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_matchesSBMLNamespaces__SWIG_0")]
SBase_matchesSBMLNamespaces__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)945   public static extern bool SBase_matchesSBMLNamespaces__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
946 
947   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_matchesRequiredSBMLNamespacesForAddition__SWIG_0")]
SBase_matchesRequiredSBMLNamespacesForAddition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)948   public static extern bool SBase_matchesRequiredSBMLNamespacesForAddition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
949 
950   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_isSetUserData")]
SBase_isSetUserData(global::System.Runtime.InteropServices.HandleRef jarg1)951   public static extern bool SBase_isSetUserData(global::System.Runtime.InteropServices.HandleRef jarg1);
952 
953   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_unsetUserData")]
SBase_unsetUserData(global::System.Runtime.InteropServices.HandleRef jarg1)954   public static extern int SBase_unsetUserData(global::System.Runtime.InteropServices.HandleRef jarg1);
955 
956   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getURI")]
SBase_getURI(global::System.Runtime.InteropServices.HandleRef jarg1)957   public static extern string SBase_getURI(global::System.Runtime.InteropServices.HandleRef jarg1);
958 
959   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getPrefix")]
SBase_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1)960   public static extern string SBase_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1);
961 
962   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_hasOptionalAttributes")]
SBase_hasOptionalAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)963   public static extern bool SBase_hasOptionalAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
964 
965   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_hasOptionalElements")]
SBase_hasOptionalElements(global::System.Runtime.InteropServices.HandleRef jarg1)966   public static extern bool SBase_hasOptionalElements(global::System.Runtime.InteropServices.HandleRef jarg1);
967 
968   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_updateSBMLNamespace")]
SBase_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)969   public static extern void SBase_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
970 
971   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getListOfAllElements__SWIG_0")]
SBase_getListOfAllElements__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)972   public static extern global::System.IntPtr SBase_getListOfAllElements__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
973 
974   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getListOfAllElements__SWIG_1")]
SBase_getListOfAllElements__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)975   public static extern global::System.IntPtr SBase_getListOfAllElements__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
976 
977   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getListOfAllElementsFromPlugins__SWIG_0")]
SBase_getListOfAllElementsFromPlugins__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)978   public static extern global::System.IntPtr SBase_getListOfAllElementsFromPlugins__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
979 
980   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBase_getListOfAllElementsFromPlugins__SWIG_1")]
SBase_getListOfAllElementsFromPlugins__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)981   public static extern global::System.IntPtr SBase_getListOfAllElementsFromPlugins__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
982 
983   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOf__SWIG_0")]
new_ListOf__SWIG_0(long jarg1, long jarg2)984   public static extern global::System.IntPtr new_ListOf__SWIG_0(long jarg1, long jarg2);
985 
986   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOf__SWIG_1")]
new_ListOf__SWIG_1(long jarg1)987   public static extern global::System.IntPtr new_ListOf__SWIG_1(long jarg1);
988 
989   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOf__SWIG_2")]
new_ListOf__SWIG_2()990   public static extern global::System.IntPtr new_ListOf__SWIG_2();
991 
992   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOf__SWIG_3")]
new_ListOf__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1)993   public static extern global::System.IntPtr new_ListOf__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1);
994 
995   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOf")]
delete_ListOf(global::System.Runtime.InteropServices.HandleRef jarg1)996   public static extern void delete_ListOf(global::System.Runtime.InteropServices.HandleRef jarg1);
997 
998   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOf__SWIG_4")]
new_ListOf__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1)999   public static extern global::System.IntPtr new_ListOf__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1);
1000 
1001   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_clone")]
ListOf_clone(global::System.Runtime.InteropServices.HandleRef jarg1)1002   public static extern global::System.IntPtr ListOf_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
1003 
1004   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_append")]
ListOf_append(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1005   public static extern int ListOf_append(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1006 
1007   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_appendAndOwn")]
ListOf_appendAndOwn(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1008   public static extern int ListOf_appendAndOwn(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1009 
1010   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_appendFrom")]
ListOf_appendFrom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1011   public static extern int ListOf_appendFrom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1012 
1013   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_insert")]
ListOf_insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)1014   public static extern int ListOf_insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1015 
1016   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_insertAndOwn")]
ListOf_insertAndOwn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)1017   public static extern int ListOf_insertAndOwn(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1018 
1019   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_get__SWIG_0")]
ListOf_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1020   public static extern global::System.IntPtr ListOf_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1021 
1022   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_getElementBySId")]
ListOf_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1023   public static extern global::System.IntPtr ListOf_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1024 
1025   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_getElementByMetaId")]
ListOf_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1026   public static extern global::System.IntPtr ListOf_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1027 
1028   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_clear__SWIG_0")]
ListOf_clear__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1029   public static extern void ListOf_clear__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1030 
1031   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_clear__SWIG_1")]
ListOf_clear__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1032   public static extern void ListOf_clear__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1033 
1034   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_removeFromParentAndDelete")]
ListOf_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)1035   public static extern int ListOf_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
1036 
1037   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_remove")]
ListOf_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1038   public static extern global::System.IntPtr ListOf_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1039 
1040   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_size")]
ListOf_size(global::System.Runtime.InteropServices.HandleRef jarg1)1041   public static extern uint ListOf_size(global::System.Runtime.InteropServices.HandleRef jarg1);
1042 
1043   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_connectToChild")]
ListOf_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)1044   public static extern void ListOf_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
1045 
1046   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_getTypeCode")]
ListOf_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)1047   public static extern int ListOf_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
1048 
1049   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_getItemTypeCode")]
ListOf_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)1050   public static extern int ListOf_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
1051 
1052   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_getElementName")]
ListOf_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)1053   public static extern string ListOf_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
1054 
1055   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_enablePackageInternal")]
ListOf_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)1056   public static extern void ListOf_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
1057 
1058   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_updateSBMLNamespace")]
ListOf_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)1059   public static extern void ListOf_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
1060 
1061   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_hasOptionalElements")]
ListOf_hasOptionalElements(global::System.Runtime.InteropServices.HandleRef jarg1)1062   public static extern bool ListOf_hasOptionalElements(global::System.Runtime.InteropServices.HandleRef jarg1);
1063 
1064   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_isExplicitlyListed")]
ListOf_isExplicitlyListed(global::System.Runtime.InteropServices.HandleRef jarg1)1065   public static extern bool ListOf_isExplicitlyListed(global::System.Runtime.InteropServices.HandleRef jarg1);
1066 
1067   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_setExplicitlyListed__SWIG_0")]
ListOf_setExplicitlyListed__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1068   public static extern void ListOf_setExplicitlyListed__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1069 
1070   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_setExplicitlyListed__SWIG_1")]
ListOf_setExplicitlyListed__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1071   public static extern void ListOf_setExplicitlyListed__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1072 
1073   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_sort")]
ListOf_sort(global::System.Runtime.InteropServices.HandleRef jarg1)1074   public static extern void ListOf_sort(global::System.Runtime.InteropServices.HandleRef jarg1);
1075 
1076   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Model__SWIG_0")]
new_Model__SWIG_0(long jarg1, long jarg2)1077   public static extern global::System.IntPtr new_Model__SWIG_0(long jarg1, long jarg2);
1078 
1079   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Model__SWIG_1")]
new_Model__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1080   public static extern global::System.IntPtr new_Model__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1081 
1082   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Model")]
delete_Model(global::System.Runtime.InteropServices.HandleRef jarg1)1083   public static extern void delete_Model(global::System.Runtime.InteropServices.HandleRef jarg1);
1084 
1085   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Model__SWIG_2")]
new_Model__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)1086   public static extern global::System.IntPtr new_Model__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
1087 
1088   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_clone")]
Model_clone(global::System.Runtime.InteropServices.HandleRef jarg1)1089   public static extern global::System.IntPtr Model_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
1090 
1091   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getElementBySId")]
Model_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1092   public static extern global::System.IntPtr Model_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1093 
1094   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getElementByMetaId")]
Model_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1095   public static extern global::System.IntPtr Model_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1096 
1097   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getId")]
Model_getId(global::System.Runtime.InteropServices.HandleRef jarg1)1098   public static extern string Model_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
1099 
1100   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getName")]
Model_getName(global::System.Runtime.InteropServices.HandleRef jarg1)1101   public static extern string Model_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
1102 
1103   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getSubstanceUnits")]
Model_getSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1104   public static extern string Model_getSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1105 
1106   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getTimeUnits")]
Model_getTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1107   public static extern string Model_getTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1108 
1109   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getVolumeUnits")]
Model_getVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1110   public static extern string Model_getVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1111 
1112   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getAreaUnits")]
Model_getAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1113   public static extern string Model_getAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1114 
1115   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getLengthUnits")]
Model_getLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1116   public static extern string Model_getLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1117 
1118   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getExtentUnits")]
Model_getExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1119   public static extern string Model_getExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1120 
1121   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getConversionFactor")]
Model_getConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1)1122   public static extern string Model_getConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1);
1123 
1124   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetId")]
Model_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)1125   public static extern bool Model_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
1126 
1127   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetName")]
Model_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)1128   public static extern bool Model_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
1129 
1130   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetSubstanceUnits")]
Model_isSetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1131   public static extern bool Model_isSetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1132 
1133   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetTimeUnits")]
Model_isSetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1134   public static extern bool Model_isSetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1135 
1136   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetVolumeUnits")]
Model_isSetVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1137   public static extern bool Model_isSetVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1138 
1139   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetAreaUnits")]
Model_isSetAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1140   public static extern bool Model_isSetAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1141 
1142   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetLengthUnits")]
Model_isSetLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1143   public static extern bool Model_isSetLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1144 
1145   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetExtentUnits")]
Model_isSetExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1146   public static extern bool Model_isSetExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1147 
1148   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isSetConversionFactor")]
Model_isSetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1)1149   public static extern bool Model_isSetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1);
1150 
1151   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setId")]
Model_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1152   public static extern int Model_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1153 
1154   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setName")]
Model_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1155   public static extern int Model_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1156 
1157   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setSubstanceUnits")]
Model_setSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1158   public static extern int Model_setSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1159 
1160   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setTimeUnits")]
Model_setTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1161   public static extern int Model_setTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1162 
1163   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setVolumeUnits")]
Model_setVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1164   public static extern int Model_setVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1165 
1166   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setAreaUnits")]
Model_setAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1167   public static extern int Model_setAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1168 
1169   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setLengthUnits")]
Model_setLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1170   public static extern int Model_setLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1171 
1172   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setExtentUnits")]
Model_setExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1173   public static extern int Model_setExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1174 
1175   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setConversionFactor")]
Model_setConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1176   public static extern int Model_setConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1177 
1178   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetId")]
Model_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1)1179   public static extern int Model_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1);
1180 
1181   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetName")]
Model_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)1182   public static extern int Model_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
1183 
1184   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetSubstanceUnits")]
Model_unsetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1185   public static extern int Model_unsetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1186 
1187   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetTimeUnits")]
Model_unsetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1188   public static extern int Model_unsetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1189 
1190   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetVolumeUnits")]
Model_unsetVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1191   public static extern int Model_unsetVolumeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1192 
1193   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetAreaUnits")]
Model_unsetAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1194   public static extern int Model_unsetAreaUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1195 
1196   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetLengthUnits")]
Model_unsetLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1197   public static extern int Model_unsetLengthUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1198 
1199   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetExtentUnits")]
Model_unsetExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1200   public static extern int Model_unsetExtentUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1201 
1202   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_unsetConversionFactor")]
Model_unsetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1)1203   public static extern int Model_unsetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1);
1204 
1205   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addFunctionDefinition")]
Model_addFunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1206   public static extern int Model_addFunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1207 
1208   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addUnitDefinition")]
Model_addUnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1209   public static extern int Model_addUnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1210 
1211   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addCompartmentType")]
Model_addCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1212   public static extern int Model_addCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1213 
1214   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addSpeciesType")]
Model_addSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1215   public static extern int Model_addSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1216 
1217   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addCompartment")]
Model_addCompartment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1218   public static extern int Model_addCompartment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1219 
1220   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addSpecies")]
Model_addSpecies(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1221   public static extern int Model_addSpecies(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1222 
1223   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addParameter")]
Model_addParameter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1224   public static extern int Model_addParameter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1225 
1226   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addInitialAssignment")]
Model_addInitialAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1227   public static extern int Model_addInitialAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1228 
1229   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addRule")]
Model_addRule(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1230   public static extern int Model_addRule(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1231 
1232   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addConstraint")]
Model_addConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1233   public static extern int Model_addConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1234 
1235   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addReaction")]
Model_addReaction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1236   public static extern int Model_addReaction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1237 
1238   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addEvent")]
Model_addEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1239   public static extern int Model_addEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1240 
1241   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createFunctionDefinition")]
Model_createFunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)1242   public static extern global::System.IntPtr Model_createFunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
1243 
1244   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createUnitDefinition")]
Model_createUnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)1245   public static extern global::System.IntPtr Model_createUnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
1246 
1247   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createUnit")]
Model_createUnit(global::System.Runtime.InteropServices.HandleRef jarg1)1248   public static extern global::System.IntPtr Model_createUnit(global::System.Runtime.InteropServices.HandleRef jarg1);
1249 
1250   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createCompartmentType")]
Model_createCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1)1251   public static extern global::System.IntPtr Model_createCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1);
1252 
1253   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createSpeciesType")]
Model_createSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1)1254   public static extern global::System.IntPtr Model_createSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1);
1255 
1256   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createCompartment")]
Model_createCompartment(global::System.Runtime.InteropServices.HandleRef jarg1)1257   public static extern global::System.IntPtr Model_createCompartment(global::System.Runtime.InteropServices.HandleRef jarg1);
1258 
1259   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createSpecies")]
Model_createSpecies(global::System.Runtime.InteropServices.HandleRef jarg1)1260   public static extern global::System.IntPtr Model_createSpecies(global::System.Runtime.InteropServices.HandleRef jarg1);
1261 
1262   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createParameter")]
Model_createParameter(global::System.Runtime.InteropServices.HandleRef jarg1)1263   public static extern global::System.IntPtr Model_createParameter(global::System.Runtime.InteropServices.HandleRef jarg1);
1264 
1265   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createInitialAssignment")]
Model_createInitialAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)1266   public static extern global::System.IntPtr Model_createInitialAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
1267 
1268   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createAlgebraicRule")]
Model_createAlgebraicRule(global::System.Runtime.InteropServices.HandleRef jarg1)1269   public static extern global::System.IntPtr Model_createAlgebraicRule(global::System.Runtime.InteropServices.HandleRef jarg1);
1270 
1271   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createAssignmentRule")]
Model_createAssignmentRule(global::System.Runtime.InteropServices.HandleRef jarg1)1272   public static extern global::System.IntPtr Model_createAssignmentRule(global::System.Runtime.InteropServices.HandleRef jarg1);
1273 
1274   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createRateRule")]
Model_createRateRule(global::System.Runtime.InteropServices.HandleRef jarg1)1275   public static extern global::System.IntPtr Model_createRateRule(global::System.Runtime.InteropServices.HandleRef jarg1);
1276 
1277   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createConstraint")]
Model_createConstraint(global::System.Runtime.InteropServices.HandleRef jarg1)1278   public static extern global::System.IntPtr Model_createConstraint(global::System.Runtime.InteropServices.HandleRef jarg1);
1279 
1280   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createReaction")]
Model_createReaction(global::System.Runtime.InteropServices.HandleRef jarg1)1281   public static extern global::System.IntPtr Model_createReaction(global::System.Runtime.InteropServices.HandleRef jarg1);
1282 
1283   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createReactant")]
Model_createReactant(global::System.Runtime.InteropServices.HandleRef jarg1)1284   public static extern global::System.IntPtr Model_createReactant(global::System.Runtime.InteropServices.HandleRef jarg1);
1285 
1286   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createProduct")]
Model_createProduct(global::System.Runtime.InteropServices.HandleRef jarg1)1287   public static extern global::System.IntPtr Model_createProduct(global::System.Runtime.InteropServices.HandleRef jarg1);
1288 
1289   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createModifier")]
Model_createModifier(global::System.Runtime.InteropServices.HandleRef jarg1)1290   public static extern global::System.IntPtr Model_createModifier(global::System.Runtime.InteropServices.HandleRef jarg1);
1291 
1292   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createKineticLaw")]
Model_createKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1)1293   public static extern global::System.IntPtr Model_createKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1);
1294 
1295   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createKineticLawParameter")]
Model_createKineticLawParameter(global::System.Runtime.InteropServices.HandleRef jarg1)1296   public static extern global::System.IntPtr Model_createKineticLawParameter(global::System.Runtime.InteropServices.HandleRef jarg1);
1297 
1298   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createKineticLawLocalParameter")]
Model_createKineticLawLocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1)1299   public static extern global::System.IntPtr Model_createKineticLawLocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1);
1300 
1301   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createEvent")]
Model_createEvent(global::System.Runtime.InteropServices.HandleRef jarg1)1302   public static extern global::System.IntPtr Model_createEvent(global::System.Runtime.InteropServices.HandleRef jarg1);
1303 
1304   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createEventAssignment")]
Model_createEventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)1305   public static extern global::System.IntPtr Model_createEventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
1306 
1307   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createTrigger")]
Model_createTrigger(global::System.Runtime.InteropServices.HandleRef jarg1)1308   public static extern global::System.IntPtr Model_createTrigger(global::System.Runtime.InteropServices.HandleRef jarg1);
1309 
1310   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_createDelay")]
Model_createDelay(global::System.Runtime.InteropServices.HandleRef jarg1)1311   public static extern global::System.IntPtr Model_createDelay(global::System.Runtime.InteropServices.HandleRef jarg1);
1312 
1313   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setAnnotation__SWIG_0")]
Model_setAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1314   public static extern int Model_setAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1315 
1316   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setAnnotation__SWIG_1")]
Model_setAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1317   public static extern int Model_setAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1318 
1319   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_appendAnnotation__SWIG_0")]
Model_appendAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1320   public static extern int Model_appendAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1321 
1322   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_appendAnnotation__SWIG_1")]
Model_appendAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1323   public static extern int Model_appendAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1324 
1325   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfFunctionDefinitions__SWIG_0")]
Model_getListOfFunctionDefinitions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1326   public static extern global::System.IntPtr Model_getListOfFunctionDefinitions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1327 
1328   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfUnitDefinitions__SWIG_0")]
Model_getListOfUnitDefinitions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1329   public static extern global::System.IntPtr Model_getListOfUnitDefinitions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1330 
1331   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfCompartmentTypes__SWIG_0")]
Model_getListOfCompartmentTypes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1332   public static extern global::System.IntPtr Model_getListOfCompartmentTypes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1333 
1334   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfSpeciesTypes__SWIG_0")]
Model_getListOfSpeciesTypes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1335   public static extern global::System.IntPtr Model_getListOfSpeciesTypes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1336 
1337   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfCompartments__SWIG_0")]
Model_getListOfCompartments__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1338   public static extern global::System.IntPtr Model_getListOfCompartments__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1339 
1340   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfSpecies__SWIG_0")]
Model_getListOfSpecies__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1341   public static extern global::System.IntPtr Model_getListOfSpecies__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1342 
1343   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfParameters__SWIG_0")]
Model_getListOfParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1344   public static extern global::System.IntPtr Model_getListOfParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1345 
1346   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfInitialAssignments__SWIG_0")]
Model_getListOfInitialAssignments__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1347   public static extern global::System.IntPtr Model_getListOfInitialAssignments__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1348 
1349   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfRules__SWIG_0")]
Model_getListOfRules__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1350   public static extern global::System.IntPtr Model_getListOfRules__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1351 
1352   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfConstraints__SWIG_0")]
Model_getListOfConstraints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1353   public static extern global::System.IntPtr Model_getListOfConstraints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1354 
1355   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfReactions__SWIG_0")]
Model_getListOfReactions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1356   public static extern global::System.IntPtr Model_getListOfReactions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1357 
1358   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getListOfEvents__SWIG_0")]
Model_getListOfEvents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1359   public static extern global::System.IntPtr Model_getListOfEvents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1360 
1361   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getFunctionDefinition__SWIG_0")]
Model_getFunctionDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1362   public static extern global::System.IntPtr Model_getFunctionDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1363 
1364   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getFunctionDefinition__SWIG_2")]
Model_getFunctionDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1365   public static extern global::System.IntPtr Model_getFunctionDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1366 
1367   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getUnitDefinition__SWIG_0")]
Model_getUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1368   public static extern global::System.IntPtr Model_getUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1369 
1370   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getUnitDefinition__SWIG_2")]
Model_getUnitDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1371   public static extern global::System.IntPtr Model_getUnitDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1372 
1373   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getCompartmentType__SWIG_0")]
Model_getCompartmentType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1374   public static extern global::System.IntPtr Model_getCompartmentType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1375 
1376   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getCompartmentType__SWIG_2")]
Model_getCompartmentType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1377   public static extern global::System.IntPtr Model_getCompartmentType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1378 
1379   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getSpeciesType__SWIG_0")]
Model_getSpeciesType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1380   public static extern global::System.IntPtr Model_getSpeciesType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1381 
1382   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getSpeciesType__SWIG_2")]
Model_getSpeciesType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1383   public static extern global::System.IntPtr Model_getSpeciesType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1384 
1385   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getCompartment__SWIG_0")]
Model_getCompartment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1386   public static extern global::System.IntPtr Model_getCompartment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1387 
1388   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getCompartment__SWIG_2")]
Model_getCompartment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1389   public static extern global::System.IntPtr Model_getCompartment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1390 
1391   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getSpecies__SWIG_0")]
Model_getSpecies__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1392   public static extern global::System.IntPtr Model_getSpecies__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1393 
1394   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getSpecies__SWIG_2")]
Model_getSpecies__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1395   public static extern global::System.IntPtr Model_getSpecies__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1396 
1397   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getParameter__SWIG_0")]
Model_getParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1398   public static extern global::System.IntPtr Model_getParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1399 
1400   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getParameter__SWIG_2")]
Model_getParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1401   public static extern global::System.IntPtr Model_getParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1402 
1403   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getInitialAssignment__SWIG_0")]
Model_getInitialAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1404   public static extern global::System.IntPtr Model_getInitialAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1405 
1406   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getInitialAssignment__SWIG_2")]
Model_getInitialAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1407   public static extern global::System.IntPtr Model_getInitialAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1408 
1409   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getInitialAssignmentBySymbol__SWIG_0")]
Model_getInitialAssignmentBySymbol__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1410   public static extern global::System.IntPtr Model_getInitialAssignmentBySymbol__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1411 
1412   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getRule__SWIG_0")]
Model_getRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1413   public static extern global::System.IntPtr Model_getRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1414 
1415   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getRule__SWIG_2")]
Model_getRule__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1416   public static extern global::System.IntPtr Model_getRule__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1417 
1418   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getRuleByVariable__SWIG_0")]
Model_getRuleByVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1419   public static extern global::System.IntPtr Model_getRuleByVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1420 
1421   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getAssignmentRule__SWIG_0")]
Model_getAssignmentRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1422   public static extern global::System.IntPtr Model_getAssignmentRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1423 
1424   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getRateRule__SWIG_0")]
Model_getRateRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1425   public static extern global::System.IntPtr Model_getRateRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1426 
1427   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getAssignmentRuleByVariable__SWIG_0")]
Model_getAssignmentRuleByVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1428   public static extern global::System.IntPtr Model_getAssignmentRuleByVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1429 
1430   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getRateRuleByVariable__SWIG_0")]
Model_getRateRuleByVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1431   public static extern global::System.IntPtr Model_getRateRuleByVariable__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1432 
1433   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getConstraint__SWIG_0")]
Model_getConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1434   public static extern global::System.IntPtr Model_getConstraint__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1435 
1436   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getReaction__SWIG_0")]
Model_getReaction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1437   public static extern global::System.IntPtr Model_getReaction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1438 
1439   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getReaction__SWIG_2")]
Model_getReaction__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1440   public static extern global::System.IntPtr Model_getReaction__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1441 
1442   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getSpeciesReference__SWIG_0")]
Model_getSpeciesReference__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1443   public static extern global::System.IntPtr Model_getSpeciesReference__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1444 
1445   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getModifierSpeciesReference__SWIG_0")]
Model_getModifierSpeciesReference__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1446   public static extern global::System.IntPtr Model_getModifierSpeciesReference__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1447 
1448   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getEvent__SWIG_0")]
Model_getEvent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1449   public static extern global::System.IntPtr Model_getEvent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1450 
1451   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getEvent__SWIG_2")]
Model_getEvent__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1452   public static extern global::System.IntPtr Model_getEvent__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1453 
1454   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumFunctionDefinitions")]
Model_getNumFunctionDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1)1455   public static extern uint Model_getNumFunctionDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1);
1456 
1457   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumUnitDefinitions")]
Model_getNumUnitDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1)1458   public static extern uint Model_getNumUnitDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1);
1459 
1460   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumCompartmentTypes")]
Model_getNumCompartmentTypes(global::System.Runtime.InteropServices.HandleRef jarg1)1461   public static extern uint Model_getNumCompartmentTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
1462 
1463   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumSpeciesTypes")]
Model_getNumSpeciesTypes(global::System.Runtime.InteropServices.HandleRef jarg1)1464   public static extern uint Model_getNumSpeciesTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
1465 
1466   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumCompartments")]
Model_getNumCompartments(global::System.Runtime.InteropServices.HandleRef jarg1)1467   public static extern uint Model_getNumCompartments(global::System.Runtime.InteropServices.HandleRef jarg1);
1468 
1469   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumSpecies")]
Model_getNumSpecies(global::System.Runtime.InteropServices.HandleRef jarg1)1470   public static extern uint Model_getNumSpecies(global::System.Runtime.InteropServices.HandleRef jarg1);
1471 
1472   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumSpeciesWithBoundaryCondition")]
Model_getNumSpeciesWithBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1)1473   public static extern uint Model_getNumSpeciesWithBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1);
1474 
1475   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumParameters")]
Model_getNumParameters(global::System.Runtime.InteropServices.HandleRef jarg1)1476   public static extern uint Model_getNumParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
1477 
1478   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumInitialAssignments")]
Model_getNumInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1)1479   public static extern uint Model_getNumInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1);
1480 
1481   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumRules")]
Model_getNumRules(global::System.Runtime.InteropServices.HandleRef jarg1)1482   public static extern uint Model_getNumRules(global::System.Runtime.InteropServices.HandleRef jarg1);
1483 
1484   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumConstraints")]
Model_getNumConstraints(global::System.Runtime.InteropServices.HandleRef jarg1)1485   public static extern uint Model_getNumConstraints(global::System.Runtime.InteropServices.HandleRef jarg1);
1486 
1487   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumReactions")]
Model_getNumReactions(global::System.Runtime.InteropServices.HandleRef jarg1)1488   public static extern uint Model_getNumReactions(global::System.Runtime.InteropServices.HandleRef jarg1);
1489 
1490   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getNumEvents")]
Model_getNumEvents(global::System.Runtime.InteropServices.HandleRef jarg1)1491   public static extern uint Model_getNumEvents(global::System.Runtime.InteropServices.HandleRef jarg1);
1492 
1493   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeFromParentAndDelete")]
Model_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)1494   public static extern int Model_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
1495 
1496   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_renameAllIds__SWIG_0")]
Model_renameAllIds__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)1497   public static extern int Model_renameAllIds__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1498 
1499   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_renameAllIds__SWIG_1")]
Model_renameAllIds__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1500   public static extern int Model_renameAllIds__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1501 
1502   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_renameSIdRefs")]
Model_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)1503   public static extern void Model_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
1504 
1505   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_renameUnitSIdRefs")]
Model_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)1506   public static extern void Model_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
1507 
1508   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL1ToL2")]
Model_convertL1ToL2(global::System.Runtime.InteropServices.HandleRef jarg1)1509   public static extern void Model_convertL1ToL2(global::System.Runtime.InteropServices.HandleRef jarg1);
1510 
1511   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL1ToL3__SWIG_0")]
Model_convertL1ToL3__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1512   public static extern void Model_convertL1ToL3__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1513 
1514   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL1ToL3__SWIG_1")]
Model_convertL1ToL3__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1515   public static extern void Model_convertL1ToL3__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1516 
1517   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL2ToL3__SWIG_0")]
Model_convertL2ToL3__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3)1518   public static extern void Model_convertL2ToL3__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2, bool jarg3);
1519 
1520   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL2ToL3__SWIG_1")]
Model_convertL2ToL3__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1521   public static extern void Model_convertL2ToL3__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1522 
1523   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL2ToL3__SWIG_2")]
Model_convertL2ToL3__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)1524   public static extern void Model_convertL2ToL3__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
1525 
1526   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL2ToL1__SWIG_0")]
Model_convertL2ToL1__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1527   public static extern void Model_convertL2ToL1__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1528 
1529   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL2ToL1__SWIG_1")]
Model_convertL2ToL1__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1530   public static extern void Model_convertL2ToL1__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1531 
1532   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL3ToL1__SWIG_0")]
Model_convertL3ToL1__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1533   public static extern void Model_convertL3ToL1__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1534 
1535   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL3ToL1__SWIG_1")]
Model_convertL3ToL1__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1536   public static extern void Model_convertL3ToL1__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1537 
1538   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL3ToL2__SWIG_0")]
Model_convertL3ToL2__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1539   public static extern void Model_convertL3ToL2__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1540 
1541   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertL3ToL2__SWIG_1")]
Model_convertL3ToL2__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1542   public static extern void Model_convertL3ToL2__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1543 
1544   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertFromL3V2__SWIG_0")]
Model_convertFromL3V2__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1545   public static extern void Model_convertFromL3V2__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1546 
1547   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertFromL3V2__SWIG_1")]
Model_convertFromL3V2__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1548   public static extern void Model_convertFromL3V2__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1549 
1550   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_dealWithFast")]
Model_dealWithFast(global::System.Runtime.InteropServices.HandleRef jarg1)1551   public static extern void Model_dealWithFast(global::System.Runtime.InteropServices.HandleRef jarg1);
1552 
1553   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_dealWithL3Fast")]
Model_dealWithL3Fast(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1554   public static extern void Model_dealWithL3Fast(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1555 
1556   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addModifiers")]
Model_addModifiers(global::System.Runtime.InteropServices.HandleRef jarg1)1557   public static extern void Model_addModifiers(global::System.Runtime.InteropServices.HandleRef jarg1);
1558 
1559   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addConstantAttribute")]
Model_addConstantAttribute(global::System.Runtime.InteropServices.HandleRef jarg1)1560   public static extern void Model_addConstantAttribute(global::System.Runtime.InteropServices.HandleRef jarg1);
1561 
1562   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setSpatialDimensions__SWIG_0")]
Model_setSpatialDimensions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)1563   public static extern void Model_setSpatialDimensions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
1564 
1565   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setSpatialDimensions__SWIG_1")]
Model_setSpatialDimensions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1566   public static extern void Model_setSpatialDimensions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1567 
1568   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_addDefinitionsForDefaultUnits")]
Model_addDefinitionsForDefaultUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1569   public static extern void Model_addDefinitionsForDefaultUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1570 
1571   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_dealWithDefaultValues")]
Model_dealWithDefaultValues(global::System.Runtime.InteropServices.HandleRef jarg1)1572   public static extern void Model_dealWithDefaultValues(global::System.Runtime.InteropServices.HandleRef jarg1);
1573 
1574   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertParametersToLocals")]
Model_convertParametersToLocals(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)1575   public static extern void Model_convertParametersToLocals(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
1576 
1577   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_setSpeciesReferenceConstantValueAndStoichiometry")]
Model_setSpeciesReferenceConstantValueAndStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1)1578   public static extern void Model_setSpeciesReferenceConstantValueAndStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1);
1579 
1580   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeParameterRuleUnits")]
Model_removeParameterRuleUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1581   public static extern void Model_removeParameterRuleUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1582 
1583   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_convertStoichiometryMath")]
Model_convertStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1)1584   public static extern void Model_convertStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1);
1585 
1586   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_assignRequiredValues")]
Model_assignRequiredValues(global::System.Runtime.InteropServices.HandleRef jarg1)1587   public static extern void Model_assignRequiredValues(global::System.Runtime.InteropServices.HandleRef jarg1);
1588 
1589   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_dealWithModelUnits__SWIG_0")]
Model_dealWithModelUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1590   public static extern void Model_dealWithModelUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1591 
1592   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_dealWithModelUnits__SWIG_1")]
Model_dealWithModelUnits__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1593   public static extern void Model_dealWithModelUnits__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1594 
1595   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_dealWithStoichiometry")]
Model_dealWithStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1)1596   public static extern void Model_dealWithStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1);
1597 
1598   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_dealWithEvents")]
Model_dealWithEvents(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1599   public static extern void Model_dealWithEvents(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1600 
1601   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeSpeciesTypes")]
Model_removeSpeciesTypes(global::System.Runtime.InteropServices.HandleRef jarg1)1602   public static extern void Model_removeSpeciesTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
1603 
1604   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeCompartmentTypes")]
Model_removeCompartmentTypes(global::System.Runtime.InteropServices.HandleRef jarg1)1605   public static extern void Model_removeCompartmentTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
1606 
1607   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_connectToChild")]
Model_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)1608   public static extern void Model_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
1609 
1610   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getTypeCode")]
Model_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)1611   public static extern int Model_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
1612 
1613   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getElementName")]
Model_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)1614   public static extern string Model_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
1615 
1616   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_populateListFormulaUnitsData")]
Model_populateListFormulaUnitsData(global::System.Runtime.InteropServices.HandleRef jarg1)1617   public static extern void Model_populateListFormulaUnitsData(global::System.Runtime.InteropServices.HandleRef jarg1);
1618 
1619   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isPopulatedListFormulaUnitsData")]
Model_isPopulatedListFormulaUnitsData(global::System.Runtime.InteropServices.HandleRef jarg1)1620   public static extern bool Model_isPopulatedListFormulaUnitsData(global::System.Runtime.InteropServices.HandleRef jarg1);
1621 
1622   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getFormulaUnitsDataForVariable")]
Model_getFormulaUnitsDataForVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1623   public static extern global::System.IntPtr Model_getFormulaUnitsDataForVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1624 
1625   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getFormulaUnitsDataForAssignment")]
Model_getFormulaUnitsDataForAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1626   public static extern global::System.IntPtr Model_getFormulaUnitsDataForAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1627 
1628   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_populateAllElementIdList")]
Model_populateAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1629   public static extern void Model_populateAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1630 
1631   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isPopulatedAllElementIdList")]
Model_isPopulatedAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1632   public static extern bool Model_isPopulatedAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1633 
1634   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getAllElementIdList")]
Model_getAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1635   public static extern global::System.IntPtr Model_getAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1636 
1637   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_clearAllElementIdList")]
Model_clearAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1638   public static extern void Model_clearAllElementIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1639 
1640   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_populateAllElementMetaIdList")]
Model_populateAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1641   public static extern void Model_populateAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1642 
1643   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_isPopulatedAllElementMetaIdList")]
Model_isPopulatedAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1644   public static extern bool Model_isPopulatedAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1645 
1646   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_getAllElementMetaIdList")]
Model_getAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1647   public static extern global::System.IntPtr Model_getAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1648 
1649   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_clearAllElementMetaIdList")]
Model_clearAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1)1650   public static extern void Model_clearAllElementMetaIdList(global::System.Runtime.InteropServices.HandleRef jarg1);
1651 
1652   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_hasRequiredElements")]
Model_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)1653   public static extern bool Model_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
1654 
1655   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeFunctionDefinition__SWIG_0")]
Model_removeFunctionDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1656   public static extern global::System.IntPtr Model_removeFunctionDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1657 
1658   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeFunctionDefinition__SWIG_1")]
Model_removeFunctionDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1659   public static extern global::System.IntPtr Model_removeFunctionDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1660 
1661   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeUnitDefinition__SWIG_0")]
Model_removeUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1662   public static extern global::System.IntPtr Model_removeUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1663 
1664   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeUnitDefinition__SWIG_1")]
Model_removeUnitDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1665   public static extern global::System.IntPtr Model_removeUnitDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1666 
1667   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeCompartmentType__SWIG_0")]
Model_removeCompartmentType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1668   public static extern global::System.IntPtr Model_removeCompartmentType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1669 
1670   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeCompartmentType__SWIG_1")]
Model_removeCompartmentType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1671   public static extern global::System.IntPtr Model_removeCompartmentType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1672 
1673   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeSpeciesType__SWIG_0")]
Model_removeSpeciesType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1674   public static extern global::System.IntPtr Model_removeSpeciesType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1675 
1676   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeSpeciesType__SWIG_1")]
Model_removeSpeciesType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1677   public static extern global::System.IntPtr Model_removeSpeciesType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1678 
1679   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeCompartment__SWIG_0")]
Model_removeCompartment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1680   public static extern global::System.IntPtr Model_removeCompartment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1681 
1682   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeCompartment__SWIG_1")]
Model_removeCompartment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1683   public static extern global::System.IntPtr Model_removeCompartment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1684 
1685   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeSpecies__SWIG_0")]
Model_removeSpecies__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1686   public static extern global::System.IntPtr Model_removeSpecies__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1687 
1688   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeSpecies__SWIG_1")]
Model_removeSpecies__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1689   public static extern global::System.IntPtr Model_removeSpecies__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1690 
1691   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeParameter__SWIG_0")]
Model_removeParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1692   public static extern global::System.IntPtr Model_removeParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1693 
1694   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeParameter__SWIG_1")]
Model_removeParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1695   public static extern global::System.IntPtr Model_removeParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1696 
1697   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeInitialAssignment__SWIG_0")]
Model_removeInitialAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1698   public static extern global::System.IntPtr Model_removeInitialAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1699 
1700   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeInitialAssignment__SWIG_1")]
Model_removeInitialAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1701   public static extern global::System.IntPtr Model_removeInitialAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1702 
1703   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeRule__SWIG_0")]
Model_removeRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1704   public static extern global::System.IntPtr Model_removeRule__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1705 
1706   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeRule__SWIG_1")]
Model_removeRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1707   public static extern global::System.IntPtr Model_removeRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1708 
1709   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeRuleByVariable")]
Model_removeRuleByVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1710   public static extern global::System.IntPtr Model_removeRuleByVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1711 
1712   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeConstraint")]
Model_removeConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1713   public static extern global::System.IntPtr Model_removeConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1714 
1715   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeReaction__SWIG_0")]
Model_removeReaction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1716   public static extern global::System.IntPtr Model_removeReaction__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1717 
1718   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeReaction__SWIG_1")]
Model_removeReaction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1719   public static extern global::System.IntPtr Model_removeReaction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1720 
1721   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeEvent__SWIG_0")]
Model_removeEvent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1722   public static extern global::System.IntPtr Model_removeEvent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1723 
1724   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_removeEvent__SWIG_1")]
Model_removeEvent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1725   public static extern global::System.IntPtr Model_removeEvent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1726 
1727   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_appendFrom")]
Model_appendFrom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1728   public static extern int Model_appendFrom(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1729 
1730   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_enablePackageInternal")]
Model_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)1731   public static extern void Model_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
1732 
1733   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_updateSBMLNamespace")]
Model_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)1734   public static extern void Model_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
1735 
1736   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_renameIDs")]
Model_renameIDs(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)1737   public static extern void Model_renameIDs(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
1738 
1739   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getDefaultLevel")]
SBMLDocument_getDefaultLevel()1740   public static extern uint SBMLDocument_getDefaultLevel();
1741 
1742   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getDefaultVersion")]
SBMLDocument_getDefaultVersion()1743   public static extern uint SBMLDocument_getDefaultVersion();
1744 
1745   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLDocument__SWIG_0")]
new_SBMLDocument__SWIG_0(long jarg1, long jarg2)1746   public static extern global::System.IntPtr new_SBMLDocument__SWIG_0(long jarg1, long jarg2);
1747 
1748   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLDocument__SWIG_1")]
new_SBMLDocument__SWIG_1(long jarg1)1749   public static extern global::System.IntPtr new_SBMLDocument__SWIG_1(long jarg1);
1750 
1751   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLDocument__SWIG_2")]
new_SBMLDocument__SWIG_2()1752   public static extern global::System.IntPtr new_SBMLDocument__SWIG_2();
1753 
1754   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLDocument__SWIG_3")]
new_SBMLDocument__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1)1755   public static extern global::System.IntPtr new_SBMLDocument__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1);
1756 
1757   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLDocument")]
delete_SBMLDocument(global::System.Runtime.InteropServices.HandleRef jarg1)1758   public static extern void delete_SBMLDocument(global::System.Runtime.InteropServices.HandleRef jarg1);
1759 
1760   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLDocument__SWIG_4")]
new_SBMLDocument__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1)1761   public static extern global::System.IntPtr new_SBMLDocument__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1);
1762 
1763   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_clone")]
SBMLDocument_clone(global::System.Runtime.InteropServices.HandleRef jarg1)1764   public static extern global::System.IntPtr SBMLDocument_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
1765 
1766   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_isSetModel")]
SBMLDocument_isSetModel(global::System.Runtime.InteropServices.HandleRef jarg1)1767   public static extern bool SBMLDocument_isSetModel(global::System.Runtime.InteropServices.HandleRef jarg1);
1768 
1769   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getModel__SWIG_0")]
SBMLDocument_getModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1770   public static extern global::System.IntPtr SBMLDocument_getModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1771 
1772   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getElementBySId")]
SBMLDocument_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1773   public static extern global::System.IntPtr SBMLDocument_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1774 
1775   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getElementByMetaId")]
SBMLDocument_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1776   public static extern global::System.IntPtr SBMLDocument_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1777 
1778   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_expandFunctionDefinitions")]
SBMLDocument_expandFunctionDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1)1779   public static extern bool SBMLDocument_expandFunctionDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1);
1780 
1781   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_expandInitialAssignments")]
SBMLDocument_expandInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1)1782   public static extern bool SBMLDocument_expandInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1);
1783 
1784   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setLevelAndVersion__SWIG_0")]
SBMLDocument_setLevelAndVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, bool jarg4, bool jarg5)1785   public static extern bool SBMLDocument_setLevelAndVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, bool jarg4, bool jarg5);
1786 
1787   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setLevelAndVersion__SWIG_1")]
SBMLDocument_setLevelAndVersion__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, bool jarg4)1788   public static extern bool SBMLDocument_setLevelAndVersion__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, bool jarg4);
1789 
1790   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setLevelAndVersion__SWIG_2")]
SBMLDocument_setLevelAndVersion__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)1791   public static extern bool SBMLDocument_setLevelAndVersion__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
1792 
1793   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_updateSBMLNamespace")]
SBMLDocument_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)1794   public static extern void SBMLDocument_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
1795 
1796   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setModel")]
SBMLDocument_setModel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1797   public static extern int SBMLDocument_setModel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1798 
1799   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_createModel__SWIG_0")]
SBMLDocument_createModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1800   public static extern global::System.IntPtr SBMLDocument_createModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1801 
1802   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_createModel__SWIG_1")]
SBMLDocument_createModel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1803   public static extern global::System.IntPtr SBMLDocument_createModel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1804 
1805   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setLocationURI")]
SBMLDocument_setLocationURI(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1806   public static extern void SBMLDocument_setLocationURI(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1807 
1808   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getLocationURI__SWIG_0")]
SBMLDocument_getLocationURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1809   public static extern string SBMLDocument_getLocationURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1810 
1811   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setConsistencyChecks")]
SBMLDocument_setConsistencyChecks(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3)1812   public static extern void SBMLDocument_setConsistencyChecks(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3);
1813 
1814   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setConsistencyChecksForConversion")]
SBMLDocument_setConsistencyChecksForConversion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3)1815   public static extern void SBMLDocument_setConsistencyChecksForConversion(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3);
1816 
1817   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkConsistency")]
SBMLDocument_checkConsistency(global::System.Runtime.InteropServices.HandleRef jarg1)1818   public static extern uint SBMLDocument_checkConsistency(global::System.Runtime.InteropServices.HandleRef jarg1);
1819 
1820   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkConsistencyWithStrictUnits")]
SBMLDocument_checkConsistencyWithStrictUnits(global::System.Runtime.InteropServices.HandleRef jarg1)1821   public static extern uint SBMLDocument_checkConsistencyWithStrictUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
1822 
1823   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_validateSBML")]
SBMLDocument_validateSBML(global::System.Runtime.InteropServices.HandleRef jarg1)1824   public static extern uint SBMLDocument_validateSBML(global::System.Runtime.InteropServices.HandleRef jarg1);
1825 
1826   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkInternalConsistency")]
SBMLDocument_checkInternalConsistency(global::System.Runtime.InteropServices.HandleRef jarg1)1827   public static extern uint SBMLDocument_checkInternalConsistency(global::System.Runtime.InteropServices.HandleRef jarg1);
1828 
1829   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL1Compatibility__SWIG_0")]
SBMLDocument_checkL1Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1830   public static extern uint SBMLDocument_checkL1Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1831 
1832   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL1Compatibility__SWIG_1")]
SBMLDocument_checkL1Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1833   public static extern uint SBMLDocument_checkL1Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1834 
1835   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v1Compatibility__SWIG_0")]
SBMLDocument_checkL2v1Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1836   public static extern uint SBMLDocument_checkL2v1Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1837 
1838   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v1Compatibility__SWIG_1")]
SBMLDocument_checkL2v1Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1839   public static extern uint SBMLDocument_checkL2v1Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1840 
1841   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v2Compatibility__SWIG_0")]
SBMLDocument_checkL2v2Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1842   public static extern uint SBMLDocument_checkL2v2Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1843 
1844   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v2Compatibility__SWIG_1")]
SBMLDocument_checkL2v2Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1845   public static extern uint SBMLDocument_checkL2v2Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1846 
1847   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v3Compatibility__SWIG_0")]
SBMLDocument_checkL2v3Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)1848   public static extern uint SBMLDocument_checkL2v3Compatibility__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
1849 
1850   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v3Compatibility__SWIG_1")]
SBMLDocument_checkL2v3Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1851   public static extern uint SBMLDocument_checkL2v3Compatibility__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1852 
1853   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v4Compatibility")]
SBMLDocument_checkL2v4Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1)1854   public static extern uint SBMLDocument_checkL2v4Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1);
1855 
1856   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL2v5Compatibility")]
SBMLDocument_checkL2v5Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1)1857   public static extern uint SBMLDocument_checkL2v5Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1);
1858 
1859   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL3v1Compatibility")]
SBMLDocument_checkL3v1Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1)1860   public static extern uint SBMLDocument_checkL3v1Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1);
1861 
1862   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_checkL3v2Compatibility")]
SBMLDocument_checkL3v2Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1)1863   public static extern uint SBMLDocument_checkL3v2Compatibility(global::System.Runtime.InteropServices.HandleRef jarg1);
1864 
1865   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getError")]
SBMLDocument_getError(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1866   public static extern global::System.IntPtr SBMLDocument_getError(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1867 
1868   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getErrorWithSeverity")]
SBMLDocument_getErrorWithSeverity(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)1869   public static extern global::System.IntPtr SBMLDocument_getErrorWithSeverity(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
1870 
1871   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getNumErrors__SWIG_0")]
SBMLDocument_getNumErrors__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1872   public static extern uint SBMLDocument_getNumErrors__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1873 
1874   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getNumErrors__SWIG_1")]
SBMLDocument_getNumErrors__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1875   public static extern uint SBMLDocument_getNumErrors__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1876 
1877   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_printErrors__SWIG_0")]
SBMLDocument_printErrors__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1878   public static extern void SBMLDocument_printErrors__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1879 
1880   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_printErrors__SWIG_1")]
SBMLDocument_printErrors__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1881   public static extern void SBMLDocument_printErrors__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1882 
1883   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_printErrors__SWIG_2")]
SBMLDocument_printErrors__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)1884   public static extern void SBMLDocument_printErrors__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
1885 
1886   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_connectToChild")]
SBMLDocument_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)1887   public static extern void SBMLDocument_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
1888 
1889   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_convert")]
SBMLDocument_convert(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1890   public static extern int SBMLDocument_convert(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1891 
1892   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_enablePackageInternal")]
SBMLDocument_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)1893   public static extern void SBMLDocument_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
1894 
1895   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getTypeCode")]
SBMLDocument_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)1896   public static extern int SBMLDocument_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
1897 
1898   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getElementName")]
SBMLDocument_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)1899   public static extern string SBMLDocument_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
1900 
1901   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getErrorLog__SWIG_0")]
SBMLDocument_getErrorLog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)1902   public static extern global::System.IntPtr SBMLDocument_getErrorLog__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
1903 
1904   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getNamespaces")]
SBMLDocument_getNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)1905   public static extern global::System.IntPtr SBMLDocument_getNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
1906 
1907   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_enableDefaultNS")]
SBMLDocument_enableDefaultNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)1908   public static extern int SBMLDocument_enableDefaultNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
1909 
1910   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_isEnabledDefaultNS")]
SBMLDocument_isEnabledDefaultNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1911   public static extern bool SBMLDocument_isEnabledDefaultNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1912 
1913   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setPackageRequired")]
SBMLDocument_setPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)1914   public static extern int SBMLDocument_setPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
1915 
1916   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getPackageRequired")]
SBMLDocument_getPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1917   public static extern bool SBMLDocument_getPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1918 
1919   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_isSetPackageRequired")]
SBMLDocument_isSetPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1920   public static extern bool SBMLDocument_isSetPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1921 
1922   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_isIgnoredPackage")]
SBMLDocument_isIgnoredPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1923   public static extern bool SBMLDocument_isIgnoredPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1924 
1925   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_isDisabledIgnoredPackage")]
SBMLDocument_isDisabledIgnoredPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1926   public static extern bool SBMLDocument_isDisabledIgnoredPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1927 
1928   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setPkgRequired")]
SBMLDocument_setPkgRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)1929   public static extern int SBMLDocument_setPkgRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
1930 
1931   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getPkgRequired")]
SBMLDocument_getPkgRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1932   public static extern bool SBMLDocument_getPkgRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1933 
1934   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_isSetPkgRequired")]
SBMLDocument_isSetPkgRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1935   public static extern bool SBMLDocument_isSetPkgRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1936 
1937   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_isIgnoredPkg")]
SBMLDocument_isIgnoredPkg(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1938   public static extern bool SBMLDocument_isIgnoredPkg(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1939 
1940   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getApplicableValidators")]
SBMLDocument_getApplicableValidators(global::System.Runtime.InteropServices.HandleRef jarg1)1941   public static extern byte SBMLDocument_getApplicableValidators(global::System.Runtime.InteropServices.HandleRef jarg1);
1942 
1943   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getConversionValidators")]
SBMLDocument_getConversionValidators(global::System.Runtime.InteropServices.HandleRef jarg1)1944   public static extern byte SBMLDocument_getConversionValidators(global::System.Runtime.InteropServices.HandleRef jarg1);
1945 
1946   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setApplicableValidators")]
SBMLDocument_setApplicableValidators(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2)1947   public static extern void SBMLDocument_setApplicableValidators(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2);
1948 
1949   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_setConversionValidators")]
SBMLDocument_setConversionValidators(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2)1950   public static extern void SBMLDocument_setConversionValidators(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2);
1951 
1952   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getNumValidators")]
SBMLDocument_getNumValidators(global::System.Runtime.InteropServices.HandleRef jarg1)1953   public static extern uint SBMLDocument_getNumValidators(global::System.Runtime.InteropServices.HandleRef jarg1);
1954 
1955   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_clearValidators")]
SBMLDocument_clearValidators(global::System.Runtime.InteropServices.HandleRef jarg1)1956   public static extern int SBMLDocument_clearValidators(global::System.Runtime.InteropServices.HandleRef jarg1);
1957 
1958   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_addValidator")]
SBMLDocument_addValidator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)1959   public static extern int SBMLDocument_addValidator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
1960 
1961   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getValidator")]
SBMLDocument_getValidator(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)1962   public static extern global::System.IntPtr SBMLDocument_getValidator(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
1963 
1964   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_addUnknownPackageRequired")]
SBMLDocument_addUnknownPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)1965   public static extern int SBMLDocument_addUnknownPackageRequired(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
1966 
1967   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_hasUnknownPackage")]
SBMLDocument_hasUnknownPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)1968   public static extern bool SBMLDocument_hasUnknownPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
1969 
1970   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getNumUnknownPackages")]
SBMLDocument_getNumUnknownPackages(global::System.Runtime.InteropServices.HandleRef jarg1)1971   public static extern int SBMLDocument_getNumUnknownPackages(global::System.Runtime.InteropServices.HandleRef jarg1);
1972 
1973   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getUnknownPackageURI")]
SBMLDocument_getUnknownPackageURI(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)1974   public static extern string SBMLDocument_getUnknownPackageURI(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1975 
1976   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_getUnknownPackagePrefix")]
SBMLDocument_getUnknownPackagePrefix(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)1977   public static extern string SBMLDocument_getUnknownPackagePrefix(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
1978 
1979   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_FunctionDefinition__SWIG_0")]
new_FunctionDefinition__SWIG_0(long jarg1, long jarg2)1980   public static extern global::System.IntPtr new_FunctionDefinition__SWIG_0(long jarg1, long jarg2);
1981 
1982   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_FunctionDefinition__SWIG_1")]
new_FunctionDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)1983   public static extern global::System.IntPtr new_FunctionDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
1984 
1985   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_FunctionDefinition")]
delete_FunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)1986   public static extern void delete_FunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
1987 
1988   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_FunctionDefinition__SWIG_2")]
new_FunctionDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)1989   public static extern global::System.IntPtr new_FunctionDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
1990 
1991   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_clone")]
FunctionDefinition_clone(global::System.Runtime.InteropServices.HandleRef jarg1)1992   public static extern global::System.IntPtr FunctionDefinition_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
1993 
1994   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getId")]
FunctionDefinition_getId(global::System.Runtime.InteropServices.HandleRef jarg1)1995   public static extern string FunctionDefinition_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
1996 
1997   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getName")]
FunctionDefinition_getName(global::System.Runtime.InteropServices.HandleRef jarg1)1998   public static extern string FunctionDefinition_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
1999 
2000   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getMath")]
FunctionDefinition_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)2001   public static extern global::System.IntPtr FunctionDefinition_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
2002 
2003   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_isSetId")]
FunctionDefinition_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)2004   public static extern bool FunctionDefinition_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
2005 
2006   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_isSetName")]
FunctionDefinition_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)2007   public static extern bool FunctionDefinition_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2008 
2009   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_isSetMath")]
FunctionDefinition_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)2010   public static extern bool FunctionDefinition_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
2011 
2012   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_setId")]
FunctionDefinition_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2013   public static extern int FunctionDefinition_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2014 
2015   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_setName")]
FunctionDefinition_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2016   public static extern int FunctionDefinition_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2017 
2018   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_setMath")]
FunctionDefinition_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2019   public static extern int FunctionDefinition_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2020 
2021   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_unsetName")]
FunctionDefinition_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)2022   public static extern int FunctionDefinition_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2023 
2024   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getArgument__SWIG_0")]
FunctionDefinition_getArgument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2025   public static extern global::System.IntPtr FunctionDefinition_getArgument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2026 
2027   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getArgument__SWIG_1")]
FunctionDefinition_getArgument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2028   public static extern global::System.IntPtr FunctionDefinition_getArgument__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2029 
2030   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getBody__SWIG_0")]
FunctionDefinition_getBody__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)2031   public static extern global::System.IntPtr FunctionDefinition_getBody__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
2032 
2033   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_isSetBody")]
FunctionDefinition_isSetBody(global::System.Runtime.InteropServices.HandleRef jarg1)2034   public static extern bool FunctionDefinition_isSetBody(global::System.Runtime.InteropServices.HandleRef jarg1);
2035 
2036   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getNumArguments")]
FunctionDefinition_getNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1)2037   public static extern uint FunctionDefinition_getNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1);
2038 
2039   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getTypeCode")]
FunctionDefinition_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2040   public static extern int FunctionDefinition_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2041 
2042   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_getElementName")]
FunctionDefinition_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2043   public static extern string FunctionDefinition_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2044 
2045   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_hasRequiredAttributes")]
FunctionDefinition_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)2046   public static extern bool FunctionDefinition_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
2047 
2048   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_hasRequiredElements")]
FunctionDefinition_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)2049   public static extern bool FunctionDefinition_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
2050 
2051   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_renameUnitSIdRefs")]
FunctionDefinition_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)2052   public static extern void FunctionDefinition_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2053 
2054   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfFunctionDefinitions__SWIG_0")]
new_ListOfFunctionDefinitions__SWIG_0(long jarg1, long jarg2)2055   public static extern global::System.IntPtr new_ListOfFunctionDefinitions__SWIG_0(long jarg1, long jarg2);
2056 
2057   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfFunctionDefinitions__SWIG_1")]
new_ListOfFunctionDefinitions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2058   public static extern global::System.IntPtr new_ListOfFunctionDefinitions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2059 
2060   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_clone")]
ListOfFunctionDefinitions_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2061   public static extern global::System.IntPtr ListOfFunctionDefinitions_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2062 
2063   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_getItemTypeCode")]
ListOfFunctionDefinitions_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2064   public static extern int ListOfFunctionDefinitions_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2065 
2066   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_getElementName")]
ListOfFunctionDefinitions_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2067   public static extern string ListOfFunctionDefinitions_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2068 
2069   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_get__SWIG_0")]
ListOfFunctionDefinitions_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2070   public static extern global::System.IntPtr ListOfFunctionDefinitions_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2071 
2072   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_get__SWIG_2")]
ListOfFunctionDefinitions_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2073   public static extern global::System.IntPtr ListOfFunctionDefinitions_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2074 
2075   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_remove__SWIG_0")]
ListOfFunctionDefinitions_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2076   public static extern global::System.IntPtr ListOfFunctionDefinitions_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2077 
2078   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_remove__SWIG_1")]
ListOfFunctionDefinitions_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2079   public static extern global::System.IntPtr ListOfFunctionDefinitions_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2080 
2081   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfFunctionDefinitions")]
delete_ListOfFunctionDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1)2082   public static extern void delete_ListOfFunctionDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1);
2083 
2084   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitKind_equals")]
UnitKind_equals(int jarg1, int jarg2)2085   public static extern int UnitKind_equals(int jarg1, int jarg2);
2086 
2087   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitKind_forName")]
UnitKind_forName(string jarg1)2088   public static extern int UnitKind_forName(string jarg1);
2089 
2090   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitKind_toString")]
UnitKind_toString(int jarg1)2091   public static extern string UnitKind_toString(int jarg1);
2092 
2093   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitKind_isValidUnitKindString")]
UnitKind_isValidUnitKindString(string jarg1, long jarg2, long jarg3)2094   public static extern int UnitKind_isValidUnitKindString(string jarg1, long jarg2, long jarg3);
2095 
2096   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Unit__SWIG_0")]
new_Unit__SWIG_0(long jarg1, long jarg2)2097   public static extern global::System.IntPtr new_Unit__SWIG_0(long jarg1, long jarg2);
2098 
2099   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Unit__SWIG_1")]
new_Unit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2100   public static extern global::System.IntPtr new_Unit__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2101 
2102   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Unit")]
delete_Unit(global::System.Runtime.InteropServices.HandleRef jarg1)2103   public static extern void delete_Unit(global::System.Runtime.InteropServices.HandleRef jarg1);
2104 
2105   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Unit__SWIG_2")]
new_Unit__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)2106   public static extern global::System.IntPtr new_Unit__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
2107 
2108   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_clone")]
Unit_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2109   public static extern global::System.IntPtr Unit_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2110 
2111   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_initDefaults")]
Unit_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1)2112   public static extern void Unit_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1);
2113 
2114   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getKind")]
Unit_getKind(global::System.Runtime.InteropServices.HandleRef jarg1)2115   public static extern int Unit_getKind(global::System.Runtime.InteropServices.HandleRef jarg1);
2116 
2117   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getExponent")]
Unit_getExponent(global::System.Runtime.InteropServices.HandleRef jarg1)2118   public static extern int Unit_getExponent(global::System.Runtime.InteropServices.HandleRef jarg1);
2119 
2120   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getExponentAsDouble")]
Unit_getExponentAsDouble(global::System.Runtime.InteropServices.HandleRef jarg1)2121   public static extern double Unit_getExponentAsDouble(global::System.Runtime.InteropServices.HandleRef jarg1);
2122 
2123   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getScale")]
Unit_getScale(global::System.Runtime.InteropServices.HandleRef jarg1)2124   public static extern int Unit_getScale(global::System.Runtime.InteropServices.HandleRef jarg1);
2125 
2126   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getMultiplier")]
Unit_getMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1)2127   public static extern double Unit_getMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1);
2128 
2129   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getOffset")]
Unit_getOffset(global::System.Runtime.InteropServices.HandleRef jarg1)2130   public static extern double Unit_getOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
2131 
2132   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isAmpere")]
Unit_isAmpere(global::System.Runtime.InteropServices.HandleRef jarg1)2133   public static extern bool Unit_isAmpere(global::System.Runtime.InteropServices.HandleRef jarg1);
2134 
2135   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isAvogadro")]
Unit_isAvogadro(global::System.Runtime.InteropServices.HandleRef jarg1)2136   public static extern bool Unit_isAvogadro(global::System.Runtime.InteropServices.HandleRef jarg1);
2137 
2138   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isBecquerel")]
Unit_isBecquerel(global::System.Runtime.InteropServices.HandleRef jarg1)2139   public static extern bool Unit_isBecquerel(global::System.Runtime.InteropServices.HandleRef jarg1);
2140 
2141   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isCandela")]
Unit_isCandela(global::System.Runtime.InteropServices.HandleRef jarg1)2142   public static extern bool Unit_isCandela(global::System.Runtime.InteropServices.HandleRef jarg1);
2143 
2144   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isCelsius")]
Unit_isCelsius(global::System.Runtime.InteropServices.HandleRef jarg1)2145   public static extern bool Unit_isCelsius(global::System.Runtime.InteropServices.HandleRef jarg1);
2146 
2147   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isCoulomb")]
Unit_isCoulomb(global::System.Runtime.InteropServices.HandleRef jarg1)2148   public static extern bool Unit_isCoulomb(global::System.Runtime.InteropServices.HandleRef jarg1);
2149 
2150   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isDimensionless")]
Unit_isDimensionless(global::System.Runtime.InteropServices.HandleRef jarg1)2151   public static extern bool Unit_isDimensionless(global::System.Runtime.InteropServices.HandleRef jarg1);
2152 
2153   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isFarad")]
Unit_isFarad(global::System.Runtime.InteropServices.HandleRef jarg1)2154   public static extern bool Unit_isFarad(global::System.Runtime.InteropServices.HandleRef jarg1);
2155 
2156   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isGram")]
Unit_isGram(global::System.Runtime.InteropServices.HandleRef jarg1)2157   public static extern bool Unit_isGram(global::System.Runtime.InteropServices.HandleRef jarg1);
2158 
2159   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isGray")]
Unit_isGray(global::System.Runtime.InteropServices.HandleRef jarg1)2160   public static extern bool Unit_isGray(global::System.Runtime.InteropServices.HandleRef jarg1);
2161 
2162   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isHenry")]
Unit_isHenry(global::System.Runtime.InteropServices.HandleRef jarg1)2163   public static extern bool Unit_isHenry(global::System.Runtime.InteropServices.HandleRef jarg1);
2164 
2165   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isHertz")]
Unit_isHertz(global::System.Runtime.InteropServices.HandleRef jarg1)2166   public static extern bool Unit_isHertz(global::System.Runtime.InteropServices.HandleRef jarg1);
2167 
2168   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isItem")]
Unit_isItem(global::System.Runtime.InteropServices.HandleRef jarg1)2169   public static extern bool Unit_isItem(global::System.Runtime.InteropServices.HandleRef jarg1);
2170 
2171   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isJoule")]
Unit_isJoule(global::System.Runtime.InteropServices.HandleRef jarg1)2172   public static extern bool Unit_isJoule(global::System.Runtime.InteropServices.HandleRef jarg1);
2173 
2174   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isKatal")]
Unit_isKatal(global::System.Runtime.InteropServices.HandleRef jarg1)2175   public static extern bool Unit_isKatal(global::System.Runtime.InteropServices.HandleRef jarg1);
2176 
2177   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isKelvin")]
Unit_isKelvin(global::System.Runtime.InteropServices.HandleRef jarg1)2178   public static extern bool Unit_isKelvin(global::System.Runtime.InteropServices.HandleRef jarg1);
2179 
2180   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isKilogram")]
Unit_isKilogram(global::System.Runtime.InteropServices.HandleRef jarg1)2181   public static extern bool Unit_isKilogram(global::System.Runtime.InteropServices.HandleRef jarg1);
2182 
2183   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isLitre")]
Unit_isLitre(global::System.Runtime.InteropServices.HandleRef jarg1)2184   public static extern bool Unit_isLitre(global::System.Runtime.InteropServices.HandleRef jarg1);
2185 
2186   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isLumen")]
Unit_isLumen(global::System.Runtime.InteropServices.HandleRef jarg1)2187   public static extern bool Unit_isLumen(global::System.Runtime.InteropServices.HandleRef jarg1);
2188 
2189   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isLux")]
Unit_isLux(global::System.Runtime.InteropServices.HandleRef jarg1)2190   public static extern bool Unit_isLux(global::System.Runtime.InteropServices.HandleRef jarg1);
2191 
2192   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isMetre")]
Unit_isMetre(global::System.Runtime.InteropServices.HandleRef jarg1)2193   public static extern bool Unit_isMetre(global::System.Runtime.InteropServices.HandleRef jarg1);
2194 
2195   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isMole")]
Unit_isMole(global::System.Runtime.InteropServices.HandleRef jarg1)2196   public static extern bool Unit_isMole(global::System.Runtime.InteropServices.HandleRef jarg1);
2197 
2198   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isNewton")]
Unit_isNewton(global::System.Runtime.InteropServices.HandleRef jarg1)2199   public static extern bool Unit_isNewton(global::System.Runtime.InteropServices.HandleRef jarg1);
2200 
2201   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isOhm")]
Unit_isOhm(global::System.Runtime.InteropServices.HandleRef jarg1)2202   public static extern bool Unit_isOhm(global::System.Runtime.InteropServices.HandleRef jarg1);
2203 
2204   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isPascal")]
Unit_isPascal(global::System.Runtime.InteropServices.HandleRef jarg1)2205   public static extern bool Unit_isPascal(global::System.Runtime.InteropServices.HandleRef jarg1);
2206 
2207   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isRadian")]
Unit_isRadian(global::System.Runtime.InteropServices.HandleRef jarg1)2208   public static extern bool Unit_isRadian(global::System.Runtime.InteropServices.HandleRef jarg1);
2209 
2210   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSecond")]
Unit_isSecond(global::System.Runtime.InteropServices.HandleRef jarg1)2211   public static extern bool Unit_isSecond(global::System.Runtime.InteropServices.HandleRef jarg1);
2212 
2213   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSiemens")]
Unit_isSiemens(global::System.Runtime.InteropServices.HandleRef jarg1)2214   public static extern bool Unit_isSiemens(global::System.Runtime.InteropServices.HandleRef jarg1);
2215 
2216   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSievert")]
Unit_isSievert(global::System.Runtime.InteropServices.HandleRef jarg1)2217   public static extern bool Unit_isSievert(global::System.Runtime.InteropServices.HandleRef jarg1);
2218 
2219   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSteradian")]
Unit_isSteradian(global::System.Runtime.InteropServices.HandleRef jarg1)2220   public static extern bool Unit_isSteradian(global::System.Runtime.InteropServices.HandleRef jarg1);
2221 
2222   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isTesla")]
Unit_isTesla(global::System.Runtime.InteropServices.HandleRef jarg1)2223   public static extern bool Unit_isTesla(global::System.Runtime.InteropServices.HandleRef jarg1);
2224 
2225   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isVolt")]
Unit_isVolt(global::System.Runtime.InteropServices.HandleRef jarg1)2226   public static extern bool Unit_isVolt(global::System.Runtime.InteropServices.HandleRef jarg1);
2227 
2228   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isWatt")]
Unit_isWatt(global::System.Runtime.InteropServices.HandleRef jarg1)2229   public static extern bool Unit_isWatt(global::System.Runtime.InteropServices.HandleRef jarg1);
2230 
2231   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isWeber")]
Unit_isWeber(global::System.Runtime.InteropServices.HandleRef jarg1)2232   public static extern bool Unit_isWeber(global::System.Runtime.InteropServices.HandleRef jarg1);
2233 
2234   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSetKind")]
Unit_isSetKind(global::System.Runtime.InteropServices.HandleRef jarg1)2235   public static extern bool Unit_isSetKind(global::System.Runtime.InteropServices.HandleRef jarg1);
2236 
2237   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSetExponent")]
Unit_isSetExponent(global::System.Runtime.InteropServices.HandleRef jarg1)2238   public static extern bool Unit_isSetExponent(global::System.Runtime.InteropServices.HandleRef jarg1);
2239 
2240   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSetScale")]
Unit_isSetScale(global::System.Runtime.InteropServices.HandleRef jarg1)2241   public static extern bool Unit_isSetScale(global::System.Runtime.InteropServices.HandleRef jarg1);
2242 
2243   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSetMultiplier")]
Unit_isSetMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1)2244   public static extern bool Unit_isSetMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1);
2245 
2246   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isSetOffset")]
Unit_isSetOffset(global::System.Runtime.InteropServices.HandleRef jarg1)2247   public static extern bool Unit_isSetOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
2248 
2249   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_setKind")]
Unit_setKind(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)2250   public static extern int Unit_setKind(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2251 
2252   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_setExponent__SWIG_0")]
Unit_setExponent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)2253   public static extern int Unit_setExponent__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2254 
2255   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_setExponent__SWIG_1")]
Unit_setExponent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2256   public static extern int Unit_setExponent__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2257 
2258   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_setScale")]
Unit_setScale(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)2259   public static extern int Unit_setScale(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2260 
2261   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_setMultiplier")]
Unit_setMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2262   public static extern int Unit_setMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2263 
2264   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_setOffset")]
Unit_setOffset(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2265   public static extern int Unit_setOffset(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2266 
2267   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_unsetKind")]
Unit_unsetKind(global::System.Runtime.InteropServices.HandleRef jarg1)2268   public static extern int Unit_unsetKind(global::System.Runtime.InteropServices.HandleRef jarg1);
2269 
2270   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_unsetExponent")]
Unit_unsetExponent(global::System.Runtime.InteropServices.HandleRef jarg1)2271   public static extern int Unit_unsetExponent(global::System.Runtime.InteropServices.HandleRef jarg1);
2272 
2273   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_unsetScale")]
Unit_unsetScale(global::System.Runtime.InteropServices.HandleRef jarg1)2274   public static extern int Unit_unsetScale(global::System.Runtime.InteropServices.HandleRef jarg1);
2275 
2276   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_unsetMultiplier")]
Unit_unsetMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1)2277   public static extern int Unit_unsetMultiplier(global::System.Runtime.InteropServices.HandleRef jarg1);
2278 
2279   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_unsetOffset")]
Unit_unsetOffset(global::System.Runtime.InteropServices.HandleRef jarg1)2280   public static extern int Unit_unsetOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
2281 
2282   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getTypeCode")]
Unit_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2283   public static extern int Unit_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2284 
2285   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getElementName")]
Unit_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2286   public static extern string Unit_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2287 
2288   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isBuiltIn")]
Unit_isBuiltIn(string jarg1, long jarg2)2289   public static extern bool Unit_isBuiltIn(string jarg1, long jarg2);
2290 
2291   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isUnitKind")]
Unit_isUnitKind(string jarg1, long jarg2, long jarg3)2292   public static extern bool Unit_isUnitKind(string jarg1, long jarg2, long jarg3);
2293 
2294   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_areIdentical")]
Unit_areIdentical(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2295   public static extern bool Unit_areIdentical(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2296 
2297   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_areEquivalent")]
Unit_areEquivalent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2298   public static extern bool Unit_areEquivalent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2299 
2300   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_removeScale")]
Unit_removeScale(global::System.Runtime.InteropServices.HandleRef jarg1)2301   public static extern int Unit_removeScale(global::System.Runtime.InteropServices.HandleRef jarg1);
2302 
2303   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_merge")]
Unit_merge(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2304   public static extern void Unit_merge(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2305 
2306   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_convertToSI")]
Unit_convertToSI(global::System.Runtime.InteropServices.HandleRef jarg1)2307   public static extern global::System.IntPtr Unit_convertToSI(global::System.Runtime.InteropServices.HandleRef jarg1);
2308 
2309   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_hasRequiredAttributes")]
Unit_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)2310   public static extern bool Unit_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
2311 
2312   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_setExponentUnitChecking")]
Unit_setExponentUnitChecking(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2313   public static extern void Unit_setExponentUnitChecking(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2314 
2315   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_getExponentUnitChecking__SWIG_0")]
Unit_getExponentUnitChecking__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)2316   public static extern double Unit_getExponentUnitChecking__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
2317 
2318   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_isUnitChecking__SWIG_0")]
Unit_isUnitChecking__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)2319   public static extern bool Unit_isUnitChecking__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
2320 
2321   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfUnits__SWIG_0")]
new_ListOfUnits__SWIG_0(long jarg1, long jarg2)2322   public static extern global::System.IntPtr new_ListOfUnits__SWIG_0(long jarg1, long jarg2);
2323 
2324   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfUnits__SWIG_1")]
new_ListOfUnits__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2325   public static extern global::System.IntPtr new_ListOfUnits__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2326 
2327   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnits_clone")]
ListOfUnits_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2328   public static extern global::System.IntPtr ListOfUnits_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2329 
2330   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnits_getItemTypeCode")]
ListOfUnits_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2331   public static extern int ListOfUnits_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2332 
2333   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnits_getElementName")]
ListOfUnits_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2334   public static extern string ListOfUnits_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2335 
2336   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnits_get__SWIG_0")]
ListOfUnits_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2337   public static extern global::System.IntPtr ListOfUnits_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2338 
2339   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnits_remove")]
ListOfUnits_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2340   public static extern global::System.IntPtr ListOfUnits_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2341 
2342   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfUnits")]
delete_ListOfUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2343   public static extern void delete_ListOfUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2344 
2345   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_UnitDefinition__SWIG_0")]
new_UnitDefinition__SWIG_0(long jarg1, long jarg2)2346   public static extern global::System.IntPtr new_UnitDefinition__SWIG_0(long jarg1, long jarg2);
2347 
2348   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_UnitDefinition__SWIG_1")]
new_UnitDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2349   public static extern global::System.IntPtr new_UnitDefinition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2350 
2351   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_UnitDefinition")]
delete_UnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1)2352   public static extern void delete_UnitDefinition(global::System.Runtime.InteropServices.HandleRef jarg1);
2353 
2354   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_UnitDefinition__SWIG_2")]
new_UnitDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)2355   public static extern global::System.IntPtr new_UnitDefinition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
2356 
2357   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_clone")]
UnitDefinition_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2358   public static extern global::System.IntPtr UnitDefinition_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2359 
2360   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getElementBySId")]
UnitDefinition_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2361   public static extern global::System.IntPtr UnitDefinition_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2362 
2363   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getElementByMetaId")]
UnitDefinition_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2364   public static extern global::System.IntPtr UnitDefinition_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2365 
2366   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getId")]
UnitDefinition_getId(global::System.Runtime.InteropServices.HandleRef jarg1)2367   public static extern string UnitDefinition_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
2368 
2369   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getName")]
UnitDefinition_getName(global::System.Runtime.InteropServices.HandleRef jarg1)2370   public static extern string UnitDefinition_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
2371 
2372   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isSetId")]
UnitDefinition_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)2373   public static extern bool UnitDefinition_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
2374 
2375   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isSetName")]
UnitDefinition_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)2376   public static extern bool UnitDefinition_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2377 
2378   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_setId")]
UnitDefinition_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2379   public static extern int UnitDefinition_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2380 
2381   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_setName")]
UnitDefinition_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2382   public static extern int UnitDefinition_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2383 
2384   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_unsetName")]
UnitDefinition_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)2385   public static extern int UnitDefinition_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2386 
2387   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfArea__SWIG_0")]
UnitDefinition_isVariantOfArea__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2388   public static extern bool UnitDefinition_isVariantOfArea__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2389 
2390   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfArea__SWIG_1")]
UnitDefinition_isVariantOfArea__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2391   public static extern bool UnitDefinition_isVariantOfArea__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2392 
2393   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfLength__SWIG_0")]
UnitDefinition_isVariantOfLength__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2394   public static extern bool UnitDefinition_isVariantOfLength__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2395 
2396   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfLength__SWIG_1")]
UnitDefinition_isVariantOfLength__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2397   public static extern bool UnitDefinition_isVariantOfLength__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2398 
2399   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfSubstance__SWIG_0")]
UnitDefinition_isVariantOfSubstance__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2400   public static extern bool UnitDefinition_isVariantOfSubstance__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2401 
2402   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfSubstance__SWIG_1")]
UnitDefinition_isVariantOfSubstance__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2403   public static extern bool UnitDefinition_isVariantOfSubstance__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2404 
2405   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfTime__SWIG_0")]
UnitDefinition_isVariantOfTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2406   public static extern bool UnitDefinition_isVariantOfTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2407 
2408   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfTime__SWIG_1")]
UnitDefinition_isVariantOfTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2409   public static extern bool UnitDefinition_isVariantOfTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2410 
2411   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfVolume__SWIG_0")]
UnitDefinition_isVariantOfVolume__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2412   public static extern bool UnitDefinition_isVariantOfVolume__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2413 
2414   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfVolume__SWIG_1")]
UnitDefinition_isVariantOfVolume__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2415   public static extern bool UnitDefinition_isVariantOfVolume__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2416 
2417   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfDimensionless__SWIG_0")]
UnitDefinition_isVariantOfDimensionless__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2418   public static extern bool UnitDefinition_isVariantOfDimensionless__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2419 
2420   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfDimensionless__SWIG_1")]
UnitDefinition_isVariantOfDimensionless__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2421   public static extern bool UnitDefinition_isVariantOfDimensionless__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2422 
2423   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfMass__SWIG_0")]
UnitDefinition_isVariantOfMass__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2424   public static extern bool UnitDefinition_isVariantOfMass__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2425 
2426   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfMass__SWIG_1")]
UnitDefinition_isVariantOfMass__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2427   public static extern bool UnitDefinition_isVariantOfMass__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2428 
2429   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfSubstancePerTime__SWIG_0")]
UnitDefinition_isVariantOfSubstancePerTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2430   public static extern bool UnitDefinition_isVariantOfSubstancePerTime__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2431 
2432   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_isVariantOfSubstancePerTime__SWIG_1")]
UnitDefinition_isVariantOfSubstancePerTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2433   public static extern bool UnitDefinition_isVariantOfSubstancePerTime__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2434 
2435   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_addUnit")]
UnitDefinition_addUnit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2436   public static extern int UnitDefinition_addUnit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2437 
2438   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_createUnit")]
UnitDefinition_createUnit(global::System.Runtime.InteropServices.HandleRef jarg1)2439   public static extern global::System.IntPtr UnitDefinition_createUnit(global::System.Runtime.InteropServices.HandleRef jarg1);
2440 
2441   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getListOfUnits__SWIG_0")]
UnitDefinition_getListOfUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)2442   public static extern global::System.IntPtr UnitDefinition_getListOfUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
2443 
2444   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getUnit__SWIG_0")]
UnitDefinition_getUnit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2445   public static extern global::System.IntPtr UnitDefinition_getUnit__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2446 
2447   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getNumUnits")]
UnitDefinition_getNumUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2448   public static extern uint UnitDefinition_getNumUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2449 
2450   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_removeUnit")]
UnitDefinition_removeUnit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2451   public static extern global::System.IntPtr UnitDefinition_removeUnit(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2452 
2453   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_connectToChild")]
UnitDefinition_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)2454   public static extern void UnitDefinition_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
2455 
2456   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_enablePackageInternal")]
UnitDefinition_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)2457   public static extern void UnitDefinition_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
2458 
2459   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_updateSBMLNamespace")]
UnitDefinition_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)2460   public static extern void UnitDefinition_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
2461 
2462   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getTypeCode")]
UnitDefinition_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2463   public static extern int UnitDefinition_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2464 
2465   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_getElementName")]
UnitDefinition_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2466   public static extern string UnitDefinition_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2467 
2468   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_simplify")]
UnitDefinition_simplify(global::System.Runtime.InteropServices.HandleRef jarg1)2469   public static extern void UnitDefinition_simplify(global::System.Runtime.InteropServices.HandleRef jarg1);
2470 
2471   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_reorder")]
UnitDefinition_reorder(global::System.Runtime.InteropServices.HandleRef jarg1)2472   public static extern void UnitDefinition_reorder(global::System.Runtime.InteropServices.HandleRef jarg1);
2473 
2474   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_convertToSI")]
UnitDefinition_convertToSI(global::System.Runtime.InteropServices.HandleRef jarg1)2475   public static extern global::System.IntPtr UnitDefinition_convertToSI(global::System.Runtime.InteropServices.HandleRef jarg1);
2476 
2477   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_areIdentical")]
UnitDefinition_areIdentical(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2478   public static extern bool UnitDefinition_areIdentical(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2479 
2480   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_areEquivalent")]
UnitDefinition_areEquivalent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2481   public static extern bool UnitDefinition_areEquivalent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2482 
2483   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_combine")]
UnitDefinition_combine(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2484   public static extern global::System.IntPtr UnitDefinition_combine(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2485 
2486   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_divide")]
UnitDefinition_divide(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)2487   public static extern global::System.IntPtr UnitDefinition_divide(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
2488 
2489   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_printUnits__SWIG_0")]
UnitDefinition_printUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2490   public static extern string UnitDefinition_printUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2491 
2492   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_printUnits__SWIG_1")]
UnitDefinition_printUnits__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2493   public static extern string UnitDefinition_printUnits__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2494 
2495   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_hasRequiredAttributes")]
UnitDefinition_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)2496   public static extern bool UnitDefinition_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
2497 
2498   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_hasRequiredElements")]
UnitDefinition_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)2499   public static extern bool UnitDefinition_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
2500 
2501   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfUnitDefinitions__SWIG_0")]
new_ListOfUnitDefinitions__SWIG_0(long jarg1, long jarg2)2502   public static extern global::System.IntPtr new_ListOfUnitDefinitions__SWIG_0(long jarg1, long jarg2);
2503 
2504   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfUnitDefinitions__SWIG_1")]
new_ListOfUnitDefinitions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2505   public static extern global::System.IntPtr new_ListOfUnitDefinitions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2506 
2507   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_clone")]
ListOfUnitDefinitions_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2508   public static extern global::System.IntPtr ListOfUnitDefinitions_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2509 
2510   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_getItemTypeCode")]
ListOfUnitDefinitions_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2511   public static extern int ListOfUnitDefinitions_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2512 
2513   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_getElementName")]
ListOfUnitDefinitions_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2514   public static extern string ListOfUnitDefinitions_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2515 
2516   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_get__SWIG_0")]
ListOfUnitDefinitions_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2517   public static extern global::System.IntPtr ListOfUnitDefinitions_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2518 
2519   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_get__SWIG_2")]
ListOfUnitDefinitions_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2520   public static extern global::System.IntPtr ListOfUnitDefinitions_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2521 
2522   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_getElementBySId")]
ListOfUnitDefinitions_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2523   public static extern global::System.IntPtr ListOfUnitDefinitions_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2524 
2525   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_remove__SWIG_0")]
ListOfUnitDefinitions_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2526   public static extern global::System.IntPtr ListOfUnitDefinitions_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2527 
2528   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_remove__SWIG_1")]
ListOfUnitDefinitions_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2529   public static extern global::System.IntPtr ListOfUnitDefinitions_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2530 
2531   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfUnitDefinitions")]
delete_ListOfUnitDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1)2532   public static extern void delete_ListOfUnitDefinitions(global::System.Runtime.InteropServices.HandleRef jarg1);
2533 
2534   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CompartmentType__SWIG_0")]
new_CompartmentType__SWIG_0(long jarg1, long jarg2)2535   public static extern global::System.IntPtr new_CompartmentType__SWIG_0(long jarg1, long jarg2);
2536 
2537   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CompartmentType__SWIG_1")]
new_CompartmentType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2538   public static extern global::System.IntPtr new_CompartmentType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2539 
2540   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_CompartmentType")]
delete_CompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1)2541   public static extern void delete_CompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1);
2542 
2543   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CompartmentType__SWIG_2")]
new_CompartmentType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)2544   public static extern global::System.IntPtr new_CompartmentType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
2545 
2546   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_clone")]
CompartmentType_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2547   public static extern global::System.IntPtr CompartmentType_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2548 
2549   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_getId")]
CompartmentType_getId(global::System.Runtime.InteropServices.HandleRef jarg1)2550   public static extern string CompartmentType_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
2551 
2552   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_getName")]
CompartmentType_getName(global::System.Runtime.InteropServices.HandleRef jarg1)2553   public static extern string CompartmentType_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
2554 
2555   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_isSetId")]
CompartmentType_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)2556   public static extern bool CompartmentType_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
2557 
2558   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_isSetName")]
CompartmentType_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)2559   public static extern bool CompartmentType_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2560 
2561   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_setId")]
CompartmentType_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2562   public static extern int CompartmentType_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2563 
2564   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_setName")]
CompartmentType_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2565   public static extern int CompartmentType_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2566 
2567   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_unsetName")]
CompartmentType_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)2568   public static extern int CompartmentType_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2569 
2570   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_getTypeCode")]
CompartmentType_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2571   public static extern int CompartmentType_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2572 
2573   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_getElementName")]
CompartmentType_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2574   public static extern string CompartmentType_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2575 
2576   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_hasRequiredAttributes")]
CompartmentType_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)2577   public static extern bool CompartmentType_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
2578 
2579   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfCompartmentTypes__SWIG_0")]
new_ListOfCompartmentTypes__SWIG_0(long jarg1, long jarg2)2580   public static extern global::System.IntPtr new_ListOfCompartmentTypes__SWIG_0(long jarg1, long jarg2);
2581 
2582   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfCompartmentTypes__SWIG_1")]
new_ListOfCompartmentTypes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2583   public static extern global::System.IntPtr new_ListOfCompartmentTypes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2584 
2585   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_clone")]
ListOfCompartmentTypes_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2586   public static extern global::System.IntPtr ListOfCompartmentTypes_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2587 
2588   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_getItemTypeCode")]
ListOfCompartmentTypes_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2589   public static extern int ListOfCompartmentTypes_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2590 
2591   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_getElementName")]
ListOfCompartmentTypes_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2592   public static extern string ListOfCompartmentTypes_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2593 
2594   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_get__SWIG_0")]
ListOfCompartmentTypes_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2595   public static extern global::System.IntPtr ListOfCompartmentTypes_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2596 
2597   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_get__SWIG_2")]
ListOfCompartmentTypes_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2598   public static extern global::System.IntPtr ListOfCompartmentTypes_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2599 
2600   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_remove__SWIG_0")]
ListOfCompartmentTypes_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2601   public static extern global::System.IntPtr ListOfCompartmentTypes_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2602 
2603   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_remove__SWIG_1")]
ListOfCompartmentTypes_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2604   public static extern global::System.IntPtr ListOfCompartmentTypes_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2605 
2606   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfCompartmentTypes")]
delete_ListOfCompartmentTypes(global::System.Runtime.InteropServices.HandleRef jarg1)2607   public static extern void delete_ListOfCompartmentTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
2608 
2609   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SpeciesType__SWIG_0")]
new_SpeciesType__SWIG_0(long jarg1, long jarg2)2610   public static extern global::System.IntPtr new_SpeciesType__SWIG_0(long jarg1, long jarg2);
2611 
2612   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SpeciesType__SWIG_1")]
new_SpeciesType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2613   public static extern global::System.IntPtr new_SpeciesType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2614 
2615   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SpeciesType")]
delete_SpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1)2616   public static extern void delete_SpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1);
2617 
2618   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SpeciesType__SWIG_2")]
new_SpeciesType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)2619   public static extern global::System.IntPtr new_SpeciesType__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
2620 
2621   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_clone")]
SpeciesType_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2622   public static extern global::System.IntPtr SpeciesType_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2623 
2624   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_getId")]
SpeciesType_getId(global::System.Runtime.InteropServices.HandleRef jarg1)2625   public static extern string SpeciesType_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
2626 
2627   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_getName")]
SpeciesType_getName(global::System.Runtime.InteropServices.HandleRef jarg1)2628   public static extern string SpeciesType_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
2629 
2630   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_isSetId")]
SpeciesType_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)2631   public static extern bool SpeciesType_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
2632 
2633   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_isSetName")]
SpeciesType_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)2634   public static extern bool SpeciesType_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2635 
2636   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_setId")]
SpeciesType_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2637   public static extern int SpeciesType_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2638 
2639   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_setName")]
SpeciesType_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2640   public static extern int SpeciesType_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2641 
2642   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_unsetName")]
SpeciesType_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)2643   public static extern int SpeciesType_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2644 
2645   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_getTypeCode")]
SpeciesType_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2646   public static extern int SpeciesType_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2647 
2648   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_getElementName")]
SpeciesType_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2649   public static extern string SpeciesType_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2650 
2651   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_hasRequiredAttributes")]
SpeciesType_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)2652   public static extern bool SpeciesType_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
2653 
2654   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfSpeciesTypes__SWIG_0")]
new_ListOfSpeciesTypes__SWIG_0(long jarg1, long jarg2)2655   public static extern global::System.IntPtr new_ListOfSpeciesTypes__SWIG_0(long jarg1, long jarg2);
2656 
2657   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfSpeciesTypes__SWIG_1")]
new_ListOfSpeciesTypes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2658   public static extern global::System.IntPtr new_ListOfSpeciesTypes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2659 
2660   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_clone")]
ListOfSpeciesTypes_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2661   public static extern global::System.IntPtr ListOfSpeciesTypes_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2662 
2663   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_getItemTypeCode")]
ListOfSpeciesTypes_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2664   public static extern int ListOfSpeciesTypes_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2665 
2666   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_getElementName")]
ListOfSpeciesTypes_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2667   public static extern string ListOfSpeciesTypes_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2668 
2669   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_get__SWIG_0")]
ListOfSpeciesTypes_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2670   public static extern global::System.IntPtr ListOfSpeciesTypes_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2671 
2672   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_get__SWIG_2")]
ListOfSpeciesTypes_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2673   public static extern global::System.IntPtr ListOfSpeciesTypes_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2674 
2675   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_remove__SWIG_0")]
ListOfSpeciesTypes_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2676   public static extern global::System.IntPtr ListOfSpeciesTypes_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2677 
2678   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_remove__SWIG_1")]
ListOfSpeciesTypes_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2679   public static extern global::System.IntPtr ListOfSpeciesTypes_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2680 
2681   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfSpeciesTypes")]
delete_ListOfSpeciesTypes(global::System.Runtime.InteropServices.HandleRef jarg1)2682   public static extern void delete_ListOfSpeciesTypes(global::System.Runtime.InteropServices.HandleRef jarg1);
2683 
2684   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Compartment__SWIG_0")]
new_Compartment__SWIG_0(long jarg1, long jarg2)2685   public static extern global::System.IntPtr new_Compartment__SWIG_0(long jarg1, long jarg2);
2686 
2687   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Compartment__SWIG_1")]
new_Compartment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2688   public static extern global::System.IntPtr new_Compartment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2689 
2690   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Compartment")]
delete_Compartment(global::System.Runtime.InteropServices.HandleRef jarg1)2691   public static extern void delete_Compartment(global::System.Runtime.InteropServices.HandleRef jarg1);
2692 
2693   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Compartment__SWIG_2")]
new_Compartment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)2694   public static extern global::System.IntPtr new_Compartment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
2695 
2696   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_clone")]
Compartment_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2697   public static extern global::System.IntPtr Compartment_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2698 
2699   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_initDefaults")]
Compartment_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1)2700   public static extern void Compartment_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1);
2701 
2702   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getId")]
Compartment_getId(global::System.Runtime.InteropServices.HandleRef jarg1)2703   public static extern string Compartment_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
2704 
2705   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getName")]
Compartment_getName(global::System.Runtime.InteropServices.HandleRef jarg1)2706   public static extern string Compartment_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
2707 
2708   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getCompartmentType")]
Compartment_getCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1)2709   public static extern string Compartment_getCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1);
2710 
2711   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getSpatialDimensions")]
Compartment_getSpatialDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)2712   public static extern uint Compartment_getSpatialDimensions(global::System.Runtime.InteropServices.HandleRef jarg1);
2713 
2714   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getSpatialDimensionsAsDouble")]
Compartment_getSpatialDimensionsAsDouble(global::System.Runtime.InteropServices.HandleRef jarg1)2715   public static extern double Compartment_getSpatialDimensionsAsDouble(global::System.Runtime.InteropServices.HandleRef jarg1);
2716 
2717   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getSize")]
Compartment_getSize(global::System.Runtime.InteropServices.HandleRef jarg1)2718   public static extern double Compartment_getSize(global::System.Runtime.InteropServices.HandleRef jarg1);
2719 
2720   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getVolume")]
Compartment_getVolume(global::System.Runtime.InteropServices.HandleRef jarg1)2721   public static extern double Compartment_getVolume(global::System.Runtime.InteropServices.HandleRef jarg1);
2722 
2723   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getUnits")]
Compartment_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2724   public static extern string Compartment_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2725 
2726   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getOutside")]
Compartment_getOutside(global::System.Runtime.InteropServices.HandleRef jarg1)2727   public static extern string Compartment_getOutside(global::System.Runtime.InteropServices.HandleRef jarg1);
2728 
2729   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getConstant")]
Compartment_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1)2730   public static extern bool Compartment_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
2731 
2732   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetId")]
Compartment_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)2733   public static extern bool Compartment_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
2734 
2735   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetName")]
Compartment_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)2736   public static extern bool Compartment_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2737 
2738   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetCompartmentType")]
Compartment_isSetCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1)2739   public static extern bool Compartment_isSetCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1);
2740 
2741   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetSize")]
Compartment_isSetSize(global::System.Runtime.InteropServices.HandleRef jarg1)2742   public static extern bool Compartment_isSetSize(global::System.Runtime.InteropServices.HandleRef jarg1);
2743 
2744   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetVolume")]
Compartment_isSetVolume(global::System.Runtime.InteropServices.HandleRef jarg1)2745   public static extern bool Compartment_isSetVolume(global::System.Runtime.InteropServices.HandleRef jarg1);
2746 
2747   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetUnits")]
Compartment_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2748   public static extern bool Compartment_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2749 
2750   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetOutside")]
Compartment_isSetOutside(global::System.Runtime.InteropServices.HandleRef jarg1)2751   public static extern bool Compartment_isSetOutside(global::System.Runtime.InteropServices.HandleRef jarg1);
2752 
2753   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetSpatialDimensions")]
Compartment_isSetSpatialDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)2754   public static extern bool Compartment_isSetSpatialDimensions(global::System.Runtime.InteropServices.HandleRef jarg1);
2755 
2756   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_isSetConstant")]
Compartment_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)2757   public static extern bool Compartment_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
2758 
2759   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setId")]
Compartment_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2760   public static extern int Compartment_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2761 
2762   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setName")]
Compartment_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2763   public static extern int Compartment_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2764 
2765   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setCompartmentType")]
Compartment_setCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2766   public static extern int Compartment_setCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2767 
2768   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setSpatialDimensions__SWIG_0")]
Compartment_setSpatialDimensions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2769   public static extern int Compartment_setSpatialDimensions__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2770 
2771   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setSpatialDimensions__SWIG_1")]
Compartment_setSpatialDimensions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2772   public static extern int Compartment_setSpatialDimensions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2773 
2774   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setSize")]
Compartment_setSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2775   public static extern int Compartment_setSize(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2776 
2777   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setVolume")]
Compartment_setVolume(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2778   public static extern int Compartment_setVolume(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2779 
2780   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setUnits")]
Compartment_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2781   public static extern int Compartment_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2782 
2783   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setOutside")]
Compartment_setOutside(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2784   public static extern int Compartment_setOutside(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2785 
2786   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_setConstant")]
Compartment_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2787   public static extern int Compartment_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2788 
2789   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_renameSIdRefs")]
Compartment_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)2790   public static extern void Compartment_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2791 
2792   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_renameUnitSIdRefs")]
Compartment_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)2793   public static extern void Compartment_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
2794 
2795   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetName")]
Compartment_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)2796   public static extern int Compartment_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2797 
2798   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetCompartmentType")]
Compartment_unsetCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1)2799   public static extern int Compartment_unsetCompartmentType(global::System.Runtime.InteropServices.HandleRef jarg1);
2800 
2801   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetConstant")]
Compartment_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)2802   public static extern int Compartment_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
2803 
2804   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetSize")]
Compartment_unsetSize(global::System.Runtime.InteropServices.HandleRef jarg1)2805   public static extern int Compartment_unsetSize(global::System.Runtime.InteropServices.HandleRef jarg1);
2806 
2807   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetVolume")]
Compartment_unsetVolume(global::System.Runtime.InteropServices.HandleRef jarg1)2808   public static extern int Compartment_unsetVolume(global::System.Runtime.InteropServices.HandleRef jarg1);
2809 
2810   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetUnits")]
Compartment_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2811   public static extern int Compartment_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2812 
2813   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetOutside")]
Compartment_unsetOutside(global::System.Runtime.InteropServices.HandleRef jarg1)2814   public static extern int Compartment_unsetOutside(global::System.Runtime.InteropServices.HandleRef jarg1);
2815 
2816   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_unsetSpatialDimensions")]
Compartment_unsetSpatialDimensions(global::System.Runtime.InteropServices.HandleRef jarg1)2817   public static extern int Compartment_unsetSpatialDimensions(global::System.Runtime.InteropServices.HandleRef jarg1);
2818 
2819   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getDerivedUnitDefinition__SWIG_0")]
Compartment_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)2820   public static extern global::System.IntPtr Compartment_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
2821 
2822   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getTypeCode")]
Compartment_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2823   public static extern int Compartment_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2824 
2825   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_getElementName")]
Compartment_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2826   public static extern string Compartment_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2827 
2828   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_hasRequiredAttributes")]
Compartment_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)2829   public static extern bool Compartment_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
2830 
2831   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfCompartments__SWIG_0")]
new_ListOfCompartments__SWIG_0(long jarg1, long jarg2)2832   public static extern global::System.IntPtr new_ListOfCompartments__SWIG_0(long jarg1, long jarg2);
2833 
2834   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfCompartments__SWIG_1")]
new_ListOfCompartments__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2835   public static extern global::System.IntPtr new_ListOfCompartments__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2836 
2837   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_clone")]
ListOfCompartments_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2838   public static extern global::System.IntPtr ListOfCompartments_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2839 
2840   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_getItemTypeCode")]
ListOfCompartments_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)2841   public static extern int ListOfCompartments_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
2842 
2843   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_getElementName")]
ListOfCompartments_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)2844   public static extern string ListOfCompartments_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
2845 
2846   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_get__SWIG_0")]
ListOfCompartments_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2847   public static extern global::System.IntPtr ListOfCompartments_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2848 
2849   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_get__SWIG_2")]
ListOfCompartments_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2850   public static extern global::System.IntPtr ListOfCompartments_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2851 
2852   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_remove__SWIG_0")]
ListOfCompartments_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)2853   public static extern global::System.IntPtr ListOfCompartments_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
2854 
2855   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_remove__SWIG_1")]
ListOfCompartments_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2856   public static extern global::System.IntPtr ListOfCompartments_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2857 
2858   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfCompartments")]
delete_ListOfCompartments(global::System.Runtime.InteropServices.HandleRef jarg1)2859   public static extern void delete_ListOfCompartments(global::System.Runtime.InteropServices.HandleRef jarg1);
2860 
2861   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Species__SWIG_0")]
new_Species__SWIG_0(long jarg1, long jarg2)2862   public static extern global::System.IntPtr new_Species__SWIG_0(long jarg1, long jarg2);
2863 
2864   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Species__SWIG_1")]
new_Species__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)2865   public static extern global::System.IntPtr new_Species__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
2866 
2867   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Species")]
delete_Species(global::System.Runtime.InteropServices.HandleRef jarg1)2868   public static extern void delete_Species(global::System.Runtime.InteropServices.HandleRef jarg1);
2869 
2870   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Species__SWIG_2")]
new_Species__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)2871   public static extern global::System.IntPtr new_Species__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
2872 
2873   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_clone")]
Species_clone(global::System.Runtime.InteropServices.HandleRef jarg1)2874   public static extern global::System.IntPtr Species_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
2875 
2876   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_initDefaults")]
Species_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1)2877   public static extern void Species_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1);
2878 
2879   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getId")]
Species_getId(global::System.Runtime.InteropServices.HandleRef jarg1)2880   public static extern string Species_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
2881 
2882   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getName")]
Species_getName(global::System.Runtime.InteropServices.HandleRef jarg1)2883   public static extern string Species_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
2884 
2885   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getSpeciesType")]
Species_getSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1)2886   public static extern string Species_getSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1);
2887 
2888   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getCompartment")]
Species_getCompartment(global::System.Runtime.InteropServices.HandleRef jarg1)2889   public static extern string Species_getCompartment(global::System.Runtime.InteropServices.HandleRef jarg1);
2890 
2891   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getInitialAmount")]
Species_getInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1)2892   public static extern double Species_getInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1);
2893 
2894   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getInitialConcentration")]
Species_getInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1)2895   public static extern double Species_getInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1);
2896 
2897   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getSubstanceUnits")]
Species_getSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2898   public static extern string Species_getSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2899 
2900   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getSpatialSizeUnits")]
Species_getSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2901   public static extern string Species_getSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2902 
2903   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getUnits")]
Species_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2904   public static extern string Species_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2905 
2906   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getHasOnlySubstanceUnits")]
Species_getHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2907   public static extern bool Species_getHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2908 
2909   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getBoundaryCondition")]
Species_getBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1)2910   public static extern bool Species_getBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1);
2911 
2912   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getCharge")]
Species_getCharge(global::System.Runtime.InteropServices.HandleRef jarg1)2913   public static extern int Species_getCharge(global::System.Runtime.InteropServices.HandleRef jarg1);
2914 
2915   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getConstant")]
Species_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1)2916   public static extern bool Species_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
2917 
2918   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getConversionFactor")]
Species_getConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1)2919   public static extern string Species_getConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1);
2920 
2921   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetId")]
Species_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)2922   public static extern bool Species_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
2923 
2924   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetName")]
Species_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)2925   public static extern bool Species_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
2926 
2927   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetSpeciesType")]
Species_isSetSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1)2928   public static extern bool Species_isSetSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1);
2929 
2930   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetCompartment")]
Species_isSetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1)2931   public static extern bool Species_isSetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1);
2932 
2933   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetInitialAmount")]
Species_isSetInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1)2934   public static extern bool Species_isSetInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1);
2935 
2936   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetInitialConcentration")]
Species_isSetInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1)2937   public static extern bool Species_isSetInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1);
2938 
2939   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetSubstanceUnits")]
Species_isSetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2940   public static extern bool Species_isSetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2941 
2942   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetSpatialSizeUnits")]
Species_isSetSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2943   public static extern bool Species_isSetSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2944 
2945   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetUnits")]
Species_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2946   public static extern bool Species_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2947 
2948   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetCharge")]
Species_isSetCharge(global::System.Runtime.InteropServices.HandleRef jarg1)2949   public static extern bool Species_isSetCharge(global::System.Runtime.InteropServices.HandleRef jarg1);
2950 
2951   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetConversionFactor")]
Species_isSetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1)2952   public static extern bool Species_isSetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1);
2953 
2954   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetBoundaryCondition")]
Species_isSetBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1)2955   public static extern bool Species_isSetBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1);
2956 
2957   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetHasOnlySubstanceUnits")]
Species_isSetHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)2958   public static extern bool Species_isSetHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
2959 
2960   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_isSetConstant")]
Species_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)2961   public static extern bool Species_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
2962 
2963   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setId")]
Species_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2964   public static extern int Species_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2965 
2966   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setName")]
Species_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2967   public static extern int Species_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2968 
2969   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setSpeciesType")]
Species_setSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2970   public static extern int Species_setSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2971 
2972   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setCompartment")]
Species_setCompartment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2973   public static extern int Species_setCompartment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2974 
2975   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setInitialAmount")]
Species_setInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2976   public static extern int Species_setInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2977 
2978   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setInitialConcentration")]
Species_setInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)2979   public static extern int Species_setInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
2980 
2981   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setSubstanceUnits")]
Species_setSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2982   public static extern int Species_setSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2983 
2984   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setSpatialSizeUnits")]
Species_setSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2985   public static extern int Species_setSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2986 
2987   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setUnits")]
Species_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)2988   public static extern int Species_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
2989 
2990   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setHasOnlySubstanceUnits")]
Species_setHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2991   public static extern int Species_setHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2992 
2993   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setBoundaryCondition")]
Species_setBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)2994   public static extern int Species_setBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
2995 
2996   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setCharge")]
Species_setCharge(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)2997   public static extern int Species_setCharge(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
2998 
2999   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setConstant")]
Species_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)3000   public static extern int Species_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3001 
3002   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_setConversionFactor")]
Species_setConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3003   public static extern int Species_setConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3004 
3005   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetName")]
Species_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)3006   public static extern int Species_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
3007 
3008   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetConstant")]
Species_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)3009   public static extern int Species_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
3010 
3011   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetSpeciesType")]
Species_unsetSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1)3012   public static extern int Species_unsetSpeciesType(global::System.Runtime.InteropServices.HandleRef jarg1);
3013 
3014   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetInitialAmount")]
Species_unsetInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1)3015   public static extern int Species_unsetInitialAmount(global::System.Runtime.InteropServices.HandleRef jarg1);
3016 
3017   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetInitialConcentration")]
Species_unsetInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1)3018   public static extern int Species_unsetInitialConcentration(global::System.Runtime.InteropServices.HandleRef jarg1);
3019 
3020   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetSubstanceUnits")]
Species_unsetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3021   public static extern int Species_unsetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3022 
3023   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetSpatialSizeUnits")]
Species_unsetSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3024   public static extern int Species_unsetSpatialSizeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3025 
3026   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetUnits")]
Species_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3027   public static extern int Species_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3028 
3029   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetCharge")]
Species_unsetCharge(global::System.Runtime.InteropServices.HandleRef jarg1)3030   public static extern int Species_unsetCharge(global::System.Runtime.InteropServices.HandleRef jarg1);
3031 
3032   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetConversionFactor")]
Species_unsetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1)3033   public static extern int Species_unsetConversionFactor(global::System.Runtime.InteropServices.HandleRef jarg1);
3034 
3035   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetCompartment")]
Species_unsetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1)3036   public static extern int Species_unsetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1);
3037 
3038   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetBoundaryCondition")]
Species_unsetBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1)3039   public static extern int Species_unsetBoundaryCondition(global::System.Runtime.InteropServices.HandleRef jarg1);
3040 
3041   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_unsetHasOnlySubstanceUnits")]
Species_unsetHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3042   public static extern int Species_unsetHasOnlySubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3043 
3044   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getDerivedUnitDefinition__SWIG_0")]
Species_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3045   public static extern global::System.IntPtr Species_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3046 
3047   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getTypeCode")]
Species_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3048   public static extern int Species_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3049 
3050   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_getElementName")]
Species_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3051   public static extern string Species_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3052 
3053   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_hasRequiredAttributes")]
Species_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3054   public static extern bool Species_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3055 
3056   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_renameSIdRefs")]
Species_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3057   public static extern void Species_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3058 
3059   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_renameUnitSIdRefs")]
Species_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3060   public static extern void Species_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3061 
3062   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfSpecies__SWIG_0")]
new_ListOfSpecies__SWIG_0(long jarg1, long jarg2)3063   public static extern global::System.IntPtr new_ListOfSpecies__SWIG_0(long jarg1, long jarg2);
3064 
3065   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfSpecies__SWIG_1")]
new_ListOfSpecies__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3066   public static extern global::System.IntPtr new_ListOfSpecies__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3067 
3068   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_clone")]
ListOfSpecies_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3069   public static extern global::System.IntPtr ListOfSpecies_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3070 
3071   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_getItemTypeCode")]
ListOfSpecies_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3072   public static extern int ListOfSpecies_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3073 
3074   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_getElementName")]
ListOfSpecies_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3075   public static extern string ListOfSpecies_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3076 
3077   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_get__SWIG_0")]
ListOfSpecies_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3078   public static extern global::System.IntPtr ListOfSpecies_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3079 
3080   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_get__SWIG_2")]
ListOfSpecies_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3081   public static extern global::System.IntPtr ListOfSpecies_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3082 
3083   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_remove__SWIG_0")]
ListOfSpecies_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3084   public static extern global::System.IntPtr ListOfSpecies_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3085 
3086   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_remove__SWIG_1")]
ListOfSpecies_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3087   public static extern global::System.IntPtr ListOfSpecies_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3088 
3089   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfSpecies")]
delete_ListOfSpecies(global::System.Runtime.InteropServices.HandleRef jarg1)3090   public static extern void delete_ListOfSpecies(global::System.Runtime.InteropServices.HandleRef jarg1);
3091 
3092   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Parameter__SWIG_0")]
new_Parameter__SWIG_0(long jarg1, long jarg2)3093   public static extern global::System.IntPtr new_Parameter__SWIG_0(long jarg1, long jarg2);
3094 
3095   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Parameter__SWIG_1")]
new_Parameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3096   public static extern global::System.IntPtr new_Parameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3097 
3098   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Parameter")]
delete_Parameter(global::System.Runtime.InteropServices.HandleRef jarg1)3099   public static extern void delete_Parameter(global::System.Runtime.InteropServices.HandleRef jarg1);
3100 
3101   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Parameter__SWIG_2")]
new_Parameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)3102   public static extern global::System.IntPtr new_Parameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3103 
3104   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_clone")]
Parameter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3105   public static extern global::System.IntPtr Parameter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3106 
3107   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_initDefaults")]
Parameter_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1)3108   public static extern void Parameter_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1);
3109 
3110   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getId")]
Parameter_getId(global::System.Runtime.InteropServices.HandleRef jarg1)3111   public static extern string Parameter_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
3112 
3113   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getName")]
Parameter_getName(global::System.Runtime.InteropServices.HandleRef jarg1)3114   public static extern string Parameter_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
3115 
3116   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getValue")]
Parameter_getValue(global::System.Runtime.InteropServices.HandleRef jarg1)3117   public static extern double Parameter_getValue(global::System.Runtime.InteropServices.HandleRef jarg1);
3118 
3119   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getUnits")]
Parameter_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3120   public static extern string Parameter_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3121 
3122   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getConstant")]
Parameter_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1)3123   public static extern bool Parameter_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
3124 
3125   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_isSetId")]
Parameter_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)3126   public static extern bool Parameter_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
3127 
3128   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_isSetName")]
Parameter_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)3129   public static extern bool Parameter_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
3130 
3131   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_isSetValue")]
Parameter_isSetValue(global::System.Runtime.InteropServices.HandleRef jarg1)3132   public static extern bool Parameter_isSetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
3133 
3134   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_isSetUnits")]
Parameter_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3135   public static extern bool Parameter_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3136 
3137   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_isSetConstant")]
Parameter_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)3138   public static extern bool Parameter_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
3139 
3140   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_setId")]
Parameter_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3141   public static extern int Parameter_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3142 
3143   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_setName")]
Parameter_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3144   public static extern int Parameter_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3145 
3146   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_setValue")]
Parameter_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)3147   public static extern int Parameter_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
3148 
3149   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_setUnits")]
Parameter_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3150   public static extern int Parameter_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3151 
3152   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_setConstant")]
Parameter_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)3153   public static extern int Parameter_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3154 
3155   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_unsetName")]
Parameter_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)3156   public static extern int Parameter_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
3157 
3158   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_unsetConstant")]
Parameter_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)3159   public static extern int Parameter_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
3160 
3161   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_unsetValue")]
Parameter_unsetValue(global::System.Runtime.InteropServices.HandleRef jarg1)3162   public static extern int Parameter_unsetValue(global::System.Runtime.InteropServices.HandleRef jarg1);
3163 
3164   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_unsetUnits")]
Parameter_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3165   public static extern int Parameter_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3166 
3167   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getDerivedUnitDefinition__SWIG_0")]
Parameter_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3168   public static extern global::System.IntPtr Parameter_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3169 
3170   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getTypeCode")]
Parameter_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3171   public static extern int Parameter_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3172 
3173   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_getElementName")]
Parameter_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3174   public static extern string Parameter_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3175 
3176   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_hasRequiredAttributes")]
Parameter_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3177   public static extern bool Parameter_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3178 
3179   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_renameUnitSIdRefs")]
Parameter_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3180   public static extern void Parameter_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3181 
3182   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_setCalculatingUnits")]
Parameter_setCalculatingUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)3183   public static extern void Parameter_setCalculatingUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3184 
3185   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfParameters__SWIG_0")]
new_ListOfParameters__SWIG_0(long jarg1, long jarg2)3186   public static extern global::System.IntPtr new_ListOfParameters__SWIG_0(long jarg1, long jarg2);
3187 
3188   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfParameters__SWIG_1")]
new_ListOfParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3189   public static extern global::System.IntPtr new_ListOfParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3190 
3191   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_clone")]
ListOfParameters_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3192   public static extern global::System.IntPtr ListOfParameters_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3193 
3194   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_getItemTypeCode")]
ListOfParameters_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3195   public static extern int ListOfParameters_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3196 
3197   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_getElementName")]
ListOfParameters_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3198   public static extern string ListOfParameters_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3199 
3200   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_get__SWIG_0")]
ListOfParameters_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3201   public static extern global::System.IntPtr ListOfParameters_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3202 
3203   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_get__SWIG_2")]
ListOfParameters_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3204   public static extern global::System.IntPtr ListOfParameters_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3205 
3206   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_remove__SWIG_0")]
ListOfParameters_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3207   public static extern global::System.IntPtr ListOfParameters_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3208 
3209   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_remove__SWIG_1")]
ListOfParameters_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3210   public static extern global::System.IntPtr ListOfParameters_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3211 
3212   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfParameters")]
delete_ListOfParameters(global::System.Runtime.InteropServices.HandleRef jarg1)3213   public static extern void delete_ListOfParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
3214 
3215   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_LocalParameter__SWIG_0")]
new_LocalParameter__SWIG_0(long jarg1, long jarg2)3216   public static extern global::System.IntPtr new_LocalParameter__SWIG_0(long jarg1, long jarg2);
3217 
3218   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_LocalParameter__SWIG_1")]
new_LocalParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3219   public static extern global::System.IntPtr new_LocalParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3220 
3221   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_LocalParameter")]
delete_LocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1)3222   public static extern void delete_LocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1);
3223 
3224   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_LocalParameter__SWIG_2")]
new_LocalParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)3225   public static extern global::System.IntPtr new_LocalParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3226 
3227   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_LocalParameter__SWIG_3")]
new_LocalParameter__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1)3228   public static extern global::System.IntPtr new_LocalParameter__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1);
3229 
3230   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_clone")]
LocalParameter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3231   public static extern global::System.IntPtr LocalParameter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3232 
3233   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_getDerivedUnitDefinition__SWIG_0")]
LocalParameter_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3234   public static extern global::System.IntPtr LocalParameter_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3235 
3236   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_getTypeCode")]
LocalParameter_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3237   public static extern int LocalParameter_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3238 
3239   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_getElementName")]
LocalParameter_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3240   public static extern string LocalParameter_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3241 
3242   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_hasRequiredAttributes")]
LocalParameter_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3243   public static extern bool LocalParameter_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3244 
3245   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_getConstant")]
LocalParameter_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1)3246   public static extern bool LocalParameter_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
3247 
3248   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_isSetConstant")]
LocalParameter_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)3249   public static extern bool LocalParameter_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
3250 
3251   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_setConstant")]
LocalParameter_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)3252   public static extern int LocalParameter_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3253 
3254   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_unsetConstant")]
LocalParameter_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)3255   public static extern int LocalParameter_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
3256 
3257   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfLocalParameters__SWIG_0")]
new_ListOfLocalParameters__SWIG_0(long jarg1, long jarg2)3258   public static extern global::System.IntPtr new_ListOfLocalParameters__SWIG_0(long jarg1, long jarg2);
3259 
3260   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfLocalParameters__SWIG_1")]
new_ListOfLocalParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3261   public static extern global::System.IntPtr new_ListOfLocalParameters__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3262 
3263   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_clone")]
ListOfLocalParameters_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3264   public static extern global::System.IntPtr ListOfLocalParameters_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3265 
3266   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_getItemTypeCode")]
ListOfLocalParameters_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3267   public static extern int ListOfLocalParameters_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3268 
3269   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_getElementName")]
ListOfLocalParameters_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3270   public static extern string ListOfLocalParameters_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3271 
3272   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_get__SWIG_0")]
ListOfLocalParameters_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3273   public static extern global::System.IntPtr ListOfLocalParameters_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3274 
3275   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_get__SWIG_2")]
ListOfLocalParameters_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3276   public static extern global::System.IntPtr ListOfLocalParameters_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3277 
3278   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_getElementBySId")]
ListOfLocalParameters_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3279   public static extern global::System.IntPtr ListOfLocalParameters_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3280 
3281   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_remove__SWIG_0")]
ListOfLocalParameters_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3282   public static extern global::System.IntPtr ListOfLocalParameters_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3283 
3284   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_remove__SWIG_1")]
ListOfLocalParameters_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3285   public static extern global::System.IntPtr ListOfLocalParameters_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3286 
3287   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfLocalParameters")]
delete_ListOfLocalParameters(global::System.Runtime.InteropServices.HandleRef jarg1)3288   public static extern void delete_ListOfLocalParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
3289 
3290   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_InitialAssignment__SWIG_0")]
new_InitialAssignment__SWIG_0(long jarg1, long jarg2)3291   public static extern global::System.IntPtr new_InitialAssignment__SWIG_0(long jarg1, long jarg2);
3292 
3293   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_InitialAssignment__SWIG_1")]
new_InitialAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3294   public static extern global::System.IntPtr new_InitialAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3295 
3296   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_InitialAssignment")]
delete_InitialAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)3297   public static extern void delete_InitialAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
3298 
3299   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_InitialAssignment__SWIG_2")]
new_InitialAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)3300   public static extern global::System.IntPtr new_InitialAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3301 
3302   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_clone")]
InitialAssignment_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3303   public static extern global::System.IntPtr InitialAssignment_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3304 
3305   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_getSymbol")]
InitialAssignment_getSymbol(global::System.Runtime.InteropServices.HandleRef jarg1)3306   public static extern string InitialAssignment_getSymbol(global::System.Runtime.InteropServices.HandleRef jarg1);
3307 
3308   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_getMath")]
InitialAssignment_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)3309   public static extern global::System.IntPtr InitialAssignment_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3310 
3311   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_isSetSymbol")]
InitialAssignment_isSetSymbol(global::System.Runtime.InteropServices.HandleRef jarg1)3312   public static extern bool InitialAssignment_isSetSymbol(global::System.Runtime.InteropServices.HandleRef jarg1);
3313 
3314   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_isSetMath")]
InitialAssignment_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)3315   public static extern bool InitialAssignment_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3316 
3317   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_setSymbol")]
InitialAssignment_setSymbol(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3318   public static extern int InitialAssignment_setSymbol(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3319 
3320   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_unsetSymbol")]
InitialAssignment_unsetSymbol(global::System.Runtime.InteropServices.HandleRef jarg1)3321   public static extern int InitialAssignment_unsetSymbol(global::System.Runtime.InteropServices.HandleRef jarg1);
3322 
3323   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_setMath")]
InitialAssignment_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3324   public static extern int InitialAssignment_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3325 
3326   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_getDerivedUnitDefinition__SWIG_0")]
InitialAssignment_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3327   public static extern global::System.IntPtr InitialAssignment_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3328 
3329   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_containsUndeclaredUnits__SWIG_0")]
InitialAssignment_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3330   public static extern bool InitialAssignment_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3331 
3332   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_getTypeCode")]
InitialAssignment_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3333   public static extern int InitialAssignment_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3334 
3335   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_getElementName")]
InitialAssignment_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3336   public static extern string InitialAssignment_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3337 
3338   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_hasRequiredAttributes")]
InitialAssignment_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3339   public static extern bool InitialAssignment_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3340 
3341   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_hasRequiredElements")]
InitialAssignment_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)3342   public static extern bool InitialAssignment_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
3343 
3344   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_getId")]
InitialAssignment_getId(global::System.Runtime.InteropServices.HandleRef jarg1)3345   public static extern string InitialAssignment_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
3346 
3347   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_renameSIdRefs")]
InitialAssignment_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3348   public static extern void InitialAssignment_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3349 
3350   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_renameUnitSIdRefs")]
InitialAssignment_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3351   public static extern void InitialAssignment_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3352 
3353   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_replaceSIDWithFunction")]
InitialAssignment_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)3354   public static extern void InitialAssignment_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3355 
3356   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_divideAssignmentsToSIdByFunction")]
InitialAssignment_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)3357   public static extern void InitialAssignment_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3358 
3359   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_multiplyAssignmentsToSIdByFunction")]
InitialAssignment_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)3360   public static extern void InitialAssignment_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3361 
3362   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfInitialAssignments__SWIG_0")]
new_ListOfInitialAssignments__SWIG_0(long jarg1, long jarg2)3363   public static extern global::System.IntPtr new_ListOfInitialAssignments__SWIG_0(long jarg1, long jarg2);
3364 
3365   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfInitialAssignments__SWIG_1")]
new_ListOfInitialAssignments__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3366   public static extern global::System.IntPtr new_ListOfInitialAssignments__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3367 
3368   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_clone")]
ListOfInitialAssignments_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3369   public static extern global::System.IntPtr ListOfInitialAssignments_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3370 
3371   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_getItemTypeCode")]
ListOfInitialAssignments_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3372   public static extern int ListOfInitialAssignments_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3373 
3374   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_getElementName")]
ListOfInitialAssignments_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3375   public static extern string ListOfInitialAssignments_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3376 
3377   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_get__SWIG_0")]
ListOfInitialAssignments_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3378   public static extern global::System.IntPtr ListOfInitialAssignments_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3379 
3380   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_get__SWIG_2")]
ListOfInitialAssignments_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3381   public static extern global::System.IntPtr ListOfInitialAssignments_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3382 
3383   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_remove__SWIG_0")]
ListOfInitialAssignments_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3384   public static extern global::System.IntPtr ListOfInitialAssignments_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3385 
3386   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_remove__SWIG_1")]
ListOfInitialAssignments_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3387   public static extern global::System.IntPtr ListOfInitialAssignments_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3388 
3389   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_getElementBySId")]
ListOfInitialAssignments_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3390   public static extern global::System.IntPtr ListOfInitialAssignments_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3391 
3392   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfInitialAssignments")]
delete_ListOfInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1)3393   public static extern void delete_ListOfInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1);
3394 
3395   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Rule")]
delete_Rule(global::System.Runtime.InteropServices.HandleRef jarg1)3396   public static extern void delete_Rule(global::System.Runtime.InteropServices.HandleRef jarg1);
3397 
3398   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Rule")]
new_Rule(global::System.Runtime.InteropServices.HandleRef jarg1)3399   public static extern global::System.IntPtr new_Rule(global::System.Runtime.InteropServices.HandleRef jarg1);
3400 
3401   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_clone")]
Rule_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3402   public static extern global::System.IntPtr Rule_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3403 
3404   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getFormula")]
Rule_getFormula(global::System.Runtime.InteropServices.HandleRef jarg1)3405   public static extern string Rule_getFormula(global::System.Runtime.InteropServices.HandleRef jarg1);
3406 
3407   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getMath")]
Rule_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)3408   public static extern global::System.IntPtr Rule_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3409 
3410   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getVariable")]
Rule_getVariable(global::System.Runtime.InteropServices.HandleRef jarg1)3411   public static extern string Rule_getVariable(global::System.Runtime.InteropServices.HandleRef jarg1);
3412 
3413   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getUnits")]
Rule_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3414   public static extern string Rule_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3415 
3416   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isSetFormula")]
Rule_isSetFormula(global::System.Runtime.InteropServices.HandleRef jarg1)3417   public static extern bool Rule_isSetFormula(global::System.Runtime.InteropServices.HandleRef jarg1);
3418 
3419   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isSetMath")]
Rule_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)3420   public static extern bool Rule_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3421 
3422   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isSetVariable")]
Rule_isSetVariable(global::System.Runtime.InteropServices.HandleRef jarg1)3423   public static extern bool Rule_isSetVariable(global::System.Runtime.InteropServices.HandleRef jarg1);
3424 
3425   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isSetUnits")]
Rule_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3426   public static extern bool Rule_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3427 
3428   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_setFormula")]
Rule_setFormula(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3429   public static extern int Rule_setFormula(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3430 
3431   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_setMath")]
Rule_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3432   public static extern int Rule_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3433 
3434   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_setVariable")]
Rule_setVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3435   public static extern int Rule_setVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3436 
3437   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_setUnits")]
Rule_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3438   public static extern int Rule_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3439 
3440   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_unsetVariable")]
Rule_unsetVariable(global::System.Runtime.InteropServices.HandleRef jarg1)3441   public static extern int Rule_unsetVariable(global::System.Runtime.InteropServices.HandleRef jarg1);
3442 
3443   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_unsetUnits")]
Rule_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3444   public static extern int Rule_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3445 
3446   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getDerivedUnitDefinition__SWIG_0")]
Rule_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3447   public static extern global::System.IntPtr Rule_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3448 
3449   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_containsUndeclaredUnits__SWIG_0")]
Rule_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3450   public static extern bool Rule_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3451 
3452   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getType")]
Rule_getType(global::System.Runtime.InteropServices.HandleRef jarg1)3453   public static extern int Rule_getType(global::System.Runtime.InteropServices.HandleRef jarg1);
3454 
3455   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isAlgebraic")]
Rule_isAlgebraic(global::System.Runtime.InteropServices.HandleRef jarg1)3456   public static extern bool Rule_isAlgebraic(global::System.Runtime.InteropServices.HandleRef jarg1);
3457 
3458   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isAssignment")]
Rule_isAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)3459   public static extern bool Rule_isAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
3460 
3461   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isCompartmentVolume")]
Rule_isCompartmentVolume(global::System.Runtime.InteropServices.HandleRef jarg1)3462   public static extern bool Rule_isCompartmentVolume(global::System.Runtime.InteropServices.HandleRef jarg1);
3463 
3464   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isParameter")]
Rule_isParameter(global::System.Runtime.InteropServices.HandleRef jarg1)3465   public static extern bool Rule_isParameter(global::System.Runtime.InteropServices.HandleRef jarg1);
3466 
3467   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isRate")]
Rule_isRate(global::System.Runtime.InteropServices.HandleRef jarg1)3468   public static extern bool Rule_isRate(global::System.Runtime.InteropServices.HandleRef jarg1);
3469 
3470   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isScalar")]
Rule_isScalar(global::System.Runtime.InteropServices.HandleRef jarg1)3471   public static extern bool Rule_isScalar(global::System.Runtime.InteropServices.HandleRef jarg1);
3472 
3473   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_isSpeciesConcentration")]
Rule_isSpeciesConcentration(global::System.Runtime.InteropServices.HandleRef jarg1)3474   public static extern bool Rule_isSpeciesConcentration(global::System.Runtime.InteropServices.HandleRef jarg1);
3475 
3476   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getTypeCode")]
Rule_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3477   public static extern int Rule_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3478 
3479   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getL1TypeCode")]
Rule_getL1TypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3480   public static extern int Rule_getL1TypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3481 
3482   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getElementName")]
Rule_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3483   public static extern string Rule_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3484 
3485   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_setL1TypeCode")]
Rule_setL1TypeCode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)3486   public static extern int Rule_setL1TypeCode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
3487 
3488   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_hasRequiredElements")]
Rule_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)3489   public static extern bool Rule_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
3490 
3491   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_hasRequiredAttributes")]
Rule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3492   public static extern bool Rule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3493 
3494   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_renameSIdRefs")]
Rule_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3495   public static extern void Rule_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3496 
3497   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_renameUnitSIdRefs")]
Rule_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3498   public static extern void Rule_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3499 
3500   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_getId")]
Rule_getId(global::System.Runtime.InteropServices.HandleRef jarg1)3501   public static extern string Rule_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
3502 
3503   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_replaceSIDWithFunction")]
Rule_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)3504   public static extern void Rule_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3505 
3506   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_divideAssignmentsToSIdByFunction")]
Rule_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)3507   public static extern void Rule_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3508 
3509   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_multiplyAssignmentsToSIdByFunction")]
Rule_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)3510   public static extern void Rule_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3511 
3512   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfRules__SWIG_0")]
new_ListOfRules__SWIG_0(long jarg1, long jarg2)3513   public static extern global::System.IntPtr new_ListOfRules__SWIG_0(long jarg1, long jarg2);
3514 
3515   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfRules__SWIG_1")]
new_ListOfRules__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3516   public static extern global::System.IntPtr new_ListOfRules__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3517 
3518   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_clone")]
ListOfRules_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3519   public static extern global::System.IntPtr ListOfRules_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3520 
3521   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_getItemTypeCode")]
ListOfRules_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3522   public static extern int ListOfRules_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3523 
3524   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_getElementName")]
ListOfRules_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3525   public static extern string ListOfRules_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3526 
3527   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_get__SWIG_0")]
ListOfRules_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3528   public static extern global::System.IntPtr ListOfRules_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3529 
3530   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_get__SWIG_2")]
ListOfRules_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3531   public static extern global::System.IntPtr ListOfRules_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3532 
3533   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_remove__SWIG_0")]
ListOfRules_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3534   public static extern global::System.IntPtr ListOfRules_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3535 
3536   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_getElementBySId")]
ListOfRules_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3537   public static extern global::System.IntPtr ListOfRules_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3538 
3539   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_remove__SWIG_1")]
ListOfRules_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3540   public static extern global::System.IntPtr ListOfRules_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3541 
3542   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfRules")]
delete_ListOfRules(global::System.Runtime.InteropServices.HandleRef jarg1)3543   public static extern void delete_ListOfRules(global::System.Runtime.InteropServices.HandleRef jarg1);
3544 
3545   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_AlgebraicRule__SWIG_0")]
new_AlgebraicRule__SWIG_0(long jarg1, long jarg2)3546   public static extern global::System.IntPtr new_AlgebraicRule__SWIG_0(long jarg1, long jarg2);
3547 
3548   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_AlgebraicRule__SWIG_1")]
new_AlgebraicRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3549   public static extern global::System.IntPtr new_AlgebraicRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3550 
3551   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_AlgebraicRule")]
delete_AlgebraicRule(global::System.Runtime.InteropServices.HandleRef jarg1)3552   public static extern void delete_AlgebraicRule(global::System.Runtime.InteropServices.HandleRef jarg1);
3553 
3554   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_AlgebraicRule_clone")]
AlgebraicRule_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3555   public static extern global::System.IntPtr AlgebraicRule_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3556 
3557   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_AlgebraicRule_hasRequiredAttributes")]
AlgebraicRule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3558   public static extern bool AlgebraicRule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3559 
3560   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_AssignmentRule__SWIG_0")]
new_AssignmentRule__SWIG_0(long jarg1, long jarg2)3561   public static extern global::System.IntPtr new_AssignmentRule__SWIG_0(long jarg1, long jarg2);
3562 
3563   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_AssignmentRule__SWIG_1")]
new_AssignmentRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3564   public static extern global::System.IntPtr new_AssignmentRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3565 
3566   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_AssignmentRule")]
delete_AssignmentRule(global::System.Runtime.InteropServices.HandleRef jarg1)3567   public static extern void delete_AssignmentRule(global::System.Runtime.InteropServices.HandleRef jarg1);
3568 
3569   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_AssignmentRule_clone")]
AssignmentRule_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3570   public static extern global::System.IntPtr AssignmentRule_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3571 
3572   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_AssignmentRule_hasRequiredAttributes")]
AssignmentRule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3573   public static extern bool AssignmentRule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3574 
3575   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_AssignmentRule_renameSIdRefs")]
AssignmentRule_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3576   public static extern void AssignmentRule_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3577 
3578   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_RateRule__SWIG_0")]
new_RateRule__SWIG_0(long jarg1, long jarg2)3579   public static extern global::System.IntPtr new_RateRule__SWIG_0(long jarg1, long jarg2);
3580 
3581   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_RateRule__SWIG_1")]
new_RateRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3582   public static extern global::System.IntPtr new_RateRule__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3583 
3584   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_RateRule")]
delete_RateRule(global::System.Runtime.InteropServices.HandleRef jarg1)3585   public static extern void delete_RateRule(global::System.Runtime.InteropServices.HandleRef jarg1);
3586 
3587   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RateRule_clone")]
RateRule_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3588   public static extern global::System.IntPtr RateRule_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3589 
3590   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RateRule_hasRequiredAttributes")]
RateRule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3591   public static extern bool RateRule_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3592 
3593   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RateRule_renameSIdRefs")]
RateRule_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3594   public static extern void RateRule_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3595 
3596   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Constraint__SWIG_0")]
new_Constraint__SWIG_0(long jarg1, long jarg2)3597   public static extern global::System.IntPtr new_Constraint__SWIG_0(long jarg1, long jarg2);
3598 
3599   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Constraint__SWIG_1")]
new_Constraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3600   public static extern global::System.IntPtr new_Constraint__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3601 
3602   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Constraint")]
delete_Constraint(global::System.Runtime.InteropServices.HandleRef jarg1)3603   public static extern void delete_Constraint(global::System.Runtime.InteropServices.HandleRef jarg1);
3604 
3605   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Constraint__SWIG_2")]
new_Constraint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)3606   public static extern global::System.IntPtr new_Constraint__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3607 
3608   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_clone")]
Constraint_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3609   public static extern global::System.IntPtr Constraint_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3610 
3611   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_getMessage")]
Constraint_getMessage(global::System.Runtime.InteropServices.HandleRef jarg1)3612   public static extern global::System.IntPtr Constraint_getMessage(global::System.Runtime.InteropServices.HandleRef jarg1);
3613 
3614   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_getMessageString")]
Constraint_getMessageString(global::System.Runtime.InteropServices.HandleRef jarg1)3615   public static extern string Constraint_getMessageString(global::System.Runtime.InteropServices.HandleRef jarg1);
3616 
3617   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_getMath")]
Constraint_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)3618   public static extern global::System.IntPtr Constraint_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3619 
3620   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_isSetMessage")]
Constraint_isSetMessage(global::System.Runtime.InteropServices.HandleRef jarg1)3621   public static extern bool Constraint_isSetMessage(global::System.Runtime.InteropServices.HandleRef jarg1);
3622 
3623   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_isSetMath")]
Constraint_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)3624   public static extern bool Constraint_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3625 
3626   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_setMessage__SWIG_0")]
Constraint_setMessage__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3627   public static extern int Constraint_setMessage__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3628 
3629   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_setMessage__SWIG_1")]
Constraint_setMessage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)3630   public static extern int Constraint_setMessage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
3631 
3632   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_setMessage__SWIG_2")]
Constraint_setMessage__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3633   public static extern int Constraint_setMessage__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3634 
3635   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_setMath")]
Constraint_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3636   public static extern int Constraint_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3637 
3638   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_unsetMessage")]
Constraint_unsetMessage(global::System.Runtime.InteropServices.HandleRef jarg1)3639   public static extern int Constraint_unsetMessage(global::System.Runtime.InteropServices.HandleRef jarg1);
3640 
3641   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_renameSIdRefs")]
Constraint_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3642   public static extern void Constraint_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3643 
3644   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_renameUnitSIdRefs")]
Constraint_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3645   public static extern void Constraint_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3646 
3647   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_replaceSIDWithFunction")]
Constraint_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)3648   public static extern void Constraint_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
3649 
3650   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_getTypeCode")]
Constraint_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3651   public static extern int Constraint_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3652 
3653   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_getElementName")]
Constraint_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3654   public static extern string Constraint_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3655 
3656   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_hasRequiredElements")]
Constraint_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)3657   public static extern bool Constraint_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
3658 
3659   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfConstraints__SWIG_0")]
new_ListOfConstraints__SWIG_0(long jarg1, long jarg2)3660   public static extern global::System.IntPtr new_ListOfConstraints__SWIG_0(long jarg1, long jarg2);
3661 
3662   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfConstraints__SWIG_1")]
new_ListOfConstraints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3663   public static extern global::System.IntPtr new_ListOfConstraints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3664 
3665   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfConstraints_clone")]
ListOfConstraints_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3666   public static extern global::System.IntPtr ListOfConstraints_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3667 
3668   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfConstraints_getItemTypeCode")]
ListOfConstraints_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3669   public static extern int ListOfConstraints_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3670 
3671   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfConstraints_getElementName")]
ListOfConstraints_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3672   public static extern string ListOfConstraints_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3673 
3674   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfConstraints_get__SWIG_0")]
ListOfConstraints_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3675   public static extern global::System.IntPtr ListOfConstraints_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3676 
3677   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfConstraints_remove")]
ListOfConstraints_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3678   public static extern global::System.IntPtr ListOfConstraints_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3679 
3680   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfConstraints")]
delete_ListOfConstraints(global::System.Runtime.InteropServices.HandleRef jarg1)3681   public static extern void delete_ListOfConstraints(global::System.Runtime.InteropServices.HandleRef jarg1);
3682 
3683   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Reaction__SWIG_0")]
new_Reaction__SWIG_0(long jarg1, long jarg2)3684   public static extern global::System.IntPtr new_Reaction__SWIG_0(long jarg1, long jarg2);
3685 
3686   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Reaction__SWIG_1")]
new_Reaction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3687   public static extern global::System.IntPtr new_Reaction__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3688 
3689   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Reaction")]
delete_Reaction(global::System.Runtime.InteropServices.HandleRef jarg1)3690   public static extern void delete_Reaction(global::System.Runtime.InteropServices.HandleRef jarg1);
3691 
3692   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Reaction__SWIG_2")]
new_Reaction__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)3693   public static extern global::System.IntPtr new_Reaction__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3694 
3695   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_clone")]
Reaction_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3696   public static extern global::System.IntPtr Reaction_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3697 
3698   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getElementBySId")]
Reaction_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3699   public static extern global::System.IntPtr Reaction_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3700 
3701   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getElementByMetaId")]
Reaction_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3702   public static extern global::System.IntPtr Reaction_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3703 
3704   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_renameSIdRefs")]
Reaction_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)3705   public static extern void Reaction_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
3706 
3707   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_initDefaults")]
Reaction_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1)3708   public static extern void Reaction_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1);
3709 
3710   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getId")]
Reaction_getId(global::System.Runtime.InteropServices.HandleRef jarg1)3711   public static extern string Reaction_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
3712 
3713   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getName")]
Reaction_getName(global::System.Runtime.InteropServices.HandleRef jarg1)3714   public static extern string Reaction_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
3715 
3716   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getKineticLaw__SWIG_0")]
Reaction_getKineticLaw__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3717   public static extern global::System.IntPtr Reaction_getKineticLaw__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3718 
3719   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getReversible")]
Reaction_getReversible(global::System.Runtime.InteropServices.HandleRef jarg1)3720   public static extern bool Reaction_getReversible(global::System.Runtime.InteropServices.HandleRef jarg1);
3721 
3722   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getFast")]
Reaction_getFast(global::System.Runtime.InteropServices.HandleRef jarg1)3723   public static extern bool Reaction_getFast(global::System.Runtime.InteropServices.HandleRef jarg1);
3724 
3725   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getCompartment")]
Reaction_getCompartment(global::System.Runtime.InteropServices.HandleRef jarg1)3726   public static extern string Reaction_getCompartment(global::System.Runtime.InteropServices.HandleRef jarg1);
3727 
3728   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_isSetId")]
Reaction_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)3729   public static extern bool Reaction_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
3730 
3731   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_isSetName")]
Reaction_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)3732   public static extern bool Reaction_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
3733 
3734   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_isSetKineticLaw")]
Reaction_isSetKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1)3735   public static extern bool Reaction_isSetKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1);
3736 
3737   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_isSetFast")]
Reaction_isSetFast(global::System.Runtime.InteropServices.HandleRef jarg1)3738   public static extern bool Reaction_isSetFast(global::System.Runtime.InteropServices.HandleRef jarg1);
3739 
3740   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_isSetCompartment")]
Reaction_isSetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1)3741   public static extern bool Reaction_isSetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1);
3742 
3743   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_isSetReversible")]
Reaction_isSetReversible(global::System.Runtime.InteropServices.HandleRef jarg1)3744   public static extern bool Reaction_isSetReversible(global::System.Runtime.InteropServices.HandleRef jarg1);
3745 
3746   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_setId")]
Reaction_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3747   public static extern int Reaction_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3748 
3749   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_setName")]
Reaction_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3750   public static extern int Reaction_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3751 
3752   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_setKineticLaw")]
Reaction_setKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3753   public static extern int Reaction_setKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3754 
3755   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_setReversible")]
Reaction_setReversible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)3756   public static extern int Reaction_setReversible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3757 
3758   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_setFast")]
Reaction_setFast(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)3759   public static extern int Reaction_setFast(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
3760 
3761   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_setCompartment")]
Reaction_setCompartment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3762   public static extern int Reaction_setCompartment(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3763 
3764   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_unsetName")]
Reaction_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)3765   public static extern int Reaction_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
3766 
3767   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_unsetKineticLaw")]
Reaction_unsetKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1)3768   public static extern int Reaction_unsetKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1);
3769 
3770   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_unsetFast")]
Reaction_unsetFast(global::System.Runtime.InteropServices.HandleRef jarg1)3771   public static extern int Reaction_unsetFast(global::System.Runtime.InteropServices.HandleRef jarg1);
3772 
3773   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_unsetCompartment")]
Reaction_unsetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1)3774   public static extern int Reaction_unsetCompartment(global::System.Runtime.InteropServices.HandleRef jarg1);
3775 
3776   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_unsetReversible")]
Reaction_unsetReversible(global::System.Runtime.InteropServices.HandleRef jarg1)3777   public static extern int Reaction_unsetReversible(global::System.Runtime.InteropServices.HandleRef jarg1);
3778 
3779   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addReactant__SWIG_0")]
Reaction_addReactant__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3780   public static extern int Reaction_addReactant__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3781 
3782   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addReactant__SWIG_1")]
Reaction_addReactant__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4, bool jarg5)3783   public static extern int Reaction_addReactant__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4, bool jarg5);
3784 
3785   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addReactant__SWIG_2")]
Reaction_addReactant__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4)3786   public static extern int Reaction_addReactant__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4);
3787 
3788   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addReactant__SWIG_3")]
Reaction_addReactant__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)3789   public static extern int Reaction_addReactant__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
3790 
3791   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addReactant__SWIG_4")]
Reaction_addReactant__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3792   public static extern int Reaction_addReactant__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3793 
3794   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addProduct__SWIG_0")]
Reaction_addProduct__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3795   public static extern int Reaction_addProduct__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3796 
3797   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addProduct__SWIG_1")]
Reaction_addProduct__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4, bool jarg5)3798   public static extern int Reaction_addProduct__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4, bool jarg5);
3799 
3800   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addProduct__SWIG_2")]
Reaction_addProduct__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4)3801   public static extern int Reaction_addProduct__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3, string jarg4);
3802 
3803   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addProduct__SWIG_3")]
Reaction_addProduct__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)3804   public static extern int Reaction_addProduct__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
3805 
3806   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addProduct__SWIG_4")]
Reaction_addProduct__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3807   public static extern int Reaction_addProduct__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3808 
3809   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addModifier__SWIG_0")]
Reaction_addModifier__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3810   public static extern int Reaction_addModifier__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3811 
3812   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addModifier__SWIG_1")]
Reaction_addModifier__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)3813   public static extern int Reaction_addModifier__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
3814 
3815   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_addModifier__SWIG_2")]
Reaction_addModifier__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3816   public static extern int Reaction_addModifier__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3817 
3818   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_createReactant")]
Reaction_createReactant(global::System.Runtime.InteropServices.HandleRef jarg1)3819   public static extern global::System.IntPtr Reaction_createReactant(global::System.Runtime.InteropServices.HandleRef jarg1);
3820 
3821   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_createProduct")]
Reaction_createProduct(global::System.Runtime.InteropServices.HandleRef jarg1)3822   public static extern global::System.IntPtr Reaction_createProduct(global::System.Runtime.InteropServices.HandleRef jarg1);
3823 
3824   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_createModifier")]
Reaction_createModifier(global::System.Runtime.InteropServices.HandleRef jarg1)3825   public static extern global::System.IntPtr Reaction_createModifier(global::System.Runtime.InteropServices.HandleRef jarg1);
3826 
3827   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_createKineticLaw")]
Reaction_createKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1)3828   public static extern global::System.IntPtr Reaction_createKineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1);
3829 
3830   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getListOfReactants__SWIG_0")]
Reaction_getListOfReactants__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3831   public static extern global::System.IntPtr Reaction_getListOfReactants__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3832 
3833   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getListOfProducts__SWIG_0")]
Reaction_getListOfProducts__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3834   public static extern global::System.IntPtr Reaction_getListOfProducts__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3835 
3836   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getListOfModifiers__SWIG_0")]
Reaction_getListOfModifiers__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)3837   public static extern global::System.IntPtr Reaction_getListOfModifiers__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
3838 
3839   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getReactant__SWIG_0")]
Reaction_getReactant__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3840   public static extern global::System.IntPtr Reaction_getReactant__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3841 
3842   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getReactant__SWIG_2")]
Reaction_getReactant__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3843   public static extern global::System.IntPtr Reaction_getReactant__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3844 
3845   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getProduct__SWIG_0")]
Reaction_getProduct__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3846   public static extern global::System.IntPtr Reaction_getProduct__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3847 
3848   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getProduct__SWIG_2")]
Reaction_getProduct__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3849   public static extern global::System.IntPtr Reaction_getProduct__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3850 
3851   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getModifier__SWIG_0")]
Reaction_getModifier__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3852   public static extern global::System.IntPtr Reaction_getModifier__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3853 
3854   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getModifier__SWIG_2")]
Reaction_getModifier__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3855   public static extern global::System.IntPtr Reaction_getModifier__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3856 
3857   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getNumReactants")]
Reaction_getNumReactants(global::System.Runtime.InteropServices.HandleRef jarg1)3858   public static extern uint Reaction_getNumReactants(global::System.Runtime.InteropServices.HandleRef jarg1);
3859 
3860   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getNumProducts")]
Reaction_getNumProducts(global::System.Runtime.InteropServices.HandleRef jarg1)3861   public static extern uint Reaction_getNumProducts(global::System.Runtime.InteropServices.HandleRef jarg1);
3862 
3863   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getNumModifiers")]
Reaction_getNumModifiers(global::System.Runtime.InteropServices.HandleRef jarg1)3864   public static extern uint Reaction_getNumModifiers(global::System.Runtime.InteropServices.HandleRef jarg1);
3865 
3866   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_removeReactant__SWIG_0")]
Reaction_removeReactant__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3867   public static extern global::System.IntPtr Reaction_removeReactant__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3868 
3869   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_removeReactant__SWIG_1")]
Reaction_removeReactant__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3870   public static extern global::System.IntPtr Reaction_removeReactant__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3871 
3872   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_removeProduct__SWIG_0")]
Reaction_removeProduct__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3873   public static extern global::System.IntPtr Reaction_removeProduct__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3874 
3875   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_removeProduct__SWIG_1")]
Reaction_removeProduct__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3876   public static extern global::System.IntPtr Reaction_removeProduct__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3877 
3878   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_removeModifier__SWIG_0")]
Reaction_removeModifier__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3879   public static extern global::System.IntPtr Reaction_removeModifier__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3880 
3881   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_removeModifier__SWIG_1")]
Reaction_removeModifier__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3882   public static extern global::System.IntPtr Reaction_removeModifier__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3883 
3884   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_connectToChild")]
Reaction_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)3885   public static extern void Reaction_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
3886 
3887   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_enablePackageInternal")]
Reaction_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)3888   public static extern void Reaction_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
3889 
3890   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_updateSBMLNamespace")]
Reaction_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)3891   public static extern void Reaction_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
3892 
3893   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getTypeCode")]
Reaction_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3894   public static extern int Reaction_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3895 
3896   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_getElementName")]
Reaction_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3897   public static extern string Reaction_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3898 
3899   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_hasRequiredAttributes")]
Reaction_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)3900   public static extern bool Reaction_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
3901 
3902   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfReactions__SWIG_0")]
new_ListOfReactions__SWIG_0(long jarg1, long jarg2)3903   public static extern global::System.IntPtr new_ListOfReactions__SWIG_0(long jarg1, long jarg2);
3904 
3905   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfReactions__SWIG_1")]
new_ListOfReactions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3906   public static extern global::System.IntPtr new_ListOfReactions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3907 
3908   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_clone")]
ListOfReactions_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3909   public static extern global::System.IntPtr ListOfReactions_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3910 
3911   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_getItemTypeCode")]
ListOfReactions_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)3912   public static extern int ListOfReactions_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
3913 
3914   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_getElementName")]
ListOfReactions_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)3915   public static extern string ListOfReactions_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
3916 
3917   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_get__SWIG_0")]
ListOfReactions_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3918   public static extern global::System.IntPtr ListOfReactions_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3919 
3920   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_get__SWIG_2")]
ListOfReactions_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3921   public static extern global::System.IntPtr ListOfReactions_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3922 
3923   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_remove__SWIG_0")]
ListOfReactions_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)3924   public static extern global::System.IntPtr ListOfReactions_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
3925 
3926   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_remove__SWIG_1")]
ListOfReactions_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3927   public static extern global::System.IntPtr ListOfReactions_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3928 
3929   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfReactions")]
delete_ListOfReactions(global::System.Runtime.InteropServices.HandleRef jarg1)3930   public static extern void delete_ListOfReactions(global::System.Runtime.InteropServices.HandleRef jarg1);
3931 
3932   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_KineticLaw__SWIG_0")]
new_KineticLaw__SWIG_0(long jarg1, long jarg2)3933   public static extern global::System.IntPtr new_KineticLaw__SWIG_0(long jarg1, long jarg2);
3934 
3935   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_KineticLaw__SWIG_1")]
new_KineticLaw__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)3936   public static extern global::System.IntPtr new_KineticLaw__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
3937 
3938   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_KineticLaw")]
delete_KineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1)3939   public static extern void delete_KineticLaw(global::System.Runtime.InteropServices.HandleRef jarg1);
3940 
3941   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_KineticLaw__SWIG_2")]
new_KineticLaw__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)3942   public static extern global::System.IntPtr new_KineticLaw__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
3943 
3944   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_clone")]
KineticLaw_clone(global::System.Runtime.InteropServices.HandleRef jarg1)3945   public static extern global::System.IntPtr KineticLaw_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
3946 
3947   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getElementBySId")]
KineticLaw_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3948   public static extern global::System.IntPtr KineticLaw_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3949 
3950   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getElementByMetaId")]
KineticLaw_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3951   public static extern global::System.IntPtr KineticLaw_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3952 
3953   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getFormula")]
KineticLaw_getFormula(global::System.Runtime.InteropServices.HandleRef jarg1)3954   public static extern string KineticLaw_getFormula(global::System.Runtime.InteropServices.HandleRef jarg1);
3955 
3956   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getMath")]
KineticLaw_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)3957   public static extern global::System.IntPtr KineticLaw_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3958 
3959   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getTimeUnits")]
KineticLaw_getTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3960   public static extern string KineticLaw_getTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3961 
3962   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getSubstanceUnits")]
KineticLaw_getSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3963   public static extern string KineticLaw_getSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3964 
3965   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_isSetFormula")]
KineticLaw_isSetFormula(global::System.Runtime.InteropServices.HandleRef jarg1)3966   public static extern bool KineticLaw_isSetFormula(global::System.Runtime.InteropServices.HandleRef jarg1);
3967 
3968   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_isSetMath")]
KineticLaw_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)3969   public static extern bool KineticLaw_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
3970 
3971   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_isSetTimeUnits")]
KineticLaw_isSetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3972   public static extern bool KineticLaw_isSetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3973 
3974   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_isSetSubstanceUnits")]
KineticLaw_isSetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3975   public static extern bool KineticLaw_isSetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3976 
3977   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_setFormula")]
KineticLaw_setFormula(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3978   public static extern int KineticLaw_setFormula(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3979 
3980   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_setMath")]
KineticLaw_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3981   public static extern int KineticLaw_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3982 
3983   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_setTimeUnits")]
KineticLaw_setTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3984   public static extern int KineticLaw_setTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3985 
3986   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_setSubstanceUnits")]
KineticLaw_setSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)3987   public static extern int KineticLaw_setSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
3988 
3989   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_unsetTimeUnits")]
KineticLaw_unsetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3990   public static extern int KineticLaw_unsetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3991 
3992   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_unsetSubstanceUnits")]
KineticLaw_unsetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1)3993   public static extern int KineticLaw_unsetSubstanceUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
3994 
3995   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_addParameter")]
KineticLaw_addParameter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3996   public static extern int KineticLaw_addParameter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
3997 
3998   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_addLocalParameter")]
KineticLaw_addLocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)3999   public static extern int KineticLaw_addLocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4000 
4001   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_createParameter")]
KineticLaw_createParameter(global::System.Runtime.InteropServices.HandleRef jarg1)4002   public static extern global::System.IntPtr KineticLaw_createParameter(global::System.Runtime.InteropServices.HandleRef jarg1);
4003 
4004   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_createLocalParameter")]
KineticLaw_createLocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1)4005   public static extern global::System.IntPtr KineticLaw_createLocalParameter(global::System.Runtime.InteropServices.HandleRef jarg1);
4006 
4007   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getListOfParameters__SWIG_0")]
KineticLaw_getListOfParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4008   public static extern global::System.IntPtr KineticLaw_getListOfParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4009 
4010   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getListOfLocalParameters__SWIG_0")]
KineticLaw_getListOfLocalParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4011   public static extern global::System.IntPtr KineticLaw_getListOfLocalParameters__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4012 
4013   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getParameter__SWIG_0")]
KineticLaw_getParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4014   public static extern global::System.IntPtr KineticLaw_getParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4015 
4016   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getLocalParameter__SWIG_0")]
KineticLaw_getLocalParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4017   public static extern global::System.IntPtr KineticLaw_getLocalParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4018 
4019   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getParameter__SWIG_2")]
KineticLaw_getParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4020   public static extern global::System.IntPtr KineticLaw_getParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4021 
4022   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getLocalParameter__SWIG_2")]
KineticLaw_getLocalParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4023   public static extern global::System.IntPtr KineticLaw_getLocalParameter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4024 
4025   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getNumParameters")]
KineticLaw_getNumParameters(global::System.Runtime.InteropServices.HandleRef jarg1)4026   public static extern uint KineticLaw_getNumParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
4027 
4028   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getNumLocalParameters")]
KineticLaw_getNumLocalParameters(global::System.Runtime.InteropServices.HandleRef jarg1)4029   public static extern uint KineticLaw_getNumLocalParameters(global::System.Runtime.InteropServices.HandleRef jarg1);
4030 
4031   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getDerivedUnitDefinition__SWIG_0")]
KineticLaw_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4032   public static extern global::System.IntPtr KineticLaw_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4033 
4034   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_containsUndeclaredUnits__SWIG_0")]
KineticLaw_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4035   public static extern bool KineticLaw_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4036 
4037   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_removeParameter__SWIG_0")]
KineticLaw_removeParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4038   public static extern global::System.IntPtr KineticLaw_removeParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4039 
4040   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_removeLocalParameter__SWIG_0")]
KineticLaw_removeLocalParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4041   public static extern global::System.IntPtr KineticLaw_removeLocalParameter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4042 
4043   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_removeParameter__SWIG_1")]
KineticLaw_removeParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4044   public static extern global::System.IntPtr KineticLaw_removeParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4045 
4046   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_removeLocalParameter__SWIG_1")]
KineticLaw_removeLocalParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4047   public static extern global::System.IntPtr KineticLaw_removeLocalParameter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4048 
4049   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_connectToChild")]
KineticLaw_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)4050   public static extern void KineticLaw_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
4051 
4052   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_enablePackageInternal")]
KineticLaw_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)4053   public static extern void KineticLaw_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
4054 
4055   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_updateSBMLNamespace")]
KineticLaw_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)4056   public static extern void KineticLaw_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
4057 
4058   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getTypeCode")]
KineticLaw_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4059   public static extern int KineticLaw_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4060 
4061   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_getElementName")]
KineticLaw_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4062   public static extern string KineticLaw_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4063 
4064   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_hasRequiredAttributes")]
KineticLaw_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)4065   public static extern bool KineticLaw_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
4066 
4067   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_hasRequiredElements")]
KineticLaw_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)4068   public static extern bool KineticLaw_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
4069 
4070   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_removeFromParentAndDelete")]
KineticLaw_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)4071   public static extern int KineticLaw_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
4072 
4073   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_renameSIdRefs")]
KineticLaw_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4074   public static extern void KineticLaw_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4075 
4076   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_renameUnitSIdRefs")]
KineticLaw_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4077   public static extern void KineticLaw_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4078 
4079   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_replaceSIDWithFunction")]
KineticLaw_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4080   public static extern void KineticLaw_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4081 
4082   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_divideAssignmentsToSIdByFunction")]
KineticLaw_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4083   public static extern void KineticLaw_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4084 
4085   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_multiplyAssignmentsToSIdByFunction")]
KineticLaw_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4086   public static extern void KineticLaw_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4087 
4088   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SimpleSpeciesReference")]
delete_SimpleSpeciesReference(global::System.Runtime.InteropServices.HandleRef jarg1)4089   public static extern void delete_SimpleSpeciesReference(global::System.Runtime.InteropServices.HandleRef jarg1);
4090 
4091   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_getId")]
SimpleSpeciesReference_getId(global::System.Runtime.InteropServices.HandleRef jarg1)4092   public static extern string SimpleSpeciesReference_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
4093 
4094   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_getName")]
SimpleSpeciesReference_getName(global::System.Runtime.InteropServices.HandleRef jarg1)4095   public static extern string SimpleSpeciesReference_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
4096 
4097   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_getSpecies")]
SimpleSpeciesReference_getSpecies(global::System.Runtime.InteropServices.HandleRef jarg1)4098   public static extern string SimpleSpeciesReference_getSpecies(global::System.Runtime.InteropServices.HandleRef jarg1);
4099 
4100   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_isSetId")]
SimpleSpeciesReference_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)4101   public static extern bool SimpleSpeciesReference_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
4102 
4103   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_isSetName")]
SimpleSpeciesReference_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)4104   public static extern bool SimpleSpeciesReference_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
4105 
4106   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_isSetSpecies")]
SimpleSpeciesReference_isSetSpecies(global::System.Runtime.InteropServices.HandleRef jarg1)4107   public static extern bool SimpleSpeciesReference_isSetSpecies(global::System.Runtime.InteropServices.HandleRef jarg1);
4108 
4109   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_setSpecies")]
SimpleSpeciesReference_setSpecies(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4110   public static extern int SimpleSpeciesReference_setSpecies(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4111 
4112   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_setId")]
SimpleSpeciesReference_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4113   public static extern int SimpleSpeciesReference_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4114 
4115   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_setName")]
SimpleSpeciesReference_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4116   public static extern int SimpleSpeciesReference_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4117 
4118   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_unsetId")]
SimpleSpeciesReference_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1)4119   public static extern int SimpleSpeciesReference_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1);
4120 
4121   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_unsetName")]
SimpleSpeciesReference_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)4122   public static extern int SimpleSpeciesReference_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
4123 
4124   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_unsetSpecies")]
SimpleSpeciesReference_unsetSpecies(global::System.Runtime.InteropServices.HandleRef jarg1)4125   public static extern int SimpleSpeciesReference_unsetSpecies(global::System.Runtime.InteropServices.HandleRef jarg1);
4126 
4127   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_isModifier")]
SimpleSpeciesReference_isModifier(global::System.Runtime.InteropServices.HandleRef jarg1)4128   public static extern bool SimpleSpeciesReference_isModifier(global::System.Runtime.InteropServices.HandleRef jarg1);
4129 
4130   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_renameSIdRefs")]
SimpleSpeciesReference_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4131   public static extern void SimpleSpeciesReference_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4132 
4133   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SpeciesReference__SWIG_0")]
new_SpeciesReference__SWIG_0(long jarg1, long jarg2)4134   public static extern global::System.IntPtr new_SpeciesReference__SWIG_0(long jarg1, long jarg2);
4135 
4136   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SpeciesReference__SWIG_1")]
new_SpeciesReference__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4137   public static extern global::System.IntPtr new_SpeciesReference__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4138 
4139   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SpeciesReference")]
delete_SpeciesReference(global::System.Runtime.InteropServices.HandleRef jarg1)4140   public static extern void delete_SpeciesReference(global::System.Runtime.InteropServices.HandleRef jarg1);
4141 
4142   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SpeciesReference__SWIG_2")]
new_SpeciesReference__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)4143   public static extern global::System.IntPtr new_SpeciesReference__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
4144 
4145   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_clone")]
SpeciesReference_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4146   public static extern global::System.IntPtr SpeciesReference_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4147 
4148   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_initDefaults")]
SpeciesReference_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1)4149   public static extern void SpeciesReference_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1);
4150 
4151   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_getStoichiometry")]
SpeciesReference_getStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1)4152   public static extern double SpeciesReference_getStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1);
4153 
4154   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_getStoichiometryMath__SWIG_0")]
SpeciesReference_getStoichiometryMath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4155   public static extern global::System.IntPtr SpeciesReference_getStoichiometryMath__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4156 
4157   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_getDenominator")]
SpeciesReference_getDenominator(global::System.Runtime.InteropServices.HandleRef jarg1)4158   public static extern int SpeciesReference_getDenominator(global::System.Runtime.InteropServices.HandleRef jarg1);
4159 
4160   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_getConstant")]
SpeciesReference_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1)4161   public static extern bool SpeciesReference_getConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
4162 
4163   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_isSetStoichiometryMath")]
SpeciesReference_isSetStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1)4164   public static extern bool SpeciesReference_isSetStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4165 
4166   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_isSetConstant")]
SpeciesReference_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)4167   public static extern bool SpeciesReference_isSetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
4168 
4169   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_isSetStoichiometry")]
SpeciesReference_isSetStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1)4170   public static extern bool SpeciesReference_isSetStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1);
4171 
4172   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_setStoichiometry")]
SpeciesReference_setStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)4173   public static extern int SpeciesReference_setStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
4174 
4175   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_setStoichiometryMath")]
SpeciesReference_setStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4176   public static extern int SpeciesReference_setStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4177 
4178   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_setDenominator")]
SpeciesReference_setDenominator(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)4179   public static extern int SpeciesReference_setDenominator(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
4180 
4181   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_setConstant")]
SpeciesReference_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)4182   public static extern int SpeciesReference_setConstant(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4183 
4184   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_unsetStoichiometryMath")]
SpeciesReference_unsetStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1)4185   public static extern int SpeciesReference_unsetStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4186 
4187   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_unsetStoichiometry")]
SpeciesReference_unsetStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1)4188   public static extern int SpeciesReference_unsetStoichiometry(global::System.Runtime.InteropServices.HandleRef jarg1);
4189 
4190   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_unsetConstant")]
SpeciesReference_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1)4191   public static extern int SpeciesReference_unsetConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
4192 
4193   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_createStoichiometryMath")]
SpeciesReference_createStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1)4194   public static extern global::System.IntPtr SpeciesReference_createStoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4195 
4196   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_setAnnotation__SWIG_0")]
SpeciesReference_setAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4197   public static extern int SpeciesReference_setAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4198 
4199   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_setAnnotation__SWIG_1")]
SpeciesReference_setAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4200   public static extern int SpeciesReference_setAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4201 
4202   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_appendAnnotation__SWIG_0")]
SpeciesReference_appendAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4203   public static extern int SpeciesReference_appendAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4204 
4205   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_appendAnnotation__SWIG_1")]
SpeciesReference_appendAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4206   public static extern int SpeciesReference_appendAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4207 
4208   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_getTypeCode")]
SpeciesReference_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4209   public static extern int SpeciesReference_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4210 
4211   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_getElementName")]
SpeciesReference_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4212   public static extern string SpeciesReference_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4213 
4214   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_hasRequiredAttributes")]
SpeciesReference_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)4215   public static extern bool SpeciesReference_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
4216 
4217   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfSpeciesReferences__SWIG_0")]
new_ListOfSpeciesReferences__SWIG_0(long jarg1, long jarg2)4218   public static extern global::System.IntPtr new_ListOfSpeciesReferences__SWIG_0(long jarg1, long jarg2);
4219 
4220   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfSpeciesReferences__SWIG_1")]
new_ListOfSpeciesReferences__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4221   public static extern global::System.IntPtr new_ListOfSpeciesReferences__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4222 
4223   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_clone")]
ListOfSpeciesReferences_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4224   public static extern global::System.IntPtr ListOfSpeciesReferences_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4225 
4226   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_getItemTypeCode")]
ListOfSpeciesReferences_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4227   public static extern int ListOfSpeciesReferences_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4228 
4229   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_getElementName")]
ListOfSpeciesReferences_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4230   public static extern string ListOfSpeciesReferences_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4231 
4232   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_get__SWIG_0")]
ListOfSpeciesReferences_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4233   public static extern global::System.IntPtr ListOfSpeciesReferences_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4234 
4235   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_get__SWIG_2")]
ListOfSpeciesReferences_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4236   public static extern global::System.IntPtr ListOfSpeciesReferences_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4237 
4238   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_remove__SWIG_0")]
ListOfSpeciesReferences_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4239   public static extern global::System.IntPtr ListOfSpeciesReferences_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4240 
4241   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_remove__SWIG_1")]
ListOfSpeciesReferences_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4242   public static extern global::System.IntPtr ListOfSpeciesReferences_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4243 
4244   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_getType")]
ListOfSpeciesReferences_getType(global::System.Runtime.InteropServices.HandleRef jarg1)4245   public static extern uint ListOfSpeciesReferences_getType(global::System.Runtime.InteropServices.HandleRef jarg1);
4246 
4247   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfSpeciesReferences")]
delete_ListOfSpeciesReferences(global::System.Runtime.InteropServices.HandleRef jarg1)4248   public static extern void delete_ListOfSpeciesReferences(global::System.Runtime.InteropServices.HandleRef jarg1);
4249 
4250   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModifierSpeciesReference__SWIG_0")]
new_ModifierSpeciesReference__SWIG_0(long jarg1, long jarg2)4251   public static extern global::System.IntPtr new_ModifierSpeciesReference__SWIG_0(long jarg1, long jarg2);
4252 
4253   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModifierSpeciesReference__SWIG_1")]
new_ModifierSpeciesReference__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4254   public static extern global::System.IntPtr new_ModifierSpeciesReference__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4255 
4256   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ModifierSpeciesReference")]
delete_ModifierSpeciesReference(global::System.Runtime.InteropServices.HandleRef jarg1)4257   public static extern void delete_ModifierSpeciesReference(global::System.Runtime.InteropServices.HandleRef jarg1);
4258 
4259   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModifierSpeciesReference_clone")]
ModifierSpeciesReference_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4260   public static extern global::System.IntPtr ModifierSpeciesReference_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4261 
4262   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModifierSpeciesReference_getTypeCode")]
ModifierSpeciesReference_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4263   public static extern int ModifierSpeciesReference_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4264 
4265   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModifierSpeciesReference_getElementName")]
ModifierSpeciesReference_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4266   public static extern string ModifierSpeciesReference_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4267 
4268   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModifierSpeciesReference_hasRequiredAttributes")]
ModifierSpeciesReference_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)4269   public static extern bool ModifierSpeciesReference_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
4270 
4271   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Event__SWIG_0")]
new_Event__SWIG_0(long jarg1, long jarg2)4272   public static extern global::System.IntPtr new_Event__SWIG_0(long jarg1, long jarg2);
4273 
4274   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Event__SWIG_1")]
new_Event__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4275   public static extern global::System.IntPtr new_Event__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4276 
4277   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Event")]
delete_Event(global::System.Runtime.InteropServices.HandleRef jarg1)4278   public static extern void delete_Event(global::System.Runtime.InteropServices.HandleRef jarg1);
4279 
4280   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Event__SWIG_2")]
new_Event__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)4281   public static extern global::System.IntPtr new_Event__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
4282 
4283   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_clone")]
Event_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4284   public static extern global::System.IntPtr Event_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4285 
4286   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_initDefaults")]
Event_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1)4287   public static extern void Event_initDefaults(global::System.Runtime.InteropServices.HandleRef jarg1);
4288 
4289   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getElementBySId")]
Event_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4290   public static extern global::System.IntPtr Event_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4291 
4292   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getElementByMetaId")]
Event_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4293   public static extern global::System.IntPtr Event_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4294 
4295   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getId")]
Event_getId(global::System.Runtime.InteropServices.HandleRef jarg1)4296   public static extern string Event_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
4297 
4298   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getName")]
Event_getName(global::System.Runtime.InteropServices.HandleRef jarg1)4299   public static extern string Event_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
4300 
4301   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getTrigger__SWIG_0")]
Event_getTrigger__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4302   public static extern global::System.IntPtr Event_getTrigger__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4303 
4304   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getDelay__SWIG_0")]
Event_getDelay__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4305   public static extern global::System.IntPtr Event_getDelay__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4306 
4307   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getPriority__SWIG_0")]
Event_getPriority__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4308   public static extern global::System.IntPtr Event_getPriority__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4309 
4310   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getTimeUnits")]
Event_getTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)4311   public static extern string Event_getTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
4312 
4313   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getUseValuesFromTriggerTime")]
Event_getUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1)4314   public static extern bool Event_getUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1);
4315 
4316   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_isSetId")]
Event_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)4317   public static extern bool Event_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
4318 
4319   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_isSetName")]
Event_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)4320   public static extern bool Event_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
4321 
4322   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_isSetTrigger")]
Event_isSetTrigger(global::System.Runtime.InteropServices.HandleRef jarg1)4323   public static extern bool Event_isSetTrigger(global::System.Runtime.InteropServices.HandleRef jarg1);
4324 
4325   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_isSetDelay")]
Event_isSetDelay(global::System.Runtime.InteropServices.HandleRef jarg1)4326   public static extern bool Event_isSetDelay(global::System.Runtime.InteropServices.HandleRef jarg1);
4327 
4328   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_isSetPriority")]
Event_isSetPriority(global::System.Runtime.InteropServices.HandleRef jarg1)4329   public static extern bool Event_isSetPriority(global::System.Runtime.InteropServices.HandleRef jarg1);
4330 
4331   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_isSetTimeUnits")]
Event_isSetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)4332   public static extern bool Event_isSetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
4333 
4334   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_isSetUseValuesFromTriggerTime")]
Event_isSetUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1)4335   public static extern bool Event_isSetUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1);
4336 
4337   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_setId")]
Event_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4338   public static extern int Event_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4339 
4340   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_setName")]
Event_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4341   public static extern int Event_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4342 
4343   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_setTrigger")]
Event_setTrigger(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4344   public static extern int Event_setTrigger(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4345 
4346   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_setDelay")]
Event_setDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4347   public static extern int Event_setDelay(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4348 
4349   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_setPriority")]
Event_setPriority(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4350   public static extern int Event_setPriority(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4351 
4352   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_setTimeUnits")]
Event_setTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4353   public static extern int Event_setTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4354 
4355   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_setUseValuesFromTriggerTime")]
Event_setUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)4356   public static extern int Event_setUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4357 
4358   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_unsetId")]
Event_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1)4359   public static extern int Event_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1);
4360 
4361   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_unsetName")]
Event_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)4362   public static extern int Event_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
4363 
4364   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_unsetUseValuesFromTriggerTime")]
Event_unsetUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1)4365   public static extern int Event_unsetUseValuesFromTriggerTime(global::System.Runtime.InteropServices.HandleRef jarg1);
4366 
4367   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_unsetDelay")]
Event_unsetDelay(global::System.Runtime.InteropServices.HandleRef jarg1)4368   public static extern int Event_unsetDelay(global::System.Runtime.InteropServices.HandleRef jarg1);
4369 
4370   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_unsetPriority")]
Event_unsetPriority(global::System.Runtime.InteropServices.HandleRef jarg1)4371   public static extern int Event_unsetPriority(global::System.Runtime.InteropServices.HandleRef jarg1);
4372 
4373   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_unsetTrigger")]
Event_unsetTrigger(global::System.Runtime.InteropServices.HandleRef jarg1)4374   public static extern int Event_unsetTrigger(global::System.Runtime.InteropServices.HandleRef jarg1);
4375 
4376   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_unsetTimeUnits")]
Event_unsetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1)4377   public static extern int Event_unsetTimeUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
4378 
4379   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_addEventAssignment")]
Event_addEventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4380   public static extern int Event_addEventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4381 
4382   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_createEventAssignment")]
Event_createEventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)4383   public static extern global::System.IntPtr Event_createEventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
4384 
4385   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_createTrigger")]
Event_createTrigger(global::System.Runtime.InteropServices.HandleRef jarg1)4386   public static extern global::System.IntPtr Event_createTrigger(global::System.Runtime.InteropServices.HandleRef jarg1);
4387 
4388   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_createDelay")]
Event_createDelay(global::System.Runtime.InteropServices.HandleRef jarg1)4389   public static extern global::System.IntPtr Event_createDelay(global::System.Runtime.InteropServices.HandleRef jarg1);
4390 
4391   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_createPriority")]
Event_createPriority(global::System.Runtime.InteropServices.HandleRef jarg1)4392   public static extern global::System.IntPtr Event_createPriority(global::System.Runtime.InteropServices.HandleRef jarg1);
4393 
4394   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getListOfEventAssignments__SWIG_0")]
Event_getListOfEventAssignments__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4395   public static extern global::System.IntPtr Event_getListOfEventAssignments__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4396 
4397   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getEventAssignment__SWIG_0")]
Event_getEventAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4398   public static extern global::System.IntPtr Event_getEventAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4399 
4400   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getEventAssignment__SWIG_2")]
Event_getEventAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4401   public static extern global::System.IntPtr Event_getEventAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4402 
4403   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getNumEventAssignments")]
Event_getNumEventAssignments(global::System.Runtime.InteropServices.HandleRef jarg1)4404   public static extern uint Event_getNumEventAssignments(global::System.Runtime.InteropServices.HandleRef jarg1);
4405 
4406   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_removeEventAssignment__SWIG_0")]
Event_removeEventAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4407   public static extern global::System.IntPtr Event_removeEventAssignment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4408 
4409   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_removeEventAssignment__SWIG_1")]
Event_removeEventAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4410   public static extern global::System.IntPtr Event_removeEventAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4411 
4412   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_connectToChild")]
Event_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1)4413   public static extern void Event_connectToChild(global::System.Runtime.InteropServices.HandleRef jarg1);
4414 
4415   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_enablePackageInternal")]
Event_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)4416   public static extern void Event_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
4417 
4418   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_updateSBMLNamespace")]
Event_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)4419   public static extern void Event_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
4420 
4421   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getTypeCode")]
Event_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4422   public static extern int Event_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4423 
4424   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_getElementName")]
Event_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4425   public static extern string Event_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4426 
4427   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_hasRequiredAttributes")]
Event_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)4428   public static extern bool Event_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
4429 
4430   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_hasRequiredElements")]
Event_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)4431   public static extern bool Event_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
4432 
4433   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfEvents__SWIG_0")]
new_ListOfEvents__SWIG_0(long jarg1, long jarg2)4434   public static extern global::System.IntPtr new_ListOfEvents__SWIG_0(long jarg1, long jarg2);
4435 
4436   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfEvents__SWIG_1")]
new_ListOfEvents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4437   public static extern global::System.IntPtr new_ListOfEvents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4438 
4439   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_clone")]
ListOfEvents_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4440   public static extern global::System.IntPtr ListOfEvents_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4441 
4442   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_getItemTypeCode")]
ListOfEvents_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4443   public static extern int ListOfEvents_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4444 
4445   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_getElementName")]
ListOfEvents_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4446   public static extern string ListOfEvents_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4447 
4448   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_get__SWIG_0")]
ListOfEvents_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4449   public static extern global::System.IntPtr ListOfEvents_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4450 
4451   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_get__SWIG_2")]
ListOfEvents_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4452   public static extern global::System.IntPtr ListOfEvents_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4453 
4454   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_remove__SWIG_0")]
ListOfEvents_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4455   public static extern global::System.IntPtr ListOfEvents_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4456 
4457   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_remove__SWIG_1")]
ListOfEvents_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4458   public static extern global::System.IntPtr ListOfEvents_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4459 
4460   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfEvents")]
delete_ListOfEvents(global::System.Runtime.InteropServices.HandleRef jarg1)4461   public static extern void delete_ListOfEvents(global::System.Runtime.InteropServices.HandleRef jarg1);
4462 
4463   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_EventAssignment__SWIG_0")]
new_EventAssignment__SWIG_0(long jarg1, long jarg2)4464   public static extern global::System.IntPtr new_EventAssignment__SWIG_0(long jarg1, long jarg2);
4465 
4466   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_EventAssignment__SWIG_1")]
new_EventAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4467   public static extern global::System.IntPtr new_EventAssignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4468 
4469   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_EventAssignment")]
delete_EventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1)4470   public static extern void delete_EventAssignment(global::System.Runtime.InteropServices.HandleRef jarg1);
4471 
4472   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_EventAssignment__SWIG_2")]
new_EventAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)4473   public static extern global::System.IntPtr new_EventAssignment__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
4474 
4475   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_clone")]
EventAssignment_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4476   public static extern global::System.IntPtr EventAssignment_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4477 
4478   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_getVariable")]
EventAssignment_getVariable(global::System.Runtime.InteropServices.HandleRef jarg1)4479   public static extern string EventAssignment_getVariable(global::System.Runtime.InteropServices.HandleRef jarg1);
4480 
4481   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_getMath")]
EventAssignment_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)4482   public static extern global::System.IntPtr EventAssignment_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4483 
4484   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_isSetVariable")]
EventAssignment_isSetVariable(global::System.Runtime.InteropServices.HandleRef jarg1)4485   public static extern bool EventAssignment_isSetVariable(global::System.Runtime.InteropServices.HandleRef jarg1);
4486 
4487   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_isSetMath")]
EventAssignment_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)4488   public static extern bool EventAssignment_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4489 
4490   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_setVariable")]
EventAssignment_setVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4491   public static extern int EventAssignment_setVariable(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4492 
4493   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_unsetVariable")]
EventAssignment_unsetVariable(global::System.Runtime.InteropServices.HandleRef jarg1)4494   public static extern int EventAssignment_unsetVariable(global::System.Runtime.InteropServices.HandleRef jarg1);
4495 
4496   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_setMath")]
EventAssignment_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4497   public static extern int EventAssignment_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4498 
4499   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_getDerivedUnitDefinition__SWIG_0")]
EventAssignment_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4500   public static extern global::System.IntPtr EventAssignment_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4501 
4502   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_containsUndeclaredUnits__SWIG_0")]
EventAssignment_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4503   public static extern bool EventAssignment_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4504 
4505   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_getTypeCode")]
EventAssignment_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4506   public static extern int EventAssignment_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4507 
4508   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_getElementName")]
EventAssignment_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4509   public static extern string EventAssignment_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4510 
4511   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_hasRequiredAttributes")]
EventAssignment_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)4512   public static extern bool EventAssignment_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
4513 
4514   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_hasRequiredElements")]
EventAssignment_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)4515   public static extern bool EventAssignment_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
4516 
4517   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_getId")]
EventAssignment_getId(global::System.Runtime.InteropServices.HandleRef jarg1)4518   public static extern string EventAssignment_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
4519 
4520   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_renameSIdRefs")]
EventAssignment_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4521   public static extern void EventAssignment_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4522 
4523   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_renameUnitSIdRefs")]
EventAssignment_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4524   public static extern void EventAssignment_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4525 
4526   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_replaceSIDWithFunction")]
EventAssignment_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4527   public static extern void EventAssignment_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4528 
4529   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_divideAssignmentsToSIdByFunction")]
EventAssignment_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4530   public static extern void EventAssignment_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4531 
4532   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_multiplyAssignmentsToSIdByFunction")]
EventAssignment_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4533   public static extern void EventAssignment_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4534 
4535   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfEventAssignments__SWIG_0")]
new_ListOfEventAssignments__SWIG_0(long jarg1, long jarg2)4536   public static extern global::System.IntPtr new_ListOfEventAssignments__SWIG_0(long jarg1, long jarg2);
4537 
4538   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ListOfEventAssignments__SWIG_1")]
new_ListOfEventAssignments__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4539   public static extern global::System.IntPtr new_ListOfEventAssignments__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4540 
4541   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_clone")]
ListOfEventAssignments_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4542   public static extern global::System.IntPtr ListOfEventAssignments_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4543 
4544   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_getItemTypeCode")]
ListOfEventAssignments_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4545   public static extern int ListOfEventAssignments_getItemTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4546 
4547   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_getElementName")]
ListOfEventAssignments_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4548   public static extern string ListOfEventAssignments_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4549 
4550   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_get__SWIG_0")]
ListOfEventAssignments_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4551   public static extern global::System.IntPtr ListOfEventAssignments_get__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4552 
4553   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_get__SWIG_2")]
ListOfEventAssignments_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4554   public static extern global::System.IntPtr ListOfEventAssignments_get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4555 
4556   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_remove__SWIG_0")]
ListOfEventAssignments_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)4557   public static extern global::System.IntPtr ListOfEventAssignments_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
4558 
4559   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_remove__SWIG_1")]
ListOfEventAssignments_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4560   public static extern global::System.IntPtr ListOfEventAssignments_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4561 
4562   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_getElementBySId")]
ListOfEventAssignments_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4563   public static extern global::System.IntPtr ListOfEventAssignments_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4564 
4565   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ListOfEventAssignments")]
delete_ListOfEventAssignments(global::System.Runtime.InteropServices.HandleRef jarg1)4566   public static extern void delete_ListOfEventAssignments(global::System.Runtime.InteropServices.HandleRef jarg1);
4567 
4568   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Trigger__SWIG_0")]
new_Trigger__SWIG_0(long jarg1, long jarg2)4569   public static extern global::System.IntPtr new_Trigger__SWIG_0(long jarg1, long jarg2);
4570 
4571   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Trigger__SWIG_1")]
new_Trigger__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4572   public static extern global::System.IntPtr new_Trigger__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4573 
4574   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Trigger")]
delete_Trigger(global::System.Runtime.InteropServices.HandleRef jarg1)4575   public static extern void delete_Trigger(global::System.Runtime.InteropServices.HandleRef jarg1);
4576 
4577   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Trigger__SWIG_2")]
new_Trigger__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)4578   public static extern global::System.IntPtr new_Trigger__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
4579 
4580   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_clone")]
Trigger_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4581   public static extern global::System.IntPtr Trigger_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4582 
4583   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_getMath")]
Trigger_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)4584   public static extern global::System.IntPtr Trigger_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4585 
4586   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_getInitialValue")]
Trigger_getInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1)4587   public static extern bool Trigger_getInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1);
4588 
4589   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_getPersistent")]
Trigger_getPersistent(global::System.Runtime.InteropServices.HandleRef jarg1)4590   public static extern bool Trigger_getPersistent(global::System.Runtime.InteropServices.HandleRef jarg1);
4591 
4592   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_isSetMath")]
Trigger_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)4593   public static extern bool Trigger_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4594 
4595   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_isSetInitialValue")]
Trigger_isSetInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1)4596   public static extern bool Trigger_isSetInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1);
4597 
4598   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_isSetPersistent")]
Trigger_isSetPersistent(global::System.Runtime.InteropServices.HandleRef jarg1)4599   public static extern bool Trigger_isSetPersistent(global::System.Runtime.InteropServices.HandleRef jarg1);
4600 
4601   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_setMath")]
Trigger_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4602   public static extern int Trigger_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4603 
4604   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_setInitialValue")]
Trigger_setInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)4605   public static extern int Trigger_setInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4606 
4607   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_setPersistent")]
Trigger_setPersistent(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)4608   public static extern int Trigger_setPersistent(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
4609 
4610   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_unsetInitialValue")]
Trigger_unsetInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1)4611   public static extern int Trigger_unsetInitialValue(global::System.Runtime.InteropServices.HandleRef jarg1);
4612 
4613   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_unsetPersistent")]
Trigger_unsetPersistent(global::System.Runtime.InteropServices.HandleRef jarg1)4614   public static extern int Trigger_unsetPersistent(global::System.Runtime.InteropServices.HandleRef jarg1);
4615 
4616   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_getTypeCode")]
Trigger_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4617   public static extern int Trigger_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4618 
4619   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_getElementName")]
Trigger_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4620   public static extern string Trigger_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4621 
4622   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_renameSIdRefs")]
Trigger_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4623   public static extern void Trigger_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4624 
4625   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_renameUnitSIdRefs")]
Trigger_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4626   public static extern void Trigger_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4627 
4628   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_replaceSIDWithFunction")]
Trigger_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4629   public static extern void Trigger_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4630 
4631   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_hasRequiredElements")]
Trigger_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)4632   public static extern bool Trigger_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
4633 
4634   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_hasRequiredAttributes")]
Trigger_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)4635   public static extern bool Trigger_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
4636 
4637   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_removeFromParentAndDelete")]
Trigger_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)4638   public static extern int Trigger_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
4639 
4640   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Delay__SWIG_0")]
new_Delay__SWIG_0(long jarg1, long jarg2)4641   public static extern global::System.IntPtr new_Delay__SWIG_0(long jarg1, long jarg2);
4642 
4643   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Delay__SWIG_1")]
new_Delay__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4644   public static extern global::System.IntPtr new_Delay__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4645 
4646   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Delay")]
delete_Delay(global::System.Runtime.InteropServices.HandleRef jarg1)4647   public static extern void delete_Delay(global::System.Runtime.InteropServices.HandleRef jarg1);
4648 
4649   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Delay__SWIG_2")]
new_Delay__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)4650   public static extern global::System.IntPtr new_Delay__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
4651 
4652   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_clone")]
Delay_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4653   public static extern global::System.IntPtr Delay_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4654 
4655   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_getMath")]
Delay_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)4656   public static extern global::System.IntPtr Delay_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4657 
4658   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_isSetMath")]
Delay_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)4659   public static extern bool Delay_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4660 
4661   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_setMath")]
Delay_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4662   public static extern int Delay_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4663 
4664   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_getDerivedUnitDefinition__SWIG_0")]
Delay_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4665   public static extern global::System.IntPtr Delay_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4666 
4667   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_containsUndeclaredUnits__SWIG_0")]
Delay_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4668   public static extern bool Delay_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4669 
4670   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_getTypeCode")]
Delay_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4671   public static extern int Delay_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4672 
4673   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_getElementName")]
Delay_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4674   public static extern string Delay_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4675 
4676   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_hasRequiredElements")]
Delay_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)4677   public static extern bool Delay_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
4678 
4679   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_removeFromParentAndDelete")]
Delay_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)4680   public static extern int Delay_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
4681 
4682   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_renameSIdRefs")]
Delay_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4683   public static extern void Delay_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4684 
4685   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_renameUnitSIdRefs")]
Delay_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4686   public static extern void Delay_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4687 
4688   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_replaceSIDWithFunction")]
Delay_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4689   public static extern void Delay_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4690 
4691   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Priority__SWIG_0")]
new_Priority__SWIG_0(long jarg1, long jarg2)4692   public static extern global::System.IntPtr new_Priority__SWIG_0(long jarg1, long jarg2);
4693 
4694   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Priority__SWIG_1")]
new_Priority__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4695   public static extern global::System.IntPtr new_Priority__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4696 
4697   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Priority")]
delete_Priority(global::System.Runtime.InteropServices.HandleRef jarg1)4698   public static extern void delete_Priority(global::System.Runtime.InteropServices.HandleRef jarg1);
4699 
4700   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Priority__SWIG_2")]
new_Priority__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)4701   public static extern global::System.IntPtr new_Priority__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
4702 
4703   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_clone")]
Priority_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4704   public static extern global::System.IntPtr Priority_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4705 
4706   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_getMath")]
Priority_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)4707   public static extern global::System.IntPtr Priority_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4708 
4709   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_isSetMath")]
Priority_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)4710   public static extern bool Priority_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4711 
4712   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_setMath")]
Priority_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4713   public static extern int Priority_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4714 
4715   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_getTypeCode")]
Priority_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4716   public static extern int Priority_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4717 
4718   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_getElementName")]
Priority_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4719   public static extern string Priority_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4720 
4721   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_hasRequiredElements")]
Priority_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)4722   public static extern bool Priority_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
4723 
4724   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_removeFromParentAndDelete")]
Priority_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)4725   public static extern int Priority_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
4726 
4727   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_renameSIdRefs")]
Priority_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4728   public static extern void Priority_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4729 
4730   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_renameUnitSIdRefs")]
Priority_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4731   public static extern void Priority_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4732 
4733   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_replaceSIDWithFunction")]
Priority_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4734   public static extern void Priority_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4735 
4736   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isQuantitativeParameter")]
SBO_isQuantitativeParameter(long jarg1)4737   public static extern bool SBO_isQuantitativeParameter(long jarg1);
4738 
4739   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isParticipantRole")]
SBO_isParticipantRole(long jarg1)4740   public static extern bool SBO_isParticipantRole(long jarg1);
4741 
4742   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isModellingFramework")]
SBO_isModellingFramework(long jarg1)4743   public static extern bool SBO_isModellingFramework(long jarg1);
4744 
4745   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isMathematicalExpression")]
SBO_isMathematicalExpression(long jarg1)4746   public static extern bool SBO_isMathematicalExpression(long jarg1);
4747 
4748   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isKineticConstant")]
SBO_isKineticConstant(long jarg1)4749   public static extern bool SBO_isKineticConstant(long jarg1);
4750 
4751   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isReactant")]
SBO_isReactant(long jarg1)4752   public static extern bool SBO_isReactant(long jarg1);
4753 
4754   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isProduct")]
SBO_isProduct(long jarg1)4755   public static extern bool SBO_isProduct(long jarg1);
4756 
4757   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isModifier")]
SBO_isModifier(long jarg1)4758   public static extern bool SBO_isModifier(long jarg1);
4759 
4760   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isRateLaw")]
SBO_isRateLaw(long jarg1)4761   public static extern bool SBO_isRateLaw(long jarg1);
4762 
4763   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isEvent")]
SBO_isEvent(long jarg1)4764   public static extern bool SBO_isEvent(long jarg1);
4765 
4766   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isPhysicalParticipant")]
SBO_isPhysicalParticipant(long jarg1)4767   public static extern bool SBO_isPhysicalParticipant(long jarg1);
4768 
4769   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isParticipant")]
SBO_isParticipant(long jarg1)4770   public static extern bool SBO_isParticipant(long jarg1);
4771 
4772   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isInteraction")]
SBO_isInteraction(long jarg1)4773   public static extern bool SBO_isInteraction(long jarg1);
4774 
4775   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isEntity")]
SBO_isEntity(long jarg1)4776   public static extern bool SBO_isEntity(long jarg1);
4777 
4778   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isFunctionalEntity")]
SBO_isFunctionalEntity(long jarg1)4779   public static extern bool SBO_isFunctionalEntity(long jarg1);
4780 
4781   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isMaterialEntity")]
SBO_isMaterialEntity(long jarg1)4782   public static extern bool SBO_isMaterialEntity(long jarg1);
4783 
4784   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isConservationLaw")]
SBO_isConservationLaw(long jarg1)4785   public static extern bool SBO_isConservationLaw(long jarg1);
4786 
4787   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isSteadyStateExpression")]
SBO_isSteadyStateExpression(long jarg1)4788   public static extern bool SBO_isSteadyStateExpression(long jarg1);
4789 
4790   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isFunctionalCompartment")]
SBO_isFunctionalCompartment(long jarg1)4791   public static extern bool SBO_isFunctionalCompartment(long jarg1);
4792 
4793   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isContinuousFramework")]
SBO_isContinuousFramework(long jarg1)4794   public static extern bool SBO_isContinuousFramework(long jarg1);
4795 
4796   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isDiscreteFramework")]
SBO_isDiscreteFramework(long jarg1)4797   public static extern bool SBO_isDiscreteFramework(long jarg1);
4798 
4799   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isLogicalFramework")]
SBO_isLogicalFramework(long jarg1)4800   public static extern bool SBO_isLogicalFramework(long jarg1);
4801 
4802   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isMetadataRepresentation")]
SBO_isMetadataRepresentation(long jarg1)4803   public static extern bool SBO_isMetadataRepresentation(long jarg1);
4804 
4805   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isOccurringEntityRepresentation")]
SBO_isOccurringEntityRepresentation(long jarg1)4806   public static extern bool SBO_isOccurringEntityRepresentation(long jarg1);
4807 
4808   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isPhysicalEntityRepresentation")]
SBO_isPhysicalEntityRepresentation(long jarg1)4809   public static extern bool SBO_isPhysicalEntityRepresentation(long jarg1);
4810 
4811   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isSystemsDescriptionParameter")]
SBO_isSystemsDescriptionParameter(long jarg1)4812   public static extern bool SBO_isSystemsDescriptionParameter(long jarg1);
4813 
4814   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isQuantitativeSystemsDescriptionParameter")]
SBO_isQuantitativeSystemsDescriptionParameter(long jarg1)4815   public static extern bool SBO_isQuantitativeSystemsDescriptionParameter(long jarg1);
4816 
4817   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_isObselete")]
SBO_isObselete(long jarg1)4818   public static extern bool SBO_isObselete(long jarg1);
4819 
4820   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_intToString")]
SBO_intToString(int jarg1)4821   public static extern string SBO_intToString(int jarg1);
4822 
4823   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_stringToInt")]
SBO_stringToInt(string jarg1)4824   public static extern int SBO_stringToInt(string jarg1);
4825 
4826   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_checkTerm__SWIG_0")]
SBO_checkTerm__SWIG_0(string jarg1)4827   public static extern bool SBO_checkTerm__SWIG_0(string jarg1);
4828 
4829   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_checkTerm__SWIG_1")]
SBO_checkTerm__SWIG_1(int jarg1)4830   public static extern bool SBO_checkTerm__SWIG_1(int jarg1);
4831 
4832   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBO_getParentBranch")]
SBO_getParentBranch(long jarg1)4833   public static extern uint SBO_getParentBranch(long jarg1);
4834 
4835   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBO")]
new_SBO()4836   public static extern global::System.IntPtr new_SBO();
4837 
4838   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBO")]
delete_SBO(global::System.Runtime.InteropServices.HandleRef jarg1)4839   public static extern void delete_SBO(global::System.Runtime.InteropServices.HandleRef jarg1);
4840 
4841   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_isValidSBMLSId")]
SyntaxChecker_isValidSBMLSId(string jarg1)4842   public static extern bool SyntaxChecker_isValidSBMLSId(string jarg1);
4843 
4844   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_isValidXMLID")]
SyntaxChecker_isValidXMLID(string jarg1)4845   public static extern bool SyntaxChecker_isValidXMLID(string jarg1);
4846 
4847   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_isValidXMLanyURI")]
SyntaxChecker_isValidXMLanyURI(string jarg1)4848   public static extern bool SyntaxChecker_isValidXMLanyURI(string jarg1);
4849 
4850   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_isValidUnitSId")]
SyntaxChecker_isValidUnitSId(string jarg1)4851   public static extern bool SyntaxChecker_isValidUnitSId(string jarg1);
4852 
4853   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_hasExpectedXHTMLSyntax__SWIG_0")]
SyntaxChecker_hasExpectedXHTMLSyntax__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4854   public static extern bool SyntaxChecker_hasExpectedXHTMLSyntax__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4855 
4856   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_hasExpectedXHTMLSyntax__SWIG_1")]
SyntaxChecker_hasExpectedXHTMLSyntax__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4857   public static extern bool SyntaxChecker_hasExpectedXHTMLSyntax__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4858 
4859   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_isValidInternalSId")]
SyntaxChecker_isValidInternalSId(string jarg1)4860   public static extern bool SyntaxChecker_isValidInternalSId(string jarg1);
4861 
4862   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SyntaxChecker_isValidInternalUnitSId")]
SyntaxChecker_isValidInternalUnitSId(string jarg1)4863   public static extern bool SyntaxChecker_isValidInternalUnitSId(string jarg1);
4864 
4865   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SyntaxChecker")]
new_SyntaxChecker()4866   public static extern global::System.IntPtr new_SyntaxChecker();
4867 
4868   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SyntaxChecker")]
delete_SyntaxChecker(global::System.Runtime.InteropServices.HandleRef jarg1)4869   public static extern void delete_SyntaxChecker(global::System.Runtime.InteropServices.HandleRef jarg1);
4870 
4871   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_StoichiometryMath__SWIG_0")]
new_StoichiometryMath__SWIG_0(long jarg1, long jarg2)4872   public static extern global::System.IntPtr new_StoichiometryMath__SWIG_0(long jarg1, long jarg2);
4873 
4874   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_StoichiometryMath__SWIG_1")]
new_StoichiometryMath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)4875   public static extern global::System.IntPtr new_StoichiometryMath__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
4876 
4877   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_StoichiometryMath")]
delete_StoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1)4878   public static extern void delete_StoichiometryMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4879 
4880   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_StoichiometryMath__SWIG_2")]
new_StoichiometryMath__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)4881   public static extern global::System.IntPtr new_StoichiometryMath__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
4882 
4883   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_clone")]
StoichiometryMath_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4884   public static extern global::System.IntPtr StoichiometryMath_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4885 
4886   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_getMath")]
StoichiometryMath_getMath(global::System.Runtime.InteropServices.HandleRef jarg1)4887   public static extern global::System.IntPtr StoichiometryMath_getMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4888 
4889   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_isSetMath")]
StoichiometryMath_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1)4890   public static extern bool StoichiometryMath_isSetMath(global::System.Runtime.InteropServices.HandleRef jarg1);
4891 
4892   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_setMath")]
StoichiometryMath_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4893   public static extern int StoichiometryMath_setMath(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4894 
4895   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_getDerivedUnitDefinition__SWIG_0")]
StoichiometryMath_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4896   public static extern global::System.IntPtr StoichiometryMath_getDerivedUnitDefinition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4897 
4898   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_containsUndeclaredUnits__SWIG_0")]
StoichiometryMath_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4899   public static extern bool StoichiometryMath_containsUndeclaredUnits__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4900 
4901   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_getTypeCode")]
StoichiometryMath_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)4902   public static extern int StoichiometryMath_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
4903 
4904   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_getElementName")]
StoichiometryMath_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)4905   public static extern string StoichiometryMath_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
4906 
4907   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_hasRequiredElements")]
StoichiometryMath_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1)4908   public static extern bool StoichiometryMath_hasRequiredElements(global::System.Runtime.InteropServices.HandleRef jarg1);
4909 
4910   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_removeFromParentAndDelete")]
StoichiometryMath_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1)4911   public static extern int StoichiometryMath_removeFromParentAndDelete(global::System.Runtime.InteropServices.HandleRef jarg1);
4912 
4913   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_renameSIdRefs")]
StoichiometryMath_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4914   public static extern void StoichiometryMath_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4915 
4916   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_renameUnitSIdRefs")]
StoichiometryMath_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4917   public static extern void StoichiometryMath_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4918 
4919   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_replaceSIDWithFunction")]
StoichiometryMath_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)4920   public static extern void StoichiometryMath_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
4921 
4922   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLNamespaces__SWIG_0")]
new_SBMLNamespaces__SWIG_0(long jarg1, long jarg2)4923   public static extern global::System.IntPtr new_SBMLNamespaces__SWIG_0(long jarg1, long jarg2);
4924 
4925   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLNamespaces__SWIG_1")]
new_SBMLNamespaces__SWIG_1(long jarg1)4926   public static extern global::System.IntPtr new_SBMLNamespaces__SWIG_1(long jarg1);
4927 
4928   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLNamespaces__SWIG_2")]
new_SBMLNamespaces__SWIG_2()4929   public static extern global::System.IntPtr new_SBMLNamespaces__SWIG_2();
4930 
4931   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLNamespaces__SWIG_3")]
new_SBMLNamespaces__SWIG_3(long jarg1, long jarg2, string jarg3, long jarg4, string jarg5)4932   public static extern global::System.IntPtr new_SBMLNamespaces__SWIG_3(long jarg1, long jarg2, string jarg3, long jarg4, string jarg5);
4933 
4934   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLNamespaces__SWIG_4")]
new_SBMLNamespaces__SWIG_4(long jarg1, long jarg2, string jarg3, long jarg4)4935   public static extern global::System.IntPtr new_SBMLNamespaces__SWIG_4(long jarg1, long jarg2, string jarg3, long jarg4);
4936 
4937   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLNamespaces")]
delete_SBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)4938   public static extern void delete_SBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
4939 
4940   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLNamespaces__SWIG_5")]
new_SBMLNamespaces__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1)4941   public static extern global::System.IntPtr new_SBMLNamespaces__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1);
4942 
4943   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_clone")]
SBMLNamespaces_clone(global::System.Runtime.InteropServices.HandleRef jarg1)4944   public static extern global::System.IntPtr SBMLNamespaces_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
4945 
4946   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_getSBMLNamespaceURI")]
SBMLNamespaces_getSBMLNamespaceURI(long jarg1, long jarg2)4947   public static extern string SBMLNamespaces_getSBMLNamespaceURI(long jarg1, long jarg2);
4948 
4949   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_getSupportedNamespaces")]
SBMLNamespaces_getSupportedNamespaces()4950   public static extern global::System.IntPtr SBMLNamespaces_getSupportedNamespaces();
4951 
4952   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_freeSBMLNamespaces")]
SBMLNamespaces_freeSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)4953   public static extern void SBMLNamespaces_freeSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
4954 
4955   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_getURI")]
SBMLNamespaces_getURI(global::System.Runtime.InteropServices.HandleRef jarg1)4956   public static extern string SBMLNamespaces_getURI(global::System.Runtime.InteropServices.HandleRef jarg1);
4957 
4958   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_getLevel__SWIG_0")]
SBMLNamespaces_getLevel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4959   public static extern uint SBMLNamespaces_getLevel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4960 
4961   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_getVersion__SWIG_0")]
SBMLNamespaces_getVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4962   public static extern uint SBMLNamespaces_getVersion__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4963 
4964   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_getNamespaces__SWIG_0")]
SBMLNamespaces_getNamespaces__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)4965   public static extern global::System.IntPtr SBMLNamespaces_getNamespaces__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
4966 
4967   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addNamespaces")]
SBMLNamespaces_addNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4968   public static extern int SBMLNamespaces_addNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4969 
4970   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addNamespace")]
SBMLNamespaces_addNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)4971   public static extern int SBMLNamespaces_addNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
4972 
4973   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_removeNamespace")]
SBMLNamespaces_removeNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)4974   public static extern int SBMLNamespaces_removeNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
4975 
4976   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addPackageNamespace__SWIG_0")]
SBMLNamespaces_addPackageNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, string jarg4)4977   public static extern int SBMLNamespaces_addPackageNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, string jarg4);
4978 
4979   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addPackageNamespace__SWIG_1")]
SBMLNamespaces_addPackageNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3)4980   public static extern int SBMLNamespaces_addPackageNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3);
4981 
4982   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addPackageNamespaces")]
SBMLNamespaces_addPackageNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4983   public static extern int SBMLNamespaces_addPackageNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4984 
4985   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_removePackageNamespace")]
SBMLNamespaces_removePackageNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4, long jarg5)4986   public static extern int SBMLNamespaces_removePackageNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4, long jarg5);
4987 
4988   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addPkgNamespace__SWIG_0")]
SBMLNamespaces_addPkgNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, string jarg4)4989   public static extern int SBMLNamespaces_addPkgNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, string jarg4);
4990 
4991   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addPkgNamespace__SWIG_1")]
SBMLNamespaces_addPkgNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3)4992   public static extern int SBMLNamespaces_addPkgNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3);
4993 
4994   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_addPkgNamespaces")]
SBMLNamespaces_addPkgNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)4995   public static extern int SBMLNamespaces_addPkgNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
4996 
4997   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_removePkgNamespace")]
SBMLNamespaces_removePkgNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4, long jarg5)4998   public static extern int SBMLNamespaces_removePkgNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4, long jarg5);
4999 
5000   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_isSBMLNamespace")]
SBMLNamespaces_isSBMLNamespace(string jarg1)5001   public static extern bool SBMLNamespaces_isSBMLNamespace(string jarg1);
5002 
5003   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_isValidCombination")]
SBMLNamespaces_isValidCombination(global::System.Runtime.InteropServices.HandleRef jarg1)5004   public static extern bool SBMLNamespaces_isValidCombination(global::System.Runtime.InteropServices.HandleRef jarg1);
5005 
5006   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_setLevel")]
SBMLNamespaces_setLevel(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)5007   public static extern void SBMLNamespaces_setLevel(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5008 
5009   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_setVersion")]
SBMLNamespaces_setVersion(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)5010   public static extern void SBMLNamespaces_setVersion(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5011 
5012   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_setNamespaces")]
SBMLNamespaces_setNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5013   public static extern void SBMLNamespaces_setNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5014 
5015   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLNamespaces_getPackageName")]
SBMLNamespaces_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1)5016   public static extern string SBMLNamespaces_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1);
5017 
5018   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_replaceFD__SWIG_0")]
SBMLTransforms_replaceFD__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)5019   public static extern void SBMLTransforms_replaceFD__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5020 
5021   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_replaceFD__SWIG_1")]
SBMLTransforms_replaceFD__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5022   public static extern void SBMLTransforms_replaceFD__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5023 
5024   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_replaceFD__SWIG_2")]
SBMLTransforms_replaceFD__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)5025   public static extern void SBMLTransforms_replaceFD__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5026 
5027   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_replaceFD__SWIG_3")]
SBMLTransforms_replaceFD__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5028   public static extern void SBMLTransforms_replaceFD__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5029 
5030   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_expandInitialAssignments")]
SBMLTransforms_expandInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1)5031   public static extern bool SBMLTransforms_expandInitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1);
5032 
5033   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_evaluateASTNode__SWIG_0")]
SBMLTransforms_evaluateASTNode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5034   public static extern double SBMLTransforms_evaluateASTNode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5035 
5036   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_evaluateASTNode__SWIG_1")]
SBMLTransforms_evaluateASTNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5037   public static extern double SBMLTransforms_evaluateASTNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5038 
5039   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_expandL3V2InitialAssignments")]
SBMLTransforms_expandL3V2InitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1)5040   public static extern bool SBMLTransforms_expandL3V2InitialAssignments(global::System.Runtime.InteropServices.HandleRef jarg1);
5041 
5042   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_mapComponentValues")]
SBMLTransforms_mapComponentValues(global::System.Runtime.InteropServices.HandleRef jarg1)5043   public static extern global::System.IntPtr SBMLTransforms_mapComponentValues(global::System.Runtime.InteropServices.HandleRef jarg1);
5044 
5045   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_clearComponentValues")]
SBMLTransforms_clearComponentValues()5046   public static extern void SBMLTransforms_clearComponentValues();
5047 
5048   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLTransforms_nodeContainsId")]
SBMLTransforms_nodeContainsId(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5049   public static extern bool SBMLTransforms_nodeContainsId(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5050 
5051   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLTransforms")]
new_SBMLTransforms()5052   public static extern global::System.IntPtr new_SBMLTransforms();
5053 
5054   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLTransforms")]
delete_SBMLTransforms(global::System.Runtime.InteropServices.HandleRef jarg1)5055   public static extern void delete_SBMLTransforms(global::System.Runtime.InteropServices.HandleRef jarg1);
5056 
5057   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLConstructorException__SWIG_0")]
new_SBMLConstructorException__SWIG_0()5058   public static extern global::System.IntPtr new_SBMLConstructorException__SWIG_0();
5059 
5060   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLConstructorException__SWIG_1")]
new_SBMLConstructorException__SWIG_1(string jarg1, string jarg2)5061   public static extern global::System.IntPtr new_SBMLConstructorException__SWIG_1(string jarg1, string jarg2);
5062 
5063   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLConstructorException__SWIG_2")]
new_SBMLConstructorException__SWIG_2(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5064   public static extern global::System.IntPtr new_SBMLConstructorException__SWIG_2(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5065 
5066   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLConstructorException")]
delete_SBMLConstructorException(global::System.Runtime.InteropServices.HandleRef jarg1)5067   public static extern void delete_SBMLConstructorException(global::System.Runtime.InteropServices.HandleRef jarg1);
5068 
5069   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConstructorException_getSBMLErrMsg")]
SBMLConstructorException_getSBMLErrMsg(global::System.Runtime.InteropServices.HandleRef jarg1)5070   public static extern string SBMLConstructorException_getSBMLErrMsg(global::System.Runtime.InteropServices.HandleRef jarg1);
5071 
5072   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_0")]
new_ConversionOption__SWIG_0(string jarg1, string jarg2, int jarg3, string jarg4)5073   public static extern global::System.IntPtr new_ConversionOption__SWIG_0(string jarg1, string jarg2, int jarg3, string jarg4);
5074 
5075   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_1")]
new_ConversionOption__SWIG_1(string jarg1, string jarg2, int jarg3)5076   public static extern global::System.IntPtr new_ConversionOption__SWIG_1(string jarg1, string jarg2, int jarg3);
5077 
5078   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_2")]
new_ConversionOption__SWIG_2(string jarg1, string jarg2)5079   public static extern global::System.IntPtr new_ConversionOption__SWIG_2(string jarg1, string jarg2);
5080 
5081   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_3")]
new_ConversionOption__SWIG_3(string jarg1)5082   public static extern global::System.IntPtr new_ConversionOption__SWIG_3(string jarg1);
5083 
5084   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_4")]
new_ConversionOption__SWIG_4(string jarg1, string jarg2, string jarg3)5085   public static extern global::System.IntPtr new_ConversionOption__SWIG_4(string jarg1, string jarg2, string jarg3);
5086 
5087   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_6")]
new_ConversionOption__SWIG_6(string jarg1, bool jarg2, string jarg3)5088   public static extern global::System.IntPtr new_ConversionOption__SWIG_6(string jarg1, bool jarg2, string jarg3);
5089 
5090   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_7")]
new_ConversionOption__SWIG_7(string jarg1, bool jarg2)5091   public static extern global::System.IntPtr new_ConversionOption__SWIG_7(string jarg1, bool jarg2);
5092 
5093   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_8")]
new_ConversionOption__SWIG_8(string jarg1, double jarg2, string jarg3)5094   public static extern global::System.IntPtr new_ConversionOption__SWIG_8(string jarg1, double jarg2, string jarg3);
5095 
5096   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_9")]
new_ConversionOption__SWIG_9(string jarg1, double jarg2)5097   public static extern global::System.IntPtr new_ConversionOption__SWIG_9(string jarg1, double jarg2);
5098 
5099   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_10")]
new_ConversionOption__SWIG_10(string jarg1, float jarg2, string jarg3)5100   public static extern global::System.IntPtr new_ConversionOption__SWIG_10(string jarg1, float jarg2, string jarg3);
5101 
5102   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_11")]
new_ConversionOption__SWIG_11(string jarg1, float jarg2)5103   public static extern global::System.IntPtr new_ConversionOption__SWIG_11(string jarg1, float jarg2);
5104 
5105   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_12")]
new_ConversionOption__SWIG_12(string jarg1, int jarg2, string jarg3)5106   public static extern global::System.IntPtr new_ConversionOption__SWIG_12(string jarg1, int jarg2, string jarg3);
5107 
5108   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_13")]
new_ConversionOption__SWIG_13(string jarg1, int jarg2)5109   public static extern global::System.IntPtr new_ConversionOption__SWIG_13(string jarg1, int jarg2);
5110 
5111   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionOption__SWIG_14")]
new_ConversionOption__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1)5112   public static extern global::System.IntPtr new_ConversionOption__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1);
5113 
5114   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ConversionOption")]
delete_ConversionOption(global::System.Runtime.InteropServices.HandleRef jarg1)5115   public static extern void delete_ConversionOption(global::System.Runtime.InteropServices.HandleRef jarg1);
5116 
5117   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_clone")]
ConversionOption_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5118   public static extern global::System.IntPtr ConversionOption_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5119 
5120   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getKey")]
ConversionOption_getKey(global::System.Runtime.InteropServices.HandleRef jarg1)5121   public static extern string ConversionOption_getKey(global::System.Runtime.InteropServices.HandleRef jarg1);
5122 
5123   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setKey")]
ConversionOption_setKey(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5124   public static extern void ConversionOption_setKey(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5125 
5126   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getValue")]
ConversionOption_getValue(global::System.Runtime.InteropServices.HandleRef jarg1)5127   public static extern string ConversionOption_getValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5128 
5129   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setValue")]
ConversionOption_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5130   public static extern void ConversionOption_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5131 
5132   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getDescription")]
ConversionOption_getDescription(global::System.Runtime.InteropServices.HandleRef jarg1)5133   public static extern string ConversionOption_getDescription(global::System.Runtime.InteropServices.HandleRef jarg1);
5134 
5135   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setDescription")]
ConversionOption_setDescription(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5136   public static extern void ConversionOption_setDescription(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5137 
5138   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getType")]
ConversionOption_getType(global::System.Runtime.InteropServices.HandleRef jarg1)5139   public static extern int ConversionOption_getType(global::System.Runtime.InteropServices.HandleRef jarg1);
5140 
5141   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setType")]
ConversionOption_setType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5142   public static extern void ConversionOption_setType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5143 
5144   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getBoolValue")]
ConversionOption_getBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1)5145   public static extern bool ConversionOption_getBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5146 
5147   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setBoolValue")]
ConversionOption_setBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)5148   public static extern void ConversionOption_setBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
5149 
5150   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getDoubleValue")]
ConversionOption_getDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1)5151   public static extern double ConversionOption_getDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5152 
5153   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setDoubleValue")]
ConversionOption_setDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)5154   public static extern void ConversionOption_setDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
5155 
5156   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getFloatValue")]
ConversionOption_getFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1)5157   public static extern float ConversionOption_getFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5158 
5159   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setFloatValue")]
ConversionOption_setFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2)5160   public static extern void ConversionOption_setFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2);
5161 
5162   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_getIntValue")]
ConversionOption_getIntValue(global::System.Runtime.InteropServices.HandleRef jarg1)5163   public static extern int ConversionOption_getIntValue(global::System.Runtime.InteropServices.HandleRef jarg1);
5164 
5165   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionOption_setIntValue")]
ConversionOption_setIntValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5166   public static extern void ConversionOption_setIntValue(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5167 
5168   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionProperties__SWIG_0")]
new_ConversionProperties__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5169   public static extern global::System.IntPtr new_ConversionProperties__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5170 
5171   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionProperties__SWIG_1")]
new_ConversionProperties__SWIG_1()5172   public static extern global::System.IntPtr new_ConversionProperties__SWIG_1();
5173 
5174   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ConversionProperties__SWIG_2")]
new_ConversionProperties__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)5175   public static extern global::System.IntPtr new_ConversionProperties__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
5176 
5177   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_clone")]
ConversionProperties_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5178   public static extern global::System.IntPtr ConversionProperties_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5179 
5180   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ConversionProperties")]
delete_ConversionProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5181   public static extern void delete_ConversionProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5182 
5183   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getTargetNamespaces")]
ConversionProperties_getTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)5184   public static extern global::System.IntPtr ConversionProperties_getTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
5185 
5186   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_hasTargetNamespaces")]
ConversionProperties_hasTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)5187   public static extern bool ConversionProperties_hasTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
5188 
5189   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_setTargetNamespaces")]
ConversionProperties_setTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5190   public static extern void ConversionProperties_setTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5191 
5192   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getDescription")]
ConversionProperties_getDescription(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5193   public static extern string ConversionProperties_getDescription(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5194 
5195   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getType")]
ConversionProperties_getType(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5196   public static extern int ConversionProperties_getType(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5197 
5198   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getOption__SWIG_0")]
ConversionProperties_getOption__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5199   public static extern global::System.IntPtr ConversionProperties_getOption__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5200 
5201   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getOption__SWIG_1")]
ConversionProperties_getOption__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5202   public static extern global::System.IntPtr ConversionProperties_getOption__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5203 
5204   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_0")]
ConversionProperties_addOption__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5205   public static extern void ConversionProperties_addOption__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5206 
5207   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_1")]
ConversionProperties_addOption__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, string jarg5)5208   public static extern void ConversionProperties_addOption__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4, string jarg5);
5209 
5210   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_2")]
ConversionProperties_addOption__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)5211   public static extern void ConversionProperties_addOption__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
5212 
5213   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_3")]
ConversionProperties_addOption__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5214   public static extern void ConversionProperties_addOption__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5215 
5216   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_4")]
ConversionProperties_addOption__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5217   public static extern void ConversionProperties_addOption__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5218 
5219   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_5")]
ConversionProperties_addOption__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)5220   public static extern void ConversionProperties_addOption__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
5221 
5222   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_7")]
ConversionProperties_addOption__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, string jarg4)5223   public static extern void ConversionProperties_addOption__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, string jarg4);
5224 
5225   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_8")]
ConversionProperties_addOption__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)5226   public static extern void ConversionProperties_addOption__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
5227 
5228   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_9")]
ConversionProperties_addOption__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3, string jarg4)5229   public static extern void ConversionProperties_addOption__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3, string jarg4);
5230 
5231   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_10")]
ConversionProperties_addOption__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3)5232   public static extern void ConversionProperties_addOption__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3);
5233 
5234   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_11")]
ConversionProperties_addOption__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, float jarg3, string jarg4)5235   public static extern void ConversionProperties_addOption__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, float jarg3, string jarg4);
5236 
5237   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_12")]
ConversionProperties_addOption__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, float jarg3)5238   public static extern void ConversionProperties_addOption__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, float jarg3);
5239 
5240   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_13")]
ConversionProperties_addOption__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, string jarg4)5241   public static extern void ConversionProperties_addOption__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, string jarg4);
5242 
5243   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_addOption__SWIG_14")]
ConversionProperties_addOption__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)5244   public static extern void ConversionProperties_addOption__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
5245 
5246   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_removeOption")]
ConversionProperties_removeOption(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5247   public static extern global::System.IntPtr ConversionProperties_removeOption(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5248 
5249   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_hasOption")]
ConversionProperties_hasOption(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5250   public static extern bool ConversionProperties_hasOption(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5251 
5252   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getValue")]
ConversionProperties_getValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5253   public static extern string ConversionProperties_getValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5254 
5255   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_setValue")]
ConversionProperties_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5256   public static extern void ConversionProperties_setValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5257 
5258   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getBoolValue")]
ConversionProperties_getBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5259   public static extern bool ConversionProperties_getBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5260 
5261   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_setBoolValue")]
ConversionProperties_setBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)5262   public static extern void ConversionProperties_setBoolValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
5263 
5264   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getDoubleValue")]
ConversionProperties_getDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5265   public static extern double ConversionProperties_getDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5266 
5267   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_setDoubleValue")]
ConversionProperties_setDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3)5268   public static extern void ConversionProperties_setDoubleValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3);
5269 
5270   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getFloatValue")]
ConversionProperties_getFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5271   public static extern float ConversionProperties_getFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5272 
5273   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_setFloatValue")]
ConversionProperties_setFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, float jarg3)5274   public static extern void ConversionProperties_setFloatValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, float jarg3);
5275 
5276   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getIntValue")]
ConversionProperties_getIntValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5277   public static extern int ConversionProperties_getIntValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5278 
5279   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_setIntValue")]
ConversionProperties_setIntValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)5280   public static extern void ConversionProperties_setIntValue(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
5281 
5282   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ConversionProperties_getNumOptions")]
ConversionProperties_getNumOptions(global::System.Runtime.InteropServices.HandleRef jarg1)5283   public static extern int ConversionProperties_getNumOptions(global::System.Runtime.InteropServices.HandleRef jarg1);
5284 
5285   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLConverter__SWIG_0")]
new_SBMLConverter__SWIG_0()5286   public static extern global::System.IntPtr new_SBMLConverter__SWIG_0();
5287 
5288   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLConverter__SWIG_1")]
new_SBMLConverter__SWIG_1(string jarg1)5289   public static extern global::System.IntPtr new_SBMLConverter__SWIG_1(string jarg1);
5290 
5291   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLConverter__SWIG_2")]
new_SBMLConverter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)5292   public static extern global::System.IntPtr new_SBMLConverter__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
5293 
5294   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLConverter")]
delete_SBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5295   public static extern void delete_SBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5296 
5297   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_clone")]
SBMLConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5298   public static extern global::System.IntPtr SBMLConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5299 
5300   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_cloneSwigExplicitSBMLConverter")]
SBMLConverter_cloneSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5301   public static extern global::System.IntPtr SBMLConverter_cloneSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5302 
5303   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getDocument__SWIG_0")]
SBMLConverter_getDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5304   public static extern global::System.IntPtr SBMLConverter_getDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5305 
5306   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getDocumentSwigExplicitSBMLConverter__SWIG_0")]
SBMLConverter_getDocumentSwigExplicitSBMLConverter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5307   public static extern global::System.IntPtr SBMLConverter_getDocumentSwigExplicitSBMLConverter__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5308 
5309   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getDocumentSwigExplicitSBMLConverter__SWIG_1")]
SBMLConverter_getDocumentSwigExplicitSBMLConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5310   public static extern global::System.IntPtr SBMLConverter_getDocumentSwigExplicitSBMLConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5311 
5312   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getDefaultProperties")]
SBMLConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5313   public static extern global::System.IntPtr SBMLConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5314 
5315   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getDefaultPropertiesSwigExplicitSBMLConverter")]
SBMLConverter_getDefaultPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5316   public static extern global::System.IntPtr SBMLConverter_getDefaultPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5317 
5318   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getTargetNamespaces")]
SBMLConverter_getTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)5319   public static extern global::System.IntPtr SBMLConverter_getTargetNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
5320 
5321   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getTargetNamespacesSwigExplicitSBMLConverter")]
SBMLConverter_getTargetNamespacesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5322   public static extern global::System.IntPtr SBMLConverter_getTargetNamespacesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5323 
5324   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_matchesProperties")]
SBMLConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5325   public static extern bool SBMLConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5326 
5327   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_matchesPropertiesSwigExplicitSBMLConverter")]
SBMLConverter_matchesPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5328   public static extern bool SBMLConverter_matchesPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5329 
5330   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_setDocument")]
SBMLConverter_setDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5331   public static extern int SBMLConverter_setDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5332 
5333   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_setDocumentSwigExplicitSBMLConverter")]
SBMLConverter_setDocumentSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5334   public static extern int SBMLConverter_setDocumentSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5335 
5336   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_setProperties")]
SBMLConverter_setProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5337   public static extern int SBMLConverter_setProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5338 
5339   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_setPropertiesSwigExplicitSBMLConverter")]
SBMLConverter_setPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5340   public static extern int SBMLConverter_setPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5341 
5342   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getProperties")]
SBMLConverter_getProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5343   public static extern global::System.IntPtr SBMLConverter_getProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5344 
5345   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getPropertiesSwigExplicitSBMLConverter")]
SBMLConverter_getPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5346   public static extern global::System.IntPtr SBMLConverter_getPropertiesSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5347 
5348   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_convert")]
SBMLConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5349   public static extern int SBMLConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5350 
5351   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_convertSwigExplicitSBMLConverter")]
SBMLConverter_convertSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5352   public static extern int SBMLConverter_convertSwigExplicitSBMLConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5353 
5354   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_getName")]
SBMLConverter_getName(global::System.Runtime.InteropServices.HandleRef jarg1)5355   public static extern string SBMLConverter_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
5356 
5357   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverter_director_connect")]
SBMLConverter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SBMLConverter.SwigDelegateSBMLConverter_0 delegate0, SBMLConverter.SwigDelegateSBMLConverter_1 delegate1, SBMLConverter.SwigDelegateSBMLConverter_2 delegate2, SBMLConverter.SwigDelegateSBMLConverter_3 delegate3, SBMLConverter.SwigDelegateSBMLConverter_4 delegate4, SBMLConverter.SwigDelegateSBMLConverter_5 delegate5, SBMLConverter.SwigDelegateSBMLConverter_6 delegate6, SBMLConverter.SwigDelegateSBMLConverter_7 delegate7, SBMLConverter.SwigDelegateSBMLConverter_8 delegate8, SBMLConverter.SwigDelegateSBMLConverter_9 delegate9)5358   public static extern void SBMLConverter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SBMLConverter.SwigDelegateSBMLConverter_0 delegate0, SBMLConverter.SwigDelegateSBMLConverter_1 delegate1, SBMLConverter.SwigDelegateSBMLConverter_2 delegate2, SBMLConverter.SwigDelegateSBMLConverter_3 delegate3, SBMLConverter.SwigDelegateSBMLConverter_4 delegate4, SBMLConverter.SwigDelegateSBMLConverter_5 delegate5, SBMLConverter.SwigDelegateSBMLConverter_6 delegate6, SBMLConverter.SwigDelegateSBMLConverter_7 delegate7, SBMLConverter.SwigDelegateSBMLConverter_8 delegate8, SBMLConverter.SwigDelegateSBMLConverter_9 delegate9);
5359 
5360   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverterRegistry_getInstance")]
SBMLConverterRegistry_getInstance()5361   public static extern global::System.IntPtr SBMLConverterRegistry_getInstance();
5362 
5363   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverterRegistry_addConverter")]
SBMLConverterRegistry_addConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5364   public static extern int SBMLConverterRegistry_addConverter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5365 
5366   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverterRegistry_getConverterByIndex")]
SBMLConverterRegistry_getConverterByIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5367   public static extern global::System.IntPtr SBMLConverterRegistry_getConverterByIndex(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5368 
5369   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverterRegistry_getConverterFor")]
SBMLConverterRegistry_getConverterFor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5370   public static extern global::System.IntPtr SBMLConverterRegistry_getConverterFor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5371 
5372   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLConverterRegistry_getNumConverters")]
SBMLConverterRegistry_getNumConverters(global::System.Runtime.InteropServices.HandleRef jarg1)5373   public static extern int SBMLConverterRegistry_getNumConverters(global::System.Runtime.InteropServices.HandleRef jarg1);
5374 
5375   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLConverterRegistry")]
delete_SBMLConverterRegistry(global::System.Runtime.InteropServices.HandleRef jarg1)5376   public static extern void delete_SBMLConverterRegistry(global::System.Runtime.InteropServices.HandleRef jarg1);
5377 
5378   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLFunctionDefinitionConverter_init")]
SBMLFunctionDefinitionConverter_init()5379   public static extern void SBMLFunctionDefinitionConverter_init();
5380 
5381   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLFunctionDefinitionConverter__SWIG_0")]
new_SBMLFunctionDefinitionConverter__SWIG_0()5382   public static extern global::System.IntPtr new_SBMLFunctionDefinitionConverter__SWIG_0();
5383 
5384   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLFunctionDefinitionConverter__SWIG_1")]
new_SBMLFunctionDefinitionConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5385   public static extern global::System.IntPtr new_SBMLFunctionDefinitionConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5386 
5387   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLFunctionDefinitionConverter_clone")]
SBMLFunctionDefinitionConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5388   public static extern global::System.IntPtr SBMLFunctionDefinitionConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5389 
5390   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLFunctionDefinitionConverter")]
delete_SBMLFunctionDefinitionConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5391   public static extern void delete_SBMLFunctionDefinitionConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5392 
5393   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLFunctionDefinitionConverter_matchesProperties")]
SBMLFunctionDefinitionConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5394   public static extern bool SBMLFunctionDefinitionConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5395 
5396   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLFunctionDefinitionConverter_convert")]
SBMLFunctionDefinitionConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5397   public static extern int SBMLFunctionDefinitionConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5398 
5399   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLFunctionDefinitionConverter_getDefaultProperties")]
SBMLFunctionDefinitionConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5400   public static extern global::System.IntPtr SBMLFunctionDefinitionConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5401 
5402   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLIdConverter_init")]
SBMLIdConverter_init()5403   public static extern void SBMLIdConverter_init();
5404 
5405   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLIdConverter__SWIG_0")]
new_SBMLIdConverter__SWIG_0()5406   public static extern global::System.IntPtr new_SBMLIdConverter__SWIG_0();
5407 
5408   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLIdConverter__SWIG_1")]
new_SBMLIdConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5409   public static extern global::System.IntPtr new_SBMLIdConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5410 
5411   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLIdConverter_clone")]
SBMLIdConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5412   public static extern global::System.IntPtr SBMLIdConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5413 
5414   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLIdConverter")]
delete_SBMLIdConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5415   public static extern void delete_SBMLIdConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5416 
5417   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLIdConverter_matchesProperties")]
SBMLIdConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5418   public static extern bool SBMLIdConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5419 
5420   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLIdConverter_convert")]
SBMLIdConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5421   public static extern int SBMLIdConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5422 
5423   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLIdConverter_getDefaultProperties")]
SBMLIdConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5424   public static extern global::System.IntPtr SBMLIdConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5425 
5426   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInferUnitsConverter_init")]
SBMLInferUnitsConverter_init()5427   public static extern void SBMLInferUnitsConverter_init();
5428 
5429   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLInferUnitsConverter__SWIG_0")]
new_SBMLInferUnitsConverter__SWIG_0()5430   public static extern global::System.IntPtr new_SBMLInferUnitsConverter__SWIG_0();
5431 
5432   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLInferUnitsConverter__SWIG_1")]
new_SBMLInferUnitsConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5433   public static extern global::System.IntPtr new_SBMLInferUnitsConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5434 
5435   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLInferUnitsConverter")]
delete_SBMLInferUnitsConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5436   public static extern void delete_SBMLInferUnitsConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5437 
5438   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInferUnitsConverter_clone")]
SBMLInferUnitsConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5439   public static extern global::System.IntPtr SBMLInferUnitsConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5440 
5441   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInferUnitsConverter_matchesProperties")]
SBMLInferUnitsConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5442   public static extern bool SBMLInferUnitsConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5443 
5444   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInferUnitsConverter_convert")]
SBMLInferUnitsConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5445   public static extern int SBMLInferUnitsConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5446 
5447   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInferUnitsConverter_getDefaultProperties")]
SBMLInferUnitsConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5448   public static extern global::System.IntPtr SBMLInferUnitsConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5449 
5450   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInitialAssignmentConverter_init")]
SBMLInitialAssignmentConverter_init()5451   public static extern void SBMLInitialAssignmentConverter_init();
5452 
5453   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLInitialAssignmentConverter__SWIG_0")]
new_SBMLInitialAssignmentConverter__SWIG_0()5454   public static extern global::System.IntPtr new_SBMLInitialAssignmentConverter__SWIG_0();
5455 
5456   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLInitialAssignmentConverter__SWIG_1")]
new_SBMLInitialAssignmentConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5457   public static extern global::System.IntPtr new_SBMLInitialAssignmentConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5458 
5459   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInitialAssignmentConverter_clone")]
SBMLInitialAssignmentConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5460   public static extern global::System.IntPtr SBMLInitialAssignmentConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5461 
5462   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLInitialAssignmentConverter")]
delete_SBMLInitialAssignmentConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5463   public static extern void delete_SBMLInitialAssignmentConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5464 
5465   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInitialAssignmentConverter_matchesProperties")]
SBMLInitialAssignmentConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5466   public static extern bool SBMLInitialAssignmentConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5467 
5468   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInitialAssignmentConverter_convert")]
SBMLInitialAssignmentConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5469   public static extern int SBMLInitialAssignmentConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5470 
5471   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInitialAssignmentConverter_getDefaultProperties")]
SBMLInitialAssignmentConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5472   public static extern global::System.IntPtr SBMLInitialAssignmentConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5473 
5474   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_init")]
SBMLLevelVersionConverter_init()5475   public static extern void SBMLLevelVersionConverter_init();
5476 
5477   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLLevelVersionConverter__SWIG_0")]
new_SBMLLevelVersionConverter__SWIG_0()5478   public static extern global::System.IntPtr new_SBMLLevelVersionConverter__SWIG_0();
5479 
5480   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLLevelVersionConverter__SWIG_1")]
new_SBMLLevelVersionConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5481   public static extern global::System.IntPtr new_SBMLLevelVersionConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5482 
5483   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLLevelVersionConverter")]
delete_SBMLLevelVersionConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5484   public static extern void delete_SBMLLevelVersionConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5485 
5486   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_clone")]
SBMLLevelVersionConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5487   public static extern global::System.IntPtr SBMLLevelVersionConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5488 
5489   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_matchesProperties")]
SBMLLevelVersionConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5490   public static extern bool SBMLLevelVersionConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5491 
5492   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_convert")]
SBMLLevelVersionConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5493   public static extern int SBMLLevelVersionConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5494 
5495   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_getDefaultProperties")]
SBMLLevelVersionConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5496   public static extern global::System.IntPtr SBMLLevelVersionConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5497 
5498   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_getTargetLevel")]
SBMLLevelVersionConverter_getTargetLevel(global::System.Runtime.InteropServices.HandleRef jarg1)5499   public static extern uint SBMLLevelVersionConverter_getTargetLevel(global::System.Runtime.InteropServices.HandleRef jarg1);
5500 
5501   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_getTargetVersion")]
SBMLLevelVersionConverter_getTargetVersion(global::System.Runtime.InteropServices.HandleRef jarg1)5502   public static extern uint SBMLLevelVersionConverter_getTargetVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
5503 
5504   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_getValidityFlag")]
SBMLLevelVersionConverter_getValidityFlag(global::System.Runtime.InteropServices.HandleRef jarg1)5505   public static extern bool SBMLLevelVersionConverter_getValidityFlag(global::System.Runtime.InteropServices.HandleRef jarg1);
5506 
5507   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_getAddDefaultUnits")]
SBMLLevelVersionConverter_getAddDefaultUnits(global::System.Runtime.InteropServices.HandleRef jarg1)5508   public static extern bool SBMLLevelVersionConverter_getAddDefaultUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
5509 
5510   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevel1Version1Converter_init")]
SBMLLevel1Version1Converter_init()5511   public static extern void SBMLLevel1Version1Converter_init();
5512 
5513   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLLevel1Version1Converter__SWIG_0")]
new_SBMLLevel1Version1Converter__SWIG_0()5514   public static extern global::System.IntPtr new_SBMLLevel1Version1Converter__SWIG_0();
5515 
5516   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLLevel1Version1Converter__SWIG_1")]
new_SBMLLevel1Version1Converter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5517   public static extern global::System.IntPtr new_SBMLLevel1Version1Converter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5518 
5519   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLLevel1Version1Converter")]
delete_SBMLLevel1Version1Converter(global::System.Runtime.InteropServices.HandleRef jarg1)5520   public static extern void delete_SBMLLevel1Version1Converter(global::System.Runtime.InteropServices.HandleRef jarg1);
5521 
5522   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevel1Version1Converter_clone")]
SBMLLevel1Version1Converter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5523   public static extern global::System.IntPtr SBMLLevel1Version1Converter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5524 
5525   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevel1Version1Converter_matchesProperties")]
SBMLLevel1Version1Converter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5526   public static extern bool SBMLLevel1Version1Converter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5527 
5528   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevel1Version1Converter_convert")]
SBMLLevel1Version1Converter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5529   public static extern int SBMLLevel1Version1Converter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5530 
5531   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevel1Version1Converter_getDefaultProperties")]
SBMLLevel1Version1Converter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5532   public static extern global::System.IntPtr SBMLLevel1Version1Converter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5533 
5534   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLocalParameterConverter_init")]
SBMLLocalParameterConverter_init()5535   public static extern void SBMLLocalParameterConverter_init();
5536 
5537   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLLocalParameterConverter__SWIG_0")]
new_SBMLLocalParameterConverter__SWIG_0()5538   public static extern global::System.IntPtr new_SBMLLocalParameterConverter__SWIG_0();
5539 
5540   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLLocalParameterConverter__SWIG_1")]
new_SBMLLocalParameterConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5541   public static extern global::System.IntPtr new_SBMLLocalParameterConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5542 
5543   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLocalParameterConverter_clone")]
SBMLLocalParameterConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5544   public static extern global::System.IntPtr SBMLLocalParameterConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5545 
5546   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLLocalParameterConverter")]
delete_SBMLLocalParameterConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5547   public static extern void delete_SBMLLocalParameterConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5548 
5549   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLocalParameterConverter_matchesProperties")]
SBMLLocalParameterConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5550   public static extern bool SBMLLocalParameterConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5551 
5552   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLocalParameterConverter_convert")]
SBMLLocalParameterConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5553   public static extern int SBMLLocalParameterConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5554 
5555   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLocalParameterConverter_getDefaultProperties")]
SBMLLocalParameterConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5556   public static extern global::System.IntPtr SBMLLocalParameterConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5557 
5558   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReactionConverter_init")]
SBMLReactionConverter_init()5559   public static extern void SBMLReactionConverter_init();
5560 
5561   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLReactionConverter__SWIG_0")]
new_SBMLReactionConverter__SWIG_0()5562   public static extern global::System.IntPtr new_SBMLReactionConverter__SWIG_0();
5563 
5564   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLReactionConverter__SWIG_1")]
new_SBMLReactionConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5565   public static extern global::System.IntPtr new_SBMLReactionConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5566 
5567   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReactionConverter_clone")]
SBMLReactionConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5568   public static extern global::System.IntPtr SBMLReactionConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5569 
5570   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLReactionConverter")]
delete_SBMLReactionConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5571   public static extern void delete_SBMLReactionConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5572 
5573   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReactionConverter_matchesProperties")]
SBMLReactionConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5574   public static extern bool SBMLReactionConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5575 
5576   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReactionConverter_convert")]
SBMLReactionConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5577   public static extern int SBMLReactionConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5578 
5579   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReactionConverter_getDefaultProperties")]
SBMLReactionConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5580   public static extern global::System.IntPtr SBMLReactionConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5581 
5582   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReactionConverter_setDocument")]
SBMLReactionConverter_setDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5583   public static extern int SBMLReactionConverter_setDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5584 
5585   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLRuleConverter_init")]
SBMLRuleConverter_init()5586   public static extern void SBMLRuleConverter_init();
5587 
5588   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLRuleConverter__SWIG_0")]
new_SBMLRuleConverter__SWIG_0()5589   public static extern global::System.IntPtr new_SBMLRuleConverter__SWIG_0();
5590 
5591   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLRuleConverter__SWIG_1")]
new_SBMLRuleConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5592   public static extern global::System.IntPtr new_SBMLRuleConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5593 
5594   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLRuleConverter_clone")]
SBMLRuleConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5595   public static extern global::System.IntPtr SBMLRuleConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5596 
5597   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLRuleConverter")]
delete_SBMLRuleConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5598   public static extern void delete_SBMLRuleConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5599 
5600   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLRuleConverter_matchesProperties")]
SBMLRuleConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5601   public static extern bool SBMLRuleConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5602 
5603   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLRuleConverter_convert")]
SBMLRuleConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5604   public static extern int SBMLRuleConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5605 
5606   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLRuleConverter_getDefaultProperties")]
SBMLRuleConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5607   public static extern global::System.IntPtr SBMLRuleConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5608 
5609   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_init")]
SBMLStripPackageConverter_init()5610   public static extern void SBMLStripPackageConverter_init();
5611 
5612   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLStripPackageConverter__SWIG_0")]
new_SBMLStripPackageConverter__SWIG_0()5613   public static extern global::System.IntPtr new_SBMLStripPackageConverter__SWIG_0();
5614 
5615   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLStripPackageConverter__SWIG_1")]
new_SBMLStripPackageConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5616   public static extern global::System.IntPtr new_SBMLStripPackageConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5617 
5618   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLStripPackageConverter")]
delete_SBMLStripPackageConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5619   public static extern void delete_SBMLStripPackageConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5620 
5621   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_clone")]
SBMLStripPackageConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5622   public static extern global::System.IntPtr SBMLStripPackageConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5623 
5624   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_matchesProperties")]
SBMLStripPackageConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5625   public static extern bool SBMLStripPackageConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5626 
5627   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_convert")]
SBMLStripPackageConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5628   public static extern int SBMLStripPackageConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5629 
5630   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_getDefaultProperties")]
SBMLStripPackageConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5631   public static extern global::System.IntPtr SBMLStripPackageConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5632 
5633   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_getPackageToStrip")]
SBMLStripPackageConverter_getPackageToStrip(global::System.Runtime.InteropServices.HandleRef jarg1)5634   public static extern string SBMLStripPackageConverter_getPackageToStrip(global::System.Runtime.InteropServices.HandleRef jarg1);
5635 
5636   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_isStripAllUnrecognizedPackages")]
SBMLStripPackageConverter_isStripAllUnrecognizedPackages(global::System.Runtime.InteropServices.HandleRef jarg1)5637   public static extern bool SBMLStripPackageConverter_isStripAllUnrecognizedPackages(global::System.Runtime.InteropServices.HandleRef jarg1);
5638 
5639   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLUnitsConverter_init")]
SBMLUnitsConverter_init()5640   public static extern void SBMLUnitsConverter_init();
5641 
5642   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLUnitsConverter__SWIG_0")]
new_SBMLUnitsConverter__SWIG_0()5643   public static extern global::System.IntPtr new_SBMLUnitsConverter__SWIG_0();
5644 
5645   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLUnitsConverter__SWIG_1")]
new_SBMLUnitsConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5646   public static extern global::System.IntPtr new_SBMLUnitsConverter__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5647 
5648   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLUnitsConverter")]
delete_SBMLUnitsConverter(global::System.Runtime.InteropServices.HandleRef jarg1)5649   public static extern void delete_SBMLUnitsConverter(global::System.Runtime.InteropServices.HandleRef jarg1);
5650 
5651   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLUnitsConverter_clone")]
SBMLUnitsConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5652   public static extern global::System.IntPtr SBMLUnitsConverter_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5653 
5654   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLUnitsConverter_matchesProperties")]
SBMLUnitsConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5655   public static extern bool SBMLUnitsConverter_matchesProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5656 
5657   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLUnitsConverter_convert")]
SBMLUnitsConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1)5658   public static extern int SBMLUnitsConverter_convert(global::System.Runtime.InteropServices.HandleRef jarg1);
5659 
5660   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLUnitsConverter_getDefaultProperties")]
SBMLUnitsConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1)5661   public static extern global::System.IntPtr SBMLUnitsConverter_getDefaultProperties(global::System.Runtime.InteropServices.HandleRef jarg1);
5662 
5663   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLValidator__SWIG_0")]
new_SBMLValidator__SWIG_0()5664   public static extern global::System.IntPtr new_SBMLValidator__SWIG_0();
5665 
5666   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLValidator__SWIG_1")]
new_SBMLValidator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5667   public static extern global::System.IntPtr new_SBMLValidator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5668 
5669   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLValidator")]
delete_SBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1)5670   public static extern void delete_SBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1);
5671 
5672   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_clone")]
SBMLValidator_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5673   public static extern global::System.IntPtr SBMLValidator_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5674 
5675   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_cloneSwigExplicitSBMLValidator")]
SBMLValidator_cloneSwigExplicitSBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1)5676   public static extern global::System.IntPtr SBMLValidator_cloneSwigExplicitSBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1);
5677 
5678   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_getDocument__SWIG_0")]
SBMLValidator_getDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5679   public static extern global::System.IntPtr SBMLValidator_getDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5680 
5681   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_getDocumentSwigExplicitSBMLValidator__SWIG_0")]
SBMLValidator_getDocumentSwigExplicitSBMLValidator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5682   public static extern global::System.IntPtr SBMLValidator_getDocumentSwigExplicitSBMLValidator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5683 
5684   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_getDocumentSwigExplicitSBMLValidator__SWIG_1")]
SBMLValidator_getDocumentSwigExplicitSBMLValidator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5685   public static extern global::System.IntPtr SBMLValidator_getDocumentSwigExplicitSBMLValidator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5686 
5687   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_setDocument")]
SBMLValidator_setDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5688   public static extern int SBMLValidator_setDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5689 
5690   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_setDocumentSwigExplicitSBMLValidator")]
SBMLValidator_setDocumentSwigExplicitSBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5691   public static extern int SBMLValidator_setDocumentSwigExplicitSBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5692 
5693   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_validate__SWIG_0")]
SBMLValidator_validate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5694   public static extern uint SBMLValidator_validate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5695 
5696   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_validateSwigExplicitSBMLValidator__SWIG_0")]
SBMLValidator_validateSwigExplicitSBMLValidator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5697   public static extern uint SBMLValidator_validateSwigExplicitSBMLValidator__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5698 
5699   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_clearFailures")]
SBMLValidator_clearFailures(global::System.Runtime.InteropServices.HandleRef jarg1)5700   public static extern void SBMLValidator_clearFailures(global::System.Runtime.InteropServices.HandleRef jarg1);
5701 
5702   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_clearFailuresSwigExplicitSBMLValidator")]
SBMLValidator_clearFailuresSwigExplicitSBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1)5703   public static extern void SBMLValidator_clearFailuresSwigExplicitSBMLValidator(global::System.Runtime.InteropServices.HandleRef jarg1);
5704 
5705   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_logFailure")]
SBMLValidator_logFailure(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5706   public static extern void SBMLValidator_logFailure(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5707 
5708   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_validate__SWIG_1")]
SBMLValidator_validate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5709   public static extern uint SBMLValidator_validate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5710 
5711   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_validate__SWIG_2")]
SBMLValidator_validate__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5712   public static extern uint SBMLValidator_validate__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5713 
5714   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_getErrorLog")]
SBMLValidator_getErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1)5715   public static extern global::System.IntPtr SBMLValidator_getErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1);
5716 
5717   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_getModel__SWIG_0")]
SBMLValidator_getModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)5718   public static extern global::System.IntPtr SBMLValidator_getModel__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
5719 
5720   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_getNumFailures")]
SBMLValidator_getNumFailures(global::System.Runtime.InteropServices.HandleRef jarg1)5721   public static extern uint SBMLValidator_getNumFailures(global::System.Runtime.InteropServices.HandleRef jarg1);
5722 
5723   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_getFailure")]
SBMLValidator_getFailure(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)5724   public static extern global::System.IntPtr SBMLValidator_getFailure(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5725 
5726   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLValidator_director_connect")]
SBMLValidator_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SBMLValidator.SwigDelegateSBMLValidator_0 delegate0, SBMLValidator.SwigDelegateSBMLValidator_1 delegate1, SBMLValidator.SwigDelegateSBMLValidator_2 delegate2, SBMLValidator.SwigDelegateSBMLValidator_3 delegate3, SBMLValidator.SwigDelegateSBMLValidator_4 delegate4, SBMLValidator.SwigDelegateSBMLValidator_5 delegate5)5727   public static extern void SBMLValidator_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, SBMLValidator.SwigDelegateSBMLValidator_0 delegate0, SBMLValidator.SwigDelegateSBMLValidator_1 delegate1, SBMLValidator.SwigDelegateSBMLValidator_2 delegate2, SBMLValidator.SwigDelegateSBMLValidator_3 delegate3, SBMLValidator.SwigDelegateSBMLValidator_4 delegate4, SBMLValidator.SwigDelegateSBMLValidator_5 delegate5);
5728 
5729   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLExternalValidator__SWIG_0")]
new_SBMLExternalValidator__SWIG_0()5730   public static extern global::System.IntPtr new_SBMLExternalValidator__SWIG_0();
5731 
5732   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLExternalValidator__SWIG_1")]
new_SBMLExternalValidator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5733   public static extern global::System.IntPtr new_SBMLExternalValidator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5734 
5735   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_clone")]
SBMLExternalValidator_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5736   public static extern global::System.IntPtr SBMLExternalValidator_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5737 
5738   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLExternalValidator")]
delete_SBMLExternalValidator(global::System.Runtime.InteropServices.HandleRef jarg1)5739   public static extern void delete_SBMLExternalValidator(global::System.Runtime.InteropServices.HandleRef jarg1);
5740 
5741   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_validate")]
SBMLExternalValidator_validate(global::System.Runtime.InteropServices.HandleRef jarg1)5742   public static extern uint SBMLExternalValidator_validate(global::System.Runtime.InteropServices.HandleRef jarg1);
5743 
5744   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_getProgram")]
SBMLExternalValidator_getProgram(global::System.Runtime.InteropServices.HandleRef jarg1)5745   public static extern string SBMLExternalValidator_getProgram(global::System.Runtime.InteropServices.HandleRef jarg1);
5746 
5747   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_setProgram")]
SBMLExternalValidator_setProgram(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5748   public static extern void SBMLExternalValidator_setProgram(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5749 
5750   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_getOutputFileName")]
SBMLExternalValidator_getOutputFileName(global::System.Runtime.InteropServices.HandleRef jarg1)5751   public static extern string SBMLExternalValidator_getOutputFileName(global::System.Runtime.InteropServices.HandleRef jarg1);
5752 
5753   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_setOutputFileName")]
SBMLExternalValidator_setOutputFileName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5754   public static extern void SBMLExternalValidator_setOutputFileName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5755 
5756   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_getSBMLFileName")]
SBMLExternalValidator_getSBMLFileName(global::System.Runtime.InteropServices.HandleRef jarg1)5757   public static extern string SBMLExternalValidator_getSBMLFileName(global::System.Runtime.InteropServices.HandleRef jarg1);
5758 
5759   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_setSBMLFileName")]
SBMLExternalValidator_setSBMLFileName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5760   public static extern void SBMLExternalValidator_setSBMLFileName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5761 
5762   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_clearArguments")]
SBMLExternalValidator_clearArguments(global::System.Runtime.InteropServices.HandleRef jarg1)5763   public static extern void SBMLExternalValidator_clearArguments(global::System.Runtime.InteropServices.HandleRef jarg1);
5764 
5765   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_addArgument")]
SBMLExternalValidator_addArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5766   public static extern void SBMLExternalValidator_addArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5767 
5768   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_getNumArguments")]
SBMLExternalValidator_getNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1)5769   public static extern uint SBMLExternalValidator_getNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1);
5770 
5771   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_getArgument")]
SBMLExternalValidator_getArgument(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)5772   public static extern string SBMLExternalValidator_getArgument(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5773 
5774   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLAttributes__SWIG_0")]
new_XMLAttributes__SWIG_0()5775   public static extern global::System.IntPtr new_XMLAttributes__SWIG_0();
5776 
5777   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLAttributes")]
delete_XMLAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)5778   public static extern void delete_XMLAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
5779 
5780   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLAttributes__SWIG_1")]
new_XMLAttributes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5781   public static extern global::System.IntPtr new_XMLAttributes__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5782 
5783   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_clone")]
XMLAttributes_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5784   public static extern global::System.IntPtr XMLAttributes_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5785 
5786   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_add__SWIG_0")]
XMLAttributes_add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5)5787   public static extern int XMLAttributes_add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5);
5788 
5789   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_add__SWIG_1")]
XMLAttributes_add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)5790   public static extern int XMLAttributes_add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
5791 
5792   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_add__SWIG_2")]
XMLAttributes_add__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5793   public static extern int XMLAttributes_add__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5794 
5795   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_add__SWIG_3")]
XMLAttributes_add__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)5796   public static extern int XMLAttributes_add__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
5797 
5798   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_removeResource")]
XMLAttributes_removeResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5799   public static extern int XMLAttributes_removeResource(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5800 
5801   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_remove__SWIG_0")]
XMLAttributes_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5802   public static extern int XMLAttributes_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5803 
5804   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_remove__SWIG_1")]
XMLAttributes_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5805   public static extern int XMLAttributes_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5806 
5807   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_remove__SWIG_2")]
XMLAttributes_remove__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5808   public static extern int XMLAttributes_remove__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5809 
5810   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_remove__SWIG_3")]
XMLAttributes_remove__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5811   public static extern int XMLAttributes_remove__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5812 
5813   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_clear")]
XMLAttributes_clear(global::System.Runtime.InteropServices.HandleRef jarg1)5814   public static extern int XMLAttributes_clear(global::System.Runtime.InteropServices.HandleRef jarg1);
5815 
5816   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getIndex__SWIG_0")]
XMLAttributes_getIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5817   public static extern int XMLAttributes_getIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5818 
5819   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getIndex__SWIG_1")]
XMLAttributes_getIndex__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5820   public static extern int XMLAttributes_getIndex__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5821 
5822   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getIndex__SWIG_2")]
XMLAttributes_getIndex__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5823   public static extern int XMLAttributes_getIndex__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5824 
5825   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getLength")]
XMLAttributes_getLength(global::System.Runtime.InteropServices.HandleRef jarg1)5826   public static extern int XMLAttributes_getLength(global::System.Runtime.InteropServices.HandleRef jarg1);
5827 
5828   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getNumAttributes")]
XMLAttributes_getNumAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)5829   public static extern int XMLAttributes_getNumAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
5830 
5831   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getName")]
XMLAttributes_getName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5832   public static extern string XMLAttributes_getName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5833 
5834   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getPrefix")]
XMLAttributes_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5835   public static extern string XMLAttributes_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5836 
5837   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getPrefixedName")]
XMLAttributes_getPrefixedName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5838   public static extern string XMLAttributes_getPrefixedName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5839 
5840   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getURI")]
XMLAttributes_getURI(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5841   public static extern string XMLAttributes_getURI(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5842 
5843   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getValue__SWIG_0")]
XMLAttributes_getValue__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5844   public static extern string XMLAttributes_getValue__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5845 
5846   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getValue__SWIG_1")]
XMLAttributes_getValue__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5847   public static extern string XMLAttributes_getValue__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5848 
5849   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getValue__SWIG_2")]
XMLAttributes_getValue__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5850   public static extern string XMLAttributes_getValue__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5851 
5852   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_getValue__SWIG_3")]
XMLAttributes_getValue__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5853   public static extern string XMLAttributes_getValue__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5854 
5855   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_hasAttribute__SWIG_0")]
XMLAttributes_hasAttribute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5856   public static extern bool XMLAttributes_hasAttribute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5857 
5858   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_hasAttribute__SWIG_1")]
XMLAttributes_hasAttribute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5859   public static extern bool XMLAttributes_hasAttribute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5860 
5861   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_hasAttribute__SWIG_2")]
XMLAttributes_hasAttribute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5862   public static extern bool XMLAttributes_hasAttribute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5863 
5864   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_hasAttribute__SWIG_3")]
XMLAttributes_hasAttribute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5865   public static extern bool XMLAttributes_hasAttribute__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5866 
5867   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLAttributes_isEmpty")]
XMLAttributes_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)5868   public static extern bool XMLAttributes_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
5869 
5870   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLConstructorException")]
new_XMLConstructorException()5871   public static extern global::System.IntPtr new_XMLConstructorException();
5872 
5873   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLConstructorException")]
delete_XMLConstructorException(global::System.Runtime.InteropServices.HandleRef jarg1)5874   public static extern void delete_XMLConstructorException(global::System.Runtime.InteropServices.HandleRef jarg1);
5875 
5876   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNamespaces__SWIG_0")]
new_XMLNamespaces__SWIG_0()5877   public static extern global::System.IntPtr new_XMLNamespaces__SWIG_0();
5878 
5879   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLNamespaces")]
delete_XMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)5880   public static extern void delete_XMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
5881 
5882   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNamespaces__SWIG_1")]
new_XMLNamespaces__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)5883   public static extern global::System.IntPtr new_XMLNamespaces__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
5884 
5885   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_clone")]
XMLNamespaces_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5886   public static extern global::System.IntPtr XMLNamespaces_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5887 
5888   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_add__SWIG_0")]
XMLNamespaces_add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5889   public static extern int XMLNamespaces_add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5890 
5891   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_add__SWIG_1")]
XMLNamespaces_add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5892   public static extern int XMLNamespaces_add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5893 
5894   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_remove__SWIG_0")]
XMLNamespaces_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5895   public static extern int XMLNamespaces_remove__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5896 
5897   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_remove__SWIG_1")]
XMLNamespaces_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5898   public static extern int XMLNamespaces_remove__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5899 
5900   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_clear")]
XMLNamespaces_clear(global::System.Runtime.InteropServices.HandleRef jarg1)5901   public static extern int XMLNamespaces_clear(global::System.Runtime.InteropServices.HandleRef jarg1);
5902 
5903   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getIndex")]
XMLNamespaces_getIndex(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5904   public static extern int XMLNamespaces_getIndex(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5905 
5906   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_containsUri")]
XMLNamespaces_containsUri(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5907   public static extern bool XMLNamespaces_containsUri(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5908 
5909   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getIndexByPrefix")]
XMLNamespaces_getIndexByPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5910   public static extern int XMLNamespaces_getIndexByPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5911 
5912   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getLength")]
XMLNamespaces_getLength(global::System.Runtime.InteropServices.HandleRef jarg1)5913   public static extern int XMLNamespaces_getLength(global::System.Runtime.InteropServices.HandleRef jarg1);
5914 
5915   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getNumNamespaces")]
XMLNamespaces_getNumNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)5916   public static extern int XMLNamespaces_getNumNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
5917 
5918   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getPrefix__SWIG_0")]
XMLNamespaces_getPrefix__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5919   public static extern string XMLNamespaces_getPrefix__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5920 
5921   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getPrefix__SWIG_1")]
XMLNamespaces_getPrefix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5922   public static extern string XMLNamespaces_getPrefix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5923 
5924   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getURI__SWIG_0")]
XMLNamespaces_getURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)5925   public static extern string XMLNamespaces_getURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
5926 
5927   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getURI__SWIG_1")]
XMLNamespaces_getURI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5928   public static extern string XMLNamespaces_getURI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5929 
5930   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_getURI__SWIG_2")]
XMLNamespaces_getURI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)5931   public static extern string XMLNamespaces_getURI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
5932 
5933   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_isEmpty")]
XMLNamespaces_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)5934   public static extern bool XMLNamespaces_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
5935 
5936   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_hasURI")]
XMLNamespaces_hasURI(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5937   public static extern bool XMLNamespaces_hasURI(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5938 
5939   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_hasPrefix")]
XMLNamespaces_hasPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)5940   public static extern bool XMLNamespaces_hasPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
5941 
5942   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNamespaces_hasNS")]
XMLNamespaces_hasNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)5943   public static extern bool XMLNamespaces_hasNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
5944 
5945   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_0")]
new_XMLToken__SWIG_0()5946   public static extern global::System.IntPtr new_XMLToken__SWIG_0();
5947 
5948   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_1")]
new_XMLToken__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5)5949   public static extern global::System.IntPtr new_XMLToken__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5);
5950 
5951   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_2")]
new_XMLToken__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)5952   public static extern global::System.IntPtr new_XMLToken__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
5953 
5954   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_3")]
new_XMLToken__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)5955   public static extern global::System.IntPtr new_XMLToken__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
5956 
5957   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_4")]
new_XMLToken__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)5958   public static extern global::System.IntPtr new_XMLToken__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
5959 
5960   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_5")]
new_XMLToken__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)5961   public static extern global::System.IntPtr new_XMLToken__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
5962 
5963   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_6")]
new_XMLToken__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5964   public static extern global::System.IntPtr new_XMLToken__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5965 
5966   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_7")]
new_XMLToken__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)5967   public static extern global::System.IntPtr new_XMLToken__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
5968 
5969   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_8")]
new_XMLToken__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)5970   public static extern global::System.IntPtr new_XMLToken__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
5971 
5972   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_9")]
new_XMLToken__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1)5973   public static extern global::System.IntPtr new_XMLToken__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1);
5974 
5975   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_10")]
new_XMLToken__SWIG_10(string jarg1, long jarg2, long jarg3)5976   public static extern global::System.IntPtr new_XMLToken__SWIG_10(string jarg1, long jarg2, long jarg3);
5977 
5978   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_11")]
new_XMLToken__SWIG_11(string jarg1, long jarg2)5979   public static extern global::System.IntPtr new_XMLToken__SWIG_11(string jarg1, long jarg2);
5980 
5981   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_12")]
new_XMLToken__SWIG_12(string jarg1)5982   public static extern global::System.IntPtr new_XMLToken__SWIG_12(string jarg1);
5983 
5984   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLToken")]
delete_XMLToken(global::System.Runtime.InteropServices.HandleRef jarg1)5985   public static extern void delete_XMLToken(global::System.Runtime.InteropServices.HandleRef jarg1);
5986 
5987   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLToken__SWIG_13")]
new_XMLToken__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1)5988   public static extern global::System.IntPtr new_XMLToken__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1);
5989 
5990   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_clone")]
XMLToken_clone(global::System.Runtime.InteropServices.HandleRef jarg1)5991   public static extern global::System.IntPtr XMLToken_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
5992 
5993   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttributes")]
XMLToken_getAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)5994   public static extern global::System.IntPtr XMLToken_getAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
5995 
5996   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_setAttributes")]
XMLToken_setAttributes(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)5997   public static extern int XMLToken_setAttributes(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
5998 
5999   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_addAttr__SWIG_0")]
XMLToken_addAttr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5)6000   public static extern int XMLToken_addAttr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4, string jarg5);
6001 
6002   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_addAttr__SWIG_1")]
XMLToken_addAttr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)6003   public static extern int XMLToken_addAttr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
6004 
6005   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_addAttr__SWIG_2")]
XMLToken_addAttr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6006   public static extern int XMLToken_addAttr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6007 
6008   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_addAttr__SWIG_3")]
XMLToken_addAttr__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)6009   public static extern int XMLToken_addAttr__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
6010 
6011   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_removeAttr__SWIG_0")]
XMLToken_removeAttr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6012   public static extern int XMLToken_removeAttr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6013 
6014   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_removeAttr__SWIG_1")]
XMLToken_removeAttr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6015   public static extern int XMLToken_removeAttr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6016 
6017   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_removeAttr__SWIG_2")]
XMLToken_removeAttr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6018   public static extern int XMLToken_removeAttr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6019 
6020   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_removeAttr__SWIG_3")]
XMLToken_removeAttr__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6021   public static extern int XMLToken_removeAttr__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6022 
6023   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_clearAttributes")]
XMLToken_clearAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)6024   public static extern int XMLToken_clearAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
6025 
6026   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrIndex__SWIG_0")]
XMLToken_getAttrIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6027   public static extern int XMLToken_getAttrIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6028 
6029   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrIndex__SWIG_1")]
XMLToken_getAttrIndex__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6030   public static extern int XMLToken_getAttrIndex__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6031 
6032   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrIndex__SWIG_2")]
XMLToken_getAttrIndex__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6033   public static extern int XMLToken_getAttrIndex__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6034 
6035   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttributesLength")]
XMLToken_getAttributesLength(global::System.Runtime.InteropServices.HandleRef jarg1)6036   public static extern int XMLToken_getAttributesLength(global::System.Runtime.InteropServices.HandleRef jarg1);
6037 
6038   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrName")]
XMLToken_getAttrName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6039   public static extern string XMLToken_getAttrName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6040 
6041   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrPrefix")]
XMLToken_getAttrPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6042   public static extern string XMLToken_getAttrPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6043 
6044   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrPrefixedName")]
XMLToken_getAttrPrefixedName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6045   public static extern string XMLToken_getAttrPrefixedName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6046 
6047   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrURI")]
XMLToken_getAttrURI(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6048   public static extern string XMLToken_getAttrURI(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6049 
6050   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrValue__SWIG_0")]
XMLToken_getAttrValue__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6051   public static extern string XMLToken_getAttrValue__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6052 
6053   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrValue__SWIG_1")]
XMLToken_getAttrValue__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6054   public static extern string XMLToken_getAttrValue__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6055 
6056   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrValue__SWIG_2")]
XMLToken_getAttrValue__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6057   public static extern string XMLToken_getAttrValue__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6058 
6059   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getAttrValue__SWIG_3")]
XMLToken_getAttrValue__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6060   public static extern string XMLToken_getAttrValue__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6061 
6062   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_hasAttr__SWIG_0")]
XMLToken_hasAttr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6063   public static extern bool XMLToken_hasAttr__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6064 
6065   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_hasAttr__SWIG_1")]
XMLToken_hasAttr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6066   public static extern bool XMLToken_hasAttr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6067 
6068   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_hasAttr__SWIG_2")]
XMLToken_hasAttr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6069   public static extern bool XMLToken_hasAttr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6070 
6071   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_hasAttr__SWIG_3")]
XMLToken_hasAttr__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6072   public static extern bool XMLToken_hasAttr__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6073 
6074   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isAttributesEmpty")]
XMLToken_isAttributesEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)6075   public static extern bool XMLToken_isAttributesEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
6076 
6077   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespaces")]
XMLToken_getNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)6078   public static extern global::System.IntPtr XMLToken_getNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
6079 
6080   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_setNamespaces")]
XMLToken_setNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6081   public static extern int XMLToken_setNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6082 
6083   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_addNamespace__SWIG_0")]
XMLToken_addNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6084   public static extern int XMLToken_addNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6085 
6086   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_addNamespace__SWIG_1")]
XMLToken_addNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6087   public static extern int XMLToken_addNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6088 
6089   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_removeNamespace__SWIG_0")]
XMLToken_removeNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6090   public static extern int XMLToken_removeNamespace__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6091 
6092   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_removeNamespace__SWIG_1")]
XMLToken_removeNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6093   public static extern int XMLToken_removeNamespace__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6094 
6095   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_clearNamespaces")]
XMLToken_clearNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)6096   public static extern int XMLToken_clearNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
6097 
6098   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespaceIndex")]
XMLToken_getNamespaceIndex(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6099   public static extern int XMLToken_getNamespaceIndex(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6100 
6101   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespaceIndexByPrefix")]
XMLToken_getNamespaceIndexByPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6102   public static extern int XMLToken_getNamespaceIndexByPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6103 
6104   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespacesLength")]
XMLToken_getNamespacesLength(global::System.Runtime.InteropServices.HandleRef jarg1)6105   public static extern int XMLToken_getNamespacesLength(global::System.Runtime.InteropServices.HandleRef jarg1);
6106 
6107   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespacePrefix__SWIG_0")]
XMLToken_getNamespacePrefix__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6108   public static extern string XMLToken_getNamespacePrefix__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6109 
6110   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespacePrefix__SWIG_1")]
XMLToken_getNamespacePrefix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6111   public static extern string XMLToken_getNamespacePrefix__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6112 
6113   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespaceURI__SWIG_0")]
XMLToken_getNamespaceURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6114   public static extern string XMLToken_getNamespaceURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6115 
6116   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespaceURI__SWIG_1")]
XMLToken_getNamespaceURI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6117   public static extern string XMLToken_getNamespaceURI__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6118 
6119   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getNamespaceURI__SWIG_2")]
XMLToken_getNamespaceURI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)6120   public static extern string XMLToken_getNamespaceURI__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
6121 
6122   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isNamespacesEmpty")]
XMLToken_isNamespacesEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)6123   public static extern bool XMLToken_isNamespacesEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
6124 
6125   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_hasNamespaceURI")]
XMLToken_hasNamespaceURI(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6126   public static extern bool XMLToken_hasNamespaceURI(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6127 
6128   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_hasNamespacePrefix")]
XMLToken_hasNamespacePrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6129   public static extern bool XMLToken_hasNamespacePrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6130 
6131   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_hasNamespaceNS")]
XMLToken_hasNamespaceNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6132   public static extern bool XMLToken_hasNamespaceNS(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6133 
6134   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_setTriple")]
XMLToken_setTriple(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6135   public static extern int XMLToken_setTriple(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6136 
6137   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getName")]
XMLToken_getName(global::System.Runtime.InteropServices.HandleRef jarg1)6138   public static extern string XMLToken_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
6139 
6140   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getPrefix")]
XMLToken_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1)6141   public static extern string XMLToken_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1);
6142 
6143   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getURI")]
XMLToken_getURI(global::System.Runtime.InteropServices.HandleRef jarg1)6144   public static extern string XMLToken_getURI(global::System.Runtime.InteropServices.HandleRef jarg1);
6145 
6146   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getCharacters")]
XMLToken_getCharacters(global::System.Runtime.InteropServices.HandleRef jarg1)6147   public static extern string XMLToken_getCharacters(global::System.Runtime.InteropServices.HandleRef jarg1);
6148 
6149   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_setCharacters")]
XMLToken_setCharacters(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6150   public static extern int XMLToken_setCharacters(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6151 
6152   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_append")]
XMLToken_append(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6153   public static extern int XMLToken_append(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6154 
6155   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getColumn")]
XMLToken_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1)6156   public static extern uint XMLToken_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1);
6157 
6158   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_getLine")]
XMLToken_getLine(global::System.Runtime.InteropServices.HandleRef jarg1)6159   public static extern uint XMLToken_getLine(global::System.Runtime.InteropServices.HandleRef jarg1);
6160 
6161   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isElement")]
XMLToken_isElement(global::System.Runtime.InteropServices.HandleRef jarg1)6162   public static extern bool XMLToken_isElement(global::System.Runtime.InteropServices.HandleRef jarg1);
6163 
6164   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isEnd")]
XMLToken_isEnd(global::System.Runtime.InteropServices.HandleRef jarg1)6165   public static extern bool XMLToken_isEnd(global::System.Runtime.InteropServices.HandleRef jarg1);
6166 
6167   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isEndFor")]
XMLToken_isEndFor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6168   public static extern bool XMLToken_isEndFor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6169 
6170   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isEOF")]
XMLToken_isEOF(global::System.Runtime.InteropServices.HandleRef jarg1)6171   public static extern bool XMLToken_isEOF(global::System.Runtime.InteropServices.HandleRef jarg1);
6172 
6173   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isStart")]
XMLToken_isStart(global::System.Runtime.InteropServices.HandleRef jarg1)6174   public static extern bool XMLToken_isStart(global::System.Runtime.InteropServices.HandleRef jarg1);
6175 
6176   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_isText")]
XMLToken_isText(global::System.Runtime.InteropServices.HandleRef jarg1)6177   public static extern bool XMLToken_isText(global::System.Runtime.InteropServices.HandleRef jarg1);
6178 
6179   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_setEnd")]
XMLToken_setEnd(global::System.Runtime.InteropServices.HandleRef jarg1)6180   public static extern int XMLToken_setEnd(global::System.Runtime.InteropServices.HandleRef jarg1);
6181 
6182   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_setEOF")]
XMLToken_setEOF(global::System.Runtime.InteropServices.HandleRef jarg1)6183   public static extern int XMLToken_setEOF(global::System.Runtime.InteropServices.HandleRef jarg1);
6184 
6185   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_unsetEnd")]
XMLToken_unsetEnd(global::System.Runtime.InteropServices.HandleRef jarg1)6186   public static extern int XMLToken_unsetEnd(global::System.Runtime.InteropServices.HandleRef jarg1);
6187 
6188   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLToken_toString")]
XMLToken_toString(global::System.Runtime.InteropServices.HandleRef jarg1)6189   public static extern string XMLToken_toString(global::System.Runtime.InteropServices.HandleRef jarg1);
6190 
6191   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_0")]
new_XMLNode__SWIG_0()6192   public static extern global::System.IntPtr new_XMLNode__SWIG_0();
6193 
6194   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_1")]
new_XMLNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)6195   public static extern global::System.IntPtr new_XMLNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6196 
6197   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_2")]
new_XMLNode__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5)6198   public static extern global::System.IntPtr new_XMLNode__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4, long jarg5);
6199 
6200   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_3")]
new_XMLNode__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4)6201   public static extern global::System.IntPtr new_XMLNode__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, long jarg4);
6202 
6203   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_4")]
new_XMLNode__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)6204   public static extern global::System.IntPtr new_XMLNode__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6205 
6206   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_5")]
new_XMLNode__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4)6207   public static extern global::System.IntPtr new_XMLNode__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, long jarg4);
6208 
6209   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_6")]
new_XMLNode__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)6210   public static extern global::System.IntPtr new_XMLNode__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6211 
6212   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_7")]
new_XMLNode__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6213   public static extern global::System.IntPtr new_XMLNode__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6214 
6215   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_8")]
new_XMLNode__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)6216   public static extern global::System.IntPtr new_XMLNode__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
6217 
6218   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_9")]
new_XMLNode__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6219   public static extern global::System.IntPtr new_XMLNode__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6220 
6221   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_10")]
new_XMLNode__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1)6222   public static extern global::System.IntPtr new_XMLNode__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1);
6223 
6224   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_11")]
new_XMLNode__SWIG_11(string jarg1, long jarg2, long jarg3)6225   public static extern global::System.IntPtr new_XMLNode__SWIG_11(string jarg1, long jarg2, long jarg3);
6226 
6227   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_12")]
new_XMLNode__SWIG_12(string jarg1, long jarg2)6228   public static extern global::System.IntPtr new_XMLNode__SWIG_12(string jarg1, long jarg2);
6229 
6230   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_13")]
new_XMLNode__SWIG_13(string jarg1)6231   public static extern global::System.IntPtr new_XMLNode__SWIG_13(string jarg1);
6232 
6233   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_14")]
new_XMLNode__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1)6234   public static extern global::System.IntPtr new_XMLNode__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1);
6235 
6236   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLNode")]
delete_XMLNode(global::System.Runtime.InteropServices.HandleRef jarg1)6237   public static extern void delete_XMLNode(global::System.Runtime.InteropServices.HandleRef jarg1);
6238 
6239   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLNode__SWIG_15")]
new_XMLNode__SWIG_15(global::System.Runtime.InteropServices.HandleRef jarg1)6240   public static extern global::System.IntPtr new_XMLNode__SWIG_15(global::System.Runtime.InteropServices.HandleRef jarg1);
6241 
6242   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_clone")]
XMLNode_clone(global::System.Runtime.InteropServices.HandleRef jarg1)6243   public static extern global::System.IntPtr XMLNode_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
6244 
6245   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_addChild")]
XMLNode_addChild(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6246   public static extern int XMLNode_addChild(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6247 
6248   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_insertChild")]
XMLNode_insertChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)6249   public static extern global::System.IntPtr XMLNode_insertChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
6250 
6251   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_removeChild")]
XMLNode_removeChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6252   public static extern global::System.IntPtr XMLNode_removeChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6253 
6254   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_removeChildren")]
XMLNode_removeChildren(global::System.Runtime.InteropServices.HandleRef jarg1)6255   public static extern int XMLNode_removeChildren(global::System.Runtime.InteropServices.HandleRef jarg1);
6256 
6257   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_getChild__SWIG_0")]
XMLNode_getChild__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6258   public static extern global::System.IntPtr XMLNode_getChild__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6259 
6260   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_getChild__SWIG_2")]
XMLNode_getChild__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6261   public static extern global::System.IntPtr XMLNode_getChild__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6262 
6263   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_getIndex")]
XMLNode_getIndex(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6264   public static extern int XMLNode_getIndex(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6265 
6266   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_hasChild")]
XMLNode_hasChild(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6267   public static extern bool XMLNode_hasChild(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6268 
6269   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_equals__SWIG_0")]
XMLNode_equals__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, bool jarg4)6270   public static extern bool XMLNode_equals__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3, bool jarg4);
6271 
6272   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_equals__SWIG_1")]
XMLNode_equals__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)6273   public static extern bool XMLNode_equals__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6274 
6275   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_equals__SWIG_2")]
XMLNode_equals__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6276   public static extern bool XMLNode_equals__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6277 
6278   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_getNumChildren")]
XMLNode_getNumChildren(global::System.Runtime.InteropServices.HandleRef jarg1)6279   public static extern uint XMLNode_getNumChildren(global::System.Runtime.InteropServices.HandleRef jarg1);
6280 
6281   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_writeToStream")]
XMLNode_writeToStream(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6282   public static extern void XMLNode_writeToStream(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6283 
6284   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_toXMLString")]
XMLNode_toXMLString(global::System.Runtime.InteropServices.HandleRef jarg1)6285   public static extern string XMLNode_toXMLString(global::System.Runtime.InteropServices.HandleRef jarg1);
6286 
6287   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_convertXMLNodeToString")]
XMLNode_convertXMLNodeToString(global::System.Runtime.InteropServices.HandleRef jarg1)6288   public static extern string XMLNode_convertXMLNodeToString(global::System.Runtime.InteropServices.HandleRef jarg1);
6289 
6290   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_convertStringToXMLNode__SWIG_0")]
XMLNode_convertStringToXMLNode__SWIG_0(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6291   public static extern global::System.IntPtr XMLNode_convertStringToXMLNode__SWIG_0(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6292 
6293   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_convertStringToXMLNode__SWIG_1")]
XMLNode_convertStringToXMLNode__SWIG_1(string jarg1)6294   public static extern global::System.IntPtr XMLNode_convertStringToXMLNode__SWIG_1(string jarg1);
6295 
6296   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLTriple__SWIG_0")]
new_XMLTriple__SWIG_0()6297   public static extern global::System.IntPtr new_XMLTriple__SWIG_0();
6298 
6299   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLTriple__SWIG_1")]
new_XMLTriple__SWIG_1(string jarg1, string jarg2, string jarg3)6300   public static extern global::System.IntPtr new_XMLTriple__SWIG_1(string jarg1, string jarg2, string jarg3);
6301 
6302   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLTriple__SWIG_2")]
new_XMLTriple__SWIG_2(string jarg1, char jarg2)6303   public static extern global::System.IntPtr new_XMLTriple__SWIG_2(string jarg1, char jarg2);
6304 
6305   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLTriple__SWIG_3")]
new_XMLTriple__SWIG_3(string jarg1)6306   public static extern global::System.IntPtr new_XMLTriple__SWIG_3(string jarg1);
6307 
6308   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLTriple__SWIG_4")]
new_XMLTriple__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1)6309   public static extern global::System.IntPtr new_XMLTriple__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1);
6310 
6311   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLTriple")]
delete_XMLTriple(global::System.Runtime.InteropServices.HandleRef jarg1)6312   public static extern void delete_XMLTriple(global::System.Runtime.InteropServices.HandleRef jarg1);
6313 
6314   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLTriple_clone")]
XMLTriple_clone(global::System.Runtime.InteropServices.HandleRef jarg1)6315   public static extern global::System.IntPtr XMLTriple_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
6316 
6317   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLTriple_getName")]
XMLTriple_getName(global::System.Runtime.InteropServices.HandleRef jarg1)6318   public static extern string XMLTriple_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
6319 
6320   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLTriple_getPrefix")]
XMLTriple_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1)6321   public static extern string XMLTriple_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1);
6322 
6323   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLTriple_getURI")]
XMLTriple_getURI(global::System.Runtime.InteropServices.HandleRef jarg1)6324   public static extern string XMLTriple_getURI(global::System.Runtime.InteropServices.HandleRef jarg1);
6325 
6326   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLTriple_getPrefixedName")]
XMLTriple_getPrefixedName(global::System.Runtime.InteropServices.HandleRef jarg1)6327   public static extern string XMLTriple_getPrefixedName(global::System.Runtime.InteropServices.HandleRef jarg1);
6328 
6329   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLTriple_isEmpty")]
XMLTriple_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)6330   public static extern bool XMLTriple_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1);
6331 
6332   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOutputStream__SWIG_0")]
new_XMLOutputStream__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, string jarg4, string jarg5)6333   public static extern global::System.IntPtr new_XMLOutputStream__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, string jarg4, string jarg5);
6334 
6335   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOutputStream__SWIG_1")]
new_XMLOutputStream__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, string jarg4)6336   public static extern global::System.IntPtr new_XMLOutputStream__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, string jarg4);
6337 
6338   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOutputStream__SWIG_2")]
new_XMLOutputStream__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)6339   public static extern global::System.IntPtr new_XMLOutputStream__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
6340 
6341   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOutputStream__SWIG_3")]
new_XMLOutputStream__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6342   public static extern global::System.IntPtr new_XMLOutputStream__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6343 
6344   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOutputStream__SWIG_4")]
new_XMLOutputStream__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1)6345   public static extern global::System.IntPtr new_XMLOutputStream__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1);
6346 
6347   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLOutputStream")]
delete_XMLOutputStream(global::System.Runtime.InteropServices.HandleRef jarg1)6348   public static extern void delete_XMLOutputStream(global::System.Runtime.InteropServices.HandleRef jarg1);
6349 
6350   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_endElement__SWIG_0")]
XMLOutputStream_endElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6351   public static extern void XMLOutputStream_endElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6352 
6353   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_endElement__SWIG_1")]
XMLOutputStream_endElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6354   public static extern void XMLOutputStream_endElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6355 
6356   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_endElement__SWIG_2")]
XMLOutputStream_endElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)6357   public static extern void XMLOutputStream_endElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6358 
6359   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_endElement__SWIG_3")]
XMLOutputStream_endElement__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6360   public static extern void XMLOutputStream_endElement__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6361 
6362   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_setAutoIndent")]
XMLOutputStream_setAutoIndent(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)6363   public static extern void XMLOutputStream_setAutoIndent(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
6364 
6365   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_startElement__SWIG_0")]
XMLOutputStream_startElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6366   public static extern void XMLOutputStream_startElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6367 
6368   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_startElement__SWIG_1")]
XMLOutputStream_startElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6369   public static extern void XMLOutputStream_startElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6370 
6371   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_startElement__SWIG_2")]
XMLOutputStream_startElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6372   public static extern void XMLOutputStream_startElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6373 
6374   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_startEndElement__SWIG_0")]
XMLOutputStream_startEndElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6375   public static extern void XMLOutputStream_startEndElement__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6376 
6377   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_startEndElement__SWIG_1")]
XMLOutputStream_startEndElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6378   public static extern void XMLOutputStream_startEndElement__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6379 
6380   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_startEndElement__SWIG_2")]
XMLOutputStream_startEndElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6381   public static extern void XMLOutputStream_startEndElement__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6382 
6383   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_0")]
XMLOutputStream_writeAttribute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6384   public static extern void XMLOutputStream_writeAttribute__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6385 
6386   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_1")]
XMLOutputStream_writeAttribute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4)6387   public static extern void XMLOutputStream_writeAttribute__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, string jarg4);
6388 
6389   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_2")]
XMLOutputStream_writeAttribute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)6390   public static extern void XMLOutputStream_writeAttribute__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
6391 
6392   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_6")]
XMLOutputStream_writeAttribute__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)6393   public static extern void XMLOutputStream_writeAttribute__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
6394 
6395   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_7")]
XMLOutputStream_writeAttribute__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)6396   public static extern void XMLOutputStream_writeAttribute__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
6397 
6398   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_8")]
XMLOutputStream_writeAttribute__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)6399   public static extern void XMLOutputStream_writeAttribute__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
6400 
6401   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_9")]
XMLOutputStream_writeAttribute__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3)6402   public static extern void XMLOutputStream_writeAttribute__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, double jarg3);
6403 
6404   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_10")]
XMLOutputStream_writeAttribute__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, double jarg4)6405   public static extern void XMLOutputStream_writeAttribute__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, double jarg4);
6406 
6407   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_11")]
XMLOutputStream_writeAttribute__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3)6408   public static extern void XMLOutputStream_writeAttribute__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, double jarg3);
6409 
6410   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_12")]
XMLOutputStream_writeAttribute__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3)6411   public static extern void XMLOutputStream_writeAttribute__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3);
6412 
6413   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_13")]
XMLOutputStream_writeAttribute__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4)6414   public static extern void XMLOutputStream_writeAttribute__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, int jarg4);
6415 
6416   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_14")]
XMLOutputStream_writeAttribute__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3)6417   public static extern void XMLOutputStream_writeAttribute__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3);
6418 
6419   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeAttribute__SWIG_18")]
XMLOutputStream_writeAttribute__SWIG_18(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, long jarg4)6420   public static extern void XMLOutputStream_writeAttribute__SWIG_18(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, long jarg4);
6421 
6422   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeXMLDecl")]
XMLOutputStream_writeXMLDecl(global::System.Runtime.InteropServices.HandleRef jarg1)6423   public static extern void XMLOutputStream_writeXMLDecl(global::System.Runtime.InteropServices.HandleRef jarg1);
6424 
6425   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeComment__SWIG_0")]
XMLOutputStream_writeComment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)6426   public static extern void XMLOutputStream_writeComment__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
6427 
6428   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_writeComment__SWIG_1")]
XMLOutputStream_writeComment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6429   public static extern void XMLOutputStream_writeComment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6430 
6431   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_downIndent")]
XMLOutputStream_downIndent(global::System.Runtime.InteropServices.HandleRef jarg1)6432   public static extern void XMLOutputStream_downIndent(global::System.Runtime.InteropServices.HandleRef jarg1);
6433 
6434   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_upIndent")]
XMLOutputStream_upIndent(global::System.Runtime.InteropServices.HandleRef jarg1)6435   public static extern void XMLOutputStream_upIndent(global::System.Runtime.InteropServices.HandleRef jarg1);
6436 
6437   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_getSBMLNamespaces")]
XMLOutputStream_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)6438   public static extern global::System.IntPtr XMLOutputStream_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
6439 
6440   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_setSBMLNamespaces")]
XMLOutputStream_setSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6441   public static extern void XMLOutputStream_setSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6442 
6443   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_getWriteComment")]
XMLOutputStream_getWriteComment()6444   public static extern bool XMLOutputStream_getWriteComment();
6445 
6446   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_setWriteComment")]
XMLOutputStream_setWriteComment(bool jarg1)6447   public static extern void XMLOutputStream_setWriteComment(bool jarg1);
6448 
6449   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_getWriteTimestamp")]
XMLOutputStream_getWriteTimestamp()6450   public static extern bool XMLOutputStream_getWriteTimestamp();
6451 
6452   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_setWriteTimestamp")]
XMLOutputStream_setWriteTimestamp(bool jarg1)6453   public static extern void XMLOutputStream_setWriteTimestamp(bool jarg1);
6454 
6455   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_getLibraryName")]
XMLOutputStream_getLibraryName()6456   public static extern string XMLOutputStream_getLibraryName();
6457 
6458   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_setLibraryName")]
XMLOutputStream_setLibraryName(string jarg1)6459   public static extern void XMLOutputStream_setLibraryName(string jarg1);
6460 
6461   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_getLibraryVersion")]
XMLOutputStream_getLibraryVersion()6462   public static extern string XMLOutputStream_getLibraryVersion();
6463 
6464   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_setLibraryVersion")]
XMLOutputStream_setLibraryVersion(string jarg1)6465   public static extern void XMLOutputStream_setLibraryVersion(string jarg1);
6466 
6467   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_getIndent")]
XMLOutputStream_getIndent(global::System.Runtime.InteropServices.HandleRef jarg1)6468   public static extern uint XMLOutputStream_getIndent(global::System.Runtime.InteropServices.HandleRef jarg1);
6469 
6470   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLOutputStream_setIndent")]
XMLOutputStream_setIndent(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6471   public static extern void XMLOutputStream_setIndent(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6472 
6473   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputStringStream__SWIG_0")]
new_XMLOwningOutputStringStream__SWIG_0(string jarg1, bool jarg2, string jarg3, string jarg4)6474   public static extern global::System.IntPtr new_XMLOwningOutputStringStream__SWIG_0(string jarg1, bool jarg2, string jarg3, string jarg4);
6475 
6476   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputStringStream__SWIG_1")]
new_XMLOwningOutputStringStream__SWIG_1(string jarg1, bool jarg2, string jarg3)6477   public static extern global::System.IntPtr new_XMLOwningOutputStringStream__SWIG_1(string jarg1, bool jarg2, string jarg3);
6478 
6479   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputStringStream__SWIG_2")]
new_XMLOwningOutputStringStream__SWIG_2(string jarg1, bool jarg2)6480   public static extern global::System.IntPtr new_XMLOwningOutputStringStream__SWIG_2(string jarg1, bool jarg2);
6481 
6482   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputStringStream__SWIG_3")]
new_XMLOwningOutputStringStream__SWIG_3(string jarg1)6483   public static extern global::System.IntPtr new_XMLOwningOutputStringStream__SWIG_3(string jarg1);
6484 
6485   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputStringStream__SWIG_4")]
new_XMLOwningOutputStringStream__SWIG_4()6486   public static extern global::System.IntPtr new_XMLOwningOutputStringStream__SWIG_4();
6487 
6488   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLOwningOutputStringStream")]
delete_XMLOwningOutputStringStream(global::System.Runtime.InteropServices.HandleRef jarg1)6489   public static extern void delete_XMLOwningOutputStringStream(global::System.Runtime.InteropServices.HandleRef jarg1);
6490 
6491   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputFileStream__SWIG_0")]
new_XMLOwningOutputFileStream__SWIG_0(string jarg1, string jarg2, bool jarg3, string jarg4, string jarg5)6492   public static extern global::System.IntPtr new_XMLOwningOutputFileStream__SWIG_0(string jarg1, string jarg2, bool jarg3, string jarg4, string jarg5);
6493 
6494   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputFileStream__SWIG_1")]
new_XMLOwningOutputFileStream__SWIG_1(string jarg1, string jarg2, bool jarg3, string jarg4)6495   public static extern global::System.IntPtr new_XMLOwningOutputFileStream__SWIG_1(string jarg1, string jarg2, bool jarg3, string jarg4);
6496 
6497   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputFileStream__SWIG_2")]
new_XMLOwningOutputFileStream__SWIG_2(string jarg1, string jarg2, bool jarg3)6498   public static extern global::System.IntPtr new_XMLOwningOutputFileStream__SWIG_2(string jarg1, string jarg2, bool jarg3);
6499 
6500   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputFileStream__SWIG_3")]
new_XMLOwningOutputFileStream__SWIG_3(string jarg1, string jarg2)6501   public static extern global::System.IntPtr new_XMLOwningOutputFileStream__SWIG_3(string jarg1, string jarg2);
6502 
6503   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLOwningOutputFileStream__SWIG_4")]
new_XMLOwningOutputFileStream__SWIG_4(string jarg1)6504   public static extern global::System.IntPtr new_XMLOwningOutputFileStream__SWIG_4(string jarg1);
6505 
6506   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLOwningOutputFileStream")]
delete_XMLOwningOutputFileStream(global::System.Runtime.InteropServices.HandleRef jarg1)6507   public static extern void delete_XMLOwningOutputFileStream(global::System.Runtime.InteropServices.HandleRef jarg1);
6508 
6509   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLInputStream__SWIG_0")]
new_XMLInputStream__SWIG_0(string jarg1, bool jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)6510   public static extern global::System.IntPtr new_XMLInputStream__SWIG_0(string jarg1, bool jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
6511 
6512   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLInputStream__SWIG_1")]
new_XMLInputStream__SWIG_1(string jarg1, bool jarg2, string jarg3)6513   public static extern global::System.IntPtr new_XMLInputStream__SWIG_1(string jarg1, bool jarg2, string jarg3);
6514 
6515   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLInputStream__SWIG_2")]
new_XMLInputStream__SWIG_2(string jarg1, bool jarg2)6516   public static extern global::System.IntPtr new_XMLInputStream__SWIG_2(string jarg1, bool jarg2);
6517 
6518   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLInputStream__SWIG_3")]
new_XMLInputStream__SWIG_3(string jarg1)6519   public static extern global::System.IntPtr new_XMLInputStream__SWIG_3(string jarg1);
6520 
6521   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLInputStream")]
delete_XMLInputStream(global::System.Runtime.InteropServices.HandleRef jarg1)6522   public static extern void delete_XMLInputStream(global::System.Runtime.InteropServices.HandleRef jarg1);
6523 
6524   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_getEncoding")]
XMLInputStream_getEncoding(global::System.Runtime.InteropServices.HandleRef jarg1)6525   public static extern string XMLInputStream_getEncoding(global::System.Runtime.InteropServices.HandleRef jarg1);
6526 
6527   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_getVersion")]
XMLInputStream_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1)6528   public static extern string XMLInputStream_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
6529 
6530   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_getErrorLog")]
XMLInputStream_getErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1)6531   public static extern global::System.IntPtr XMLInputStream_getErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1);
6532 
6533   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_isEOF")]
XMLInputStream_isEOF(global::System.Runtime.InteropServices.HandleRef jarg1)6534   public static extern bool XMLInputStream_isEOF(global::System.Runtime.InteropServices.HandleRef jarg1);
6535 
6536   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_isError")]
XMLInputStream_isError(global::System.Runtime.InteropServices.HandleRef jarg1)6537   public static extern bool XMLInputStream_isError(global::System.Runtime.InteropServices.HandleRef jarg1);
6538 
6539   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_isGood")]
XMLInputStream_isGood(global::System.Runtime.InteropServices.HandleRef jarg1)6540   public static extern bool XMLInputStream_isGood(global::System.Runtime.InteropServices.HandleRef jarg1);
6541 
6542   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_next")]
XMLInputStream_next(global::System.Runtime.InteropServices.HandleRef jarg1)6543   public static extern global::System.IntPtr XMLInputStream_next(global::System.Runtime.InteropServices.HandleRef jarg1);
6544 
6545   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_peek")]
XMLInputStream_peek(global::System.Runtime.InteropServices.HandleRef jarg1)6546   public static extern global::System.IntPtr XMLInputStream_peek(global::System.Runtime.InteropServices.HandleRef jarg1);
6547 
6548   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_skipPastEnd")]
XMLInputStream_skipPastEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6549   public static extern void XMLInputStream_skipPastEnd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6550 
6551   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_skipText")]
XMLInputStream_skipText(global::System.Runtime.InteropServices.HandleRef jarg1)6552   public static extern void XMLInputStream_skipText(global::System.Runtime.InteropServices.HandleRef jarg1);
6553 
6554   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_setErrorLog")]
XMLInputStream_setErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6555   public static extern int XMLInputStream_setErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6556 
6557   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_toString")]
XMLInputStream_toString(global::System.Runtime.InteropServices.HandleRef jarg1)6558   public static extern string XMLInputStream_toString(global::System.Runtime.InteropServices.HandleRef jarg1);
6559 
6560   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_getSBMLNamespaces")]
XMLInputStream_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)6561   public static extern global::System.IntPtr XMLInputStream_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
6562 
6563   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_setSBMLNamespaces")]
XMLInputStream_setSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6564   public static extern void XMLInputStream_setSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6565 
6566   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_determineNumberChildren__SWIG_0")]
XMLInputStream_determineNumberChildren__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6567   public static extern uint XMLInputStream_determineNumberChildren__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6568 
6569   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_determineNumberChildren__SWIG_1")]
XMLInputStream_determineNumberChildren__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)6570   public static extern uint XMLInputStream_determineNumberChildren__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6571 
6572   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_determineNumSpecificChildren")]
XMLInputStream_determineNumSpecificChildren(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6573   public static extern uint XMLInputStream_determineNumSpecificChildren(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6574 
6575   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLInputStream_containsChild")]
XMLInputStream_containsChild(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)6576   public static extern bool XMLInputStream_containsChild(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
6577 
6578   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_0")]
new_XMLError__SWIG_0(int jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6)6579   public static extern global::System.IntPtr new_XMLError__SWIG_0(int jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6);
6580 
6581   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_1")]
new_XMLError__SWIG_1(int jarg1, string jarg2, long jarg3, long jarg4, long jarg5)6582   public static extern global::System.IntPtr new_XMLError__SWIG_1(int jarg1, string jarg2, long jarg3, long jarg4, long jarg5);
6583 
6584   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_2")]
new_XMLError__SWIG_2(int jarg1, string jarg2, long jarg3, long jarg4)6585   public static extern global::System.IntPtr new_XMLError__SWIG_2(int jarg1, string jarg2, long jarg3, long jarg4);
6586 
6587   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_3")]
new_XMLError__SWIG_3(int jarg1, string jarg2, long jarg3)6588   public static extern global::System.IntPtr new_XMLError__SWIG_3(int jarg1, string jarg2, long jarg3);
6589 
6590   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_4")]
new_XMLError__SWIG_4(int jarg1, string jarg2)6591   public static extern global::System.IntPtr new_XMLError__SWIG_4(int jarg1, string jarg2);
6592 
6593   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_5")]
new_XMLError__SWIG_5(int jarg1)6594   public static extern global::System.IntPtr new_XMLError__SWIG_5(int jarg1);
6595 
6596   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_6")]
new_XMLError__SWIG_6()6597   public static extern global::System.IntPtr new_XMLError__SWIG_6();
6598 
6599   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLError__SWIG_7")]
new_XMLError__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1)6600   public static extern global::System.IntPtr new_XMLError__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1);
6601 
6602   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLError")]
delete_XMLError(global::System.Runtime.InteropServices.HandleRef jarg1)6603   public static extern void delete_XMLError(global::System.Runtime.InteropServices.HandleRef jarg1);
6604 
6605   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getErrorId")]
XMLError_getErrorId(global::System.Runtime.InteropServices.HandleRef jarg1)6606   public static extern uint XMLError_getErrorId(global::System.Runtime.InteropServices.HandleRef jarg1);
6607 
6608   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getMessage")]
XMLError_getMessage(global::System.Runtime.InteropServices.HandleRef jarg1)6609   public static extern string XMLError_getMessage(global::System.Runtime.InteropServices.HandleRef jarg1);
6610 
6611   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getShortMessage")]
XMLError_getShortMessage(global::System.Runtime.InteropServices.HandleRef jarg1)6612   public static extern string XMLError_getShortMessage(global::System.Runtime.InteropServices.HandleRef jarg1);
6613 
6614   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getLine")]
XMLError_getLine(global::System.Runtime.InteropServices.HandleRef jarg1)6615   public static extern uint XMLError_getLine(global::System.Runtime.InteropServices.HandleRef jarg1);
6616 
6617   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getColumn")]
XMLError_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1)6618   public static extern uint XMLError_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1);
6619 
6620   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getSeverity")]
XMLError_getSeverity(global::System.Runtime.InteropServices.HandleRef jarg1)6621   public static extern uint XMLError_getSeverity(global::System.Runtime.InteropServices.HandleRef jarg1);
6622 
6623   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getSeverityAsString")]
XMLError_getSeverityAsString(global::System.Runtime.InteropServices.HandleRef jarg1)6624   public static extern string XMLError_getSeverityAsString(global::System.Runtime.InteropServices.HandleRef jarg1);
6625 
6626   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getCategory")]
XMLError_getCategory(global::System.Runtime.InteropServices.HandleRef jarg1)6627   public static extern uint XMLError_getCategory(global::System.Runtime.InteropServices.HandleRef jarg1);
6628 
6629   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getCategoryAsString")]
XMLError_getCategoryAsString(global::System.Runtime.InteropServices.HandleRef jarg1)6630   public static extern string XMLError_getCategoryAsString(global::System.Runtime.InteropServices.HandleRef jarg1);
6631 
6632   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isInfo")]
XMLError_isInfo(global::System.Runtime.InteropServices.HandleRef jarg1)6633   public static extern bool XMLError_isInfo(global::System.Runtime.InteropServices.HandleRef jarg1);
6634 
6635   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isWarning")]
XMLError_isWarning(global::System.Runtime.InteropServices.HandleRef jarg1)6636   public static extern bool XMLError_isWarning(global::System.Runtime.InteropServices.HandleRef jarg1);
6637 
6638   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isError")]
XMLError_isError(global::System.Runtime.InteropServices.HandleRef jarg1)6639   public static extern bool XMLError_isError(global::System.Runtime.InteropServices.HandleRef jarg1);
6640 
6641   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isFatal")]
XMLError_isFatal(global::System.Runtime.InteropServices.HandleRef jarg1)6642   public static extern bool XMLError_isFatal(global::System.Runtime.InteropServices.HandleRef jarg1);
6643 
6644   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isInternal")]
XMLError_isInternal(global::System.Runtime.InteropServices.HandleRef jarg1)6645   public static extern bool XMLError_isInternal(global::System.Runtime.InteropServices.HandleRef jarg1);
6646 
6647   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isSystem")]
XMLError_isSystem(global::System.Runtime.InteropServices.HandleRef jarg1)6648   public static extern bool XMLError_isSystem(global::System.Runtime.InteropServices.HandleRef jarg1);
6649 
6650   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isXML")]
XMLError_isXML(global::System.Runtime.InteropServices.HandleRef jarg1)6651   public static extern bool XMLError_isXML(global::System.Runtime.InteropServices.HandleRef jarg1);
6652 
6653   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_isValid")]
XMLError_isValid(global::System.Runtime.InteropServices.HandleRef jarg1)6654   public static extern bool XMLError_isValid(global::System.Runtime.InteropServices.HandleRef jarg1);
6655 
6656   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_setLine")]
XMLError_setLine(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6657   public static extern int XMLError_setLine(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6658 
6659   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_setColumn")]
XMLError_setColumn(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6660   public static extern int XMLError_setColumn(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6661 
6662   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getStandardMessage")]
XMLError_getStandardMessage(int jarg1)6663   public static extern string XMLError_getStandardMessage(int jarg1);
6664 
6665   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getPackage")]
XMLError_getPackage(global::System.Runtime.InteropServices.HandleRef jarg1)6666   public static extern string XMLError_getPackage(global::System.Runtime.InteropServices.HandleRef jarg1);
6667 
6668   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLError_getErrorIdOffset")]
XMLError_getErrorIdOffset(global::System.Runtime.InteropServices.HandleRef jarg1)6669   public static extern uint XMLError_getErrorIdOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
6670 
6671   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_getNumErrors")]
XMLErrorLog_getNumErrors(global::System.Runtime.InteropServices.HandleRef jarg1)6672   public static extern uint XMLErrorLog_getNumErrors(global::System.Runtime.InteropServices.HandleRef jarg1);
6673 
6674   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_getError")]
XMLErrorLog_getError(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6675   public static extern global::System.IntPtr XMLErrorLog_getError(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6676 
6677   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_clearLog")]
XMLErrorLog_clearLog(global::System.Runtime.InteropServices.HandleRef jarg1)6678   public static extern void XMLErrorLog_clearLog(global::System.Runtime.InteropServices.HandleRef jarg1);
6679 
6680   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLErrorLog__SWIG_0")]
new_XMLErrorLog__SWIG_0()6681   public static extern global::System.IntPtr new_XMLErrorLog__SWIG_0();
6682 
6683   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_XMLErrorLog__SWIG_1")]
new_XMLErrorLog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)6684   public static extern global::System.IntPtr new_XMLErrorLog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6685 
6686   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_XMLErrorLog")]
delete_XMLErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1)6687   public static extern void delete_XMLErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1);
6688 
6689   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_add__SWIG_0")]
XMLErrorLog_add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6690   public static extern void XMLErrorLog_add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6691 
6692   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_add__SWIG_1")]
XMLErrorLog_add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6693   public static extern void XMLErrorLog_add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6694 
6695   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_toString")]
XMLErrorLog_toString(global::System.Runtime.InteropServices.HandleRef jarg1)6696   public static extern string XMLErrorLog_toString(global::System.Runtime.InteropServices.HandleRef jarg1);
6697 
6698   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_printErrors__SWIG_0")]
XMLErrorLog_printErrors__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6699   public static extern void XMLErrorLog_printErrors__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6700 
6701   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_printErrors__SWIG_1")]
XMLErrorLog_printErrors__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)6702   public static extern void XMLErrorLog_printErrors__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6703 
6704   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_printErrors__SWIG_2")]
XMLErrorLog_printErrors__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3)6705   public static extern void XMLErrorLog_printErrors__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3);
6706 
6707   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_isSeverityOverridden")]
XMLErrorLog_isSeverityOverridden(global::System.Runtime.InteropServices.HandleRef jarg1)6708   public static extern bool XMLErrorLog_isSeverityOverridden(global::System.Runtime.InteropServices.HandleRef jarg1);
6709 
6710   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_unsetSeverityOverride")]
XMLErrorLog_unsetSeverityOverride(global::System.Runtime.InteropServices.HandleRef jarg1)6711   public static extern void XMLErrorLog_unsetSeverityOverride(global::System.Runtime.InteropServices.HandleRef jarg1);
6712 
6713   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_getSeverityOverride")]
XMLErrorLog_getSeverityOverride(global::System.Runtime.InteropServices.HandleRef jarg1)6714   public static extern int XMLErrorLog_getSeverityOverride(global::System.Runtime.InteropServices.HandleRef jarg1);
6715 
6716   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_setSeverityOverride")]
XMLErrorLog_setSeverityOverride(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6717   public static extern void XMLErrorLog_setSeverityOverride(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6718 
6719   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_changeErrorSeverity__SWIG_0")]
XMLErrorLog_changeErrorSeverity__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, string jarg4)6720   public static extern void XMLErrorLog_changeErrorSeverity__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, string jarg4);
6721 
6722   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_changeErrorSeverity__SWIG_1")]
XMLErrorLog_changeErrorSeverity__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)6723   public static extern void XMLErrorLog_changeErrorSeverity__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
6724 
6725   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLErrorLog_contains")]
XMLErrorLog_contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6726   public static extern bool XMLErrorLog_contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6727 
6728   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_getError")]
SBMLErrorLog_getError(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6729   public static extern global::System.IntPtr SBMLErrorLog_getError(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6730 
6731   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_getErrorWithSeverity")]
SBMLErrorLog_getErrorWithSeverity(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)6732   public static extern global::System.IntPtr SBMLErrorLog_getErrorWithSeverity(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
6733 
6734   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_getNumFailsWithSeverity__SWIG_0")]
SBMLErrorLog_getNumFailsWithSeverity__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6735   public static extern uint SBMLErrorLog_getNumFailsWithSeverity__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6736 
6737   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLErrorLog__SWIG_0")]
new_SBMLErrorLog__SWIG_0()6738   public static extern global::System.IntPtr new_SBMLErrorLog__SWIG_0();
6739 
6740   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLErrorLog__SWIG_1")]
new_SBMLErrorLog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)6741   public static extern global::System.IntPtr new_SBMLErrorLog__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
6742 
6743   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLErrorLog")]
delete_SBMLErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1)6744   public static extern void delete_SBMLErrorLog(global::System.Runtime.InteropServices.HandleRef jarg1);
6745 
6746   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_0")]
SBMLErrorLog_logError__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6, long jarg7, long jarg8, long jarg9)6747   public static extern void SBMLErrorLog_logError__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6, long jarg7, long jarg8, long jarg9);
6748 
6749   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_1")]
SBMLErrorLog_logError__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6, long jarg7, long jarg8)6750   public static extern void SBMLErrorLog_logError__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6, long jarg7, long jarg8);
6751 
6752   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_2")]
SBMLErrorLog_logError__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6, long jarg7)6753   public static extern void SBMLErrorLog_logError__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6, long jarg7);
6754 
6755   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_3")]
SBMLErrorLog_logError__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6)6756   public static extern void SBMLErrorLog_logError__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5, long jarg6);
6757 
6758   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_4")]
SBMLErrorLog_logError__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5)6759   public static extern void SBMLErrorLog_logError__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4, string jarg5);
6760 
6761   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_5")]
SBMLErrorLog_logError__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)6762   public static extern void SBMLErrorLog_logError__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
6763 
6764   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_6")]
SBMLErrorLog_logError__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)6765   public static extern void SBMLErrorLog_logError__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
6766 
6767   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_7")]
SBMLErrorLog_logError__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6768   public static extern void SBMLErrorLog_logError__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6769 
6770   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logError__SWIG_8")]
SBMLErrorLog_logError__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1)6771   public static extern void SBMLErrorLog_logError__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1);
6772 
6773   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_0")]
SBMLErrorLog_logPackageError__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8, long jarg9, long jarg10, long jarg11)6774   public static extern void SBMLErrorLog_logPackageError__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8, long jarg9, long jarg10, long jarg11);
6775 
6776   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_1")]
SBMLErrorLog_logPackageError__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8, long jarg9, long jarg10)6777   public static extern void SBMLErrorLog_logPackageError__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8, long jarg9, long jarg10);
6778 
6779   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_2")]
SBMLErrorLog_logPackageError__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8, long jarg9)6780   public static extern void SBMLErrorLog_logPackageError__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8, long jarg9);
6781 
6782   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_3")]
SBMLErrorLog_logPackageError__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8)6783   public static extern void SBMLErrorLog_logPackageError__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7, long jarg8);
6784 
6785   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_4")]
SBMLErrorLog_logPackageError__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7)6786   public static extern void SBMLErrorLog_logPackageError__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6, string jarg7);
6787 
6788   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_5")]
SBMLErrorLog_logPackageError__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6)6789   public static extern void SBMLErrorLog_logPackageError__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5, long jarg6);
6790 
6791   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_6")]
SBMLErrorLog_logPackageError__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5)6792   public static extern void SBMLErrorLog_logPackageError__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5);
6793 
6794   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_7")]
SBMLErrorLog_logPackageError__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)6795   public static extern void SBMLErrorLog_logPackageError__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
6796 
6797   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_8")]
SBMLErrorLog_logPackageError__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3)6798   public static extern void SBMLErrorLog_logPackageError__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3);
6799 
6800   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_9")]
SBMLErrorLog_logPackageError__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6801   public static extern void SBMLErrorLog_logPackageError__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6802 
6803   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_logPackageError__SWIG_10")]
SBMLErrorLog_logPackageError__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1)6804   public static extern void SBMLErrorLog_logPackageError__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1);
6805 
6806   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_add")]
SBMLErrorLog_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6807   public static extern void SBMLErrorLog_add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6808 
6809   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_remove")]
SBMLErrorLog_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6810   public static extern void SBMLErrorLog_remove(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6811 
6812   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_removeAll")]
SBMLErrorLog_removeAll(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6813   public static extern void SBMLErrorLog_removeAll(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6814 
6815   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_contains")]
SBMLErrorLog_contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6816   public static extern bool SBMLErrorLog_contains(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6817 
6818   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_0")]
new_SBMLError__SWIG_0(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7, long jarg8, string jarg9, long jarg10)6819   public static extern global::System.IntPtr new_SBMLError__SWIG_0(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7, long jarg8, string jarg9, long jarg10);
6820 
6821   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_1")]
new_SBMLError__SWIG_1(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7, long jarg8, string jarg9)6822   public static extern global::System.IntPtr new_SBMLError__SWIG_1(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7, long jarg8, string jarg9);
6823 
6824   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_2")]
new_SBMLError__SWIG_2(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7, long jarg8)6825   public static extern global::System.IntPtr new_SBMLError__SWIG_2(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7, long jarg8);
6826 
6827   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_3")]
new_SBMLError__SWIG_3(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7)6828   public static extern global::System.IntPtr new_SBMLError__SWIG_3(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6, long jarg7);
6829 
6830   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_4")]
new_SBMLError__SWIG_4(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6)6831   public static extern global::System.IntPtr new_SBMLError__SWIG_4(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5, long jarg6);
6832 
6833   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_5")]
new_SBMLError__SWIG_5(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5)6834   public static extern global::System.IntPtr new_SBMLError__SWIG_5(long jarg1, long jarg2, long jarg3, string jarg4, long jarg5);
6835 
6836   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_6")]
new_SBMLError__SWIG_6(long jarg1, long jarg2, long jarg3, string jarg4)6837   public static extern global::System.IntPtr new_SBMLError__SWIG_6(long jarg1, long jarg2, long jarg3, string jarg4);
6838 
6839   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_7")]
new_SBMLError__SWIG_7(long jarg1, long jarg2, long jarg3)6840   public static extern global::System.IntPtr new_SBMLError__SWIG_7(long jarg1, long jarg2, long jarg3);
6841 
6842   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_8")]
new_SBMLError__SWIG_8(long jarg1, long jarg2)6843   public static extern global::System.IntPtr new_SBMLError__SWIG_8(long jarg1, long jarg2);
6844 
6845   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_9")]
new_SBMLError__SWIG_9(long jarg1)6846   public static extern global::System.IntPtr new_SBMLError__SWIG_9(long jarg1);
6847 
6848   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_10")]
new_SBMLError__SWIG_10()6849   public static extern global::System.IntPtr new_SBMLError__SWIG_10();
6850 
6851   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLError__SWIG_11")]
new_SBMLError__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1)6852   public static extern global::System.IntPtr new_SBMLError__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1);
6853 
6854   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLError")]
delete_SBMLError(global::System.Runtime.InteropServices.HandleRef jarg1)6855   public static extern void delete_SBMLError(global::System.Runtime.InteropServices.HandleRef jarg1);
6856 
6857   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CVTerm__SWIG_0")]
new_CVTerm__SWIG_0(int jarg1)6858   public static extern global::System.IntPtr new_CVTerm__SWIG_0(int jarg1);
6859 
6860   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CVTerm__SWIG_1")]
new_CVTerm__SWIG_1()6861   public static extern global::System.IntPtr new_CVTerm__SWIG_1();
6862 
6863   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CVTerm__SWIG_2")]
new_CVTerm__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)6864   public static extern global::System.IntPtr new_CVTerm__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
6865 
6866   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_CVTerm")]
delete_CVTerm(global::System.Runtime.InteropServices.HandleRef jarg1)6867   public static extern void delete_CVTerm(global::System.Runtime.InteropServices.HandleRef jarg1);
6868 
6869   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_CVTerm__SWIG_3")]
new_CVTerm__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1)6870   public static extern global::System.IntPtr new_CVTerm__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1);
6871 
6872   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_clone")]
CVTerm_clone(global::System.Runtime.InteropServices.HandleRef jarg1)6873   public static extern global::System.IntPtr CVTerm_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
6874 
6875   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getQualifierType__SWIG_0")]
CVTerm_getQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)6876   public static extern int CVTerm_getQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6877 
6878   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getModelQualifierType__SWIG_0")]
CVTerm_getModelQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)6879   public static extern int CVTerm_getModelQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6880 
6881   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getBiologicalQualifierType__SWIG_0")]
CVTerm_getBiologicalQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)6882   public static extern int CVTerm_getBiologicalQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6883 
6884   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getResources__SWIG_0")]
CVTerm_getResources__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)6885   public static extern global::System.IntPtr CVTerm_getResources__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6886 
6887   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getNumResources__SWIG_0")]
CVTerm_getNumResources__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)6888   public static extern uint CVTerm_getNumResources__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6889 
6890   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getResourceURI__SWIG_0")]
CVTerm_getResourceURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6891   public static extern string CVTerm_getResourceURI__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6892 
6893   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_setQualifierType")]
CVTerm_setQualifierType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6894   public static extern int CVTerm_setQualifierType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6895 
6896   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_setModelQualifierType__SWIG_0")]
CVTerm_setModelQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6897   public static extern int CVTerm_setModelQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6898 
6899   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_setBiologicalQualifierType__SWIG_0")]
CVTerm_setBiologicalQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)6900   public static extern int CVTerm_setBiologicalQualifierType__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
6901 
6902   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_setModelQualifierType__SWIG_1")]
CVTerm_setModelQualifierType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6903   public static extern int CVTerm_setModelQualifierType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6904 
6905   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_setBiologicalQualifierType__SWIG_1")]
CVTerm_setBiologicalQualifierType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6906   public static extern int CVTerm_setBiologicalQualifierType__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6907 
6908   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_addResource")]
CVTerm_addResource(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6909   public static extern int CVTerm_addResource(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6910 
6911   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_removeResource")]
CVTerm_removeResource(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)6912   public static extern int CVTerm_removeResource(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
6913 
6914   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_hasRequiredAttributes__SWIG_0")]
CVTerm_hasRequiredAttributes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)6915   public static extern bool CVTerm_hasRequiredAttributes__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6916 
6917   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_hasBeenModified")]
CVTerm_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1)6918   public static extern bool CVTerm_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1);
6919 
6920   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_resetModifiedFlags")]
CVTerm_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1)6921   public static extern void CVTerm_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
6922 
6923   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getNumNestedCVTerms")]
CVTerm_getNumNestedCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1)6924   public static extern uint CVTerm_getNumNestedCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1);
6925 
6926   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getNestedCVTerm__SWIG_0")]
CVTerm_getNestedCVTerm__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6927   public static extern global::System.IntPtr CVTerm_getNestedCVTerm__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6928 
6929   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_getListNestedCVTerms__SWIG_0")]
CVTerm_getListNestedCVTerms__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)6930   public static extern global::System.IntPtr CVTerm_getListNestedCVTerms__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
6931 
6932   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_addNestedCVTerm")]
CVTerm_addNestedCVTerm(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)6933   public static extern int CVTerm_addNestedCVTerm(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
6934 
6935   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CVTerm_removeNestedCVTerm")]
CVTerm_removeNestedCVTerm(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)6936   public static extern global::System.IntPtr CVTerm_removeNestedCVTerm(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
6937 
6938   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelQualifierType_toString")]
ModelQualifierType_toString(int jarg1)6939   public static extern string ModelQualifierType_toString(int jarg1);
6940 
6941   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_BiolQualifierType_toString")]
BiolQualifierType_toString(int jarg1)6942   public static extern string BiolQualifierType_toString(int jarg1);
6943 
6944   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelQualifierType_fromString")]
ModelQualifierType_fromString(string jarg1)6945   public static extern int ModelQualifierType_fromString(string jarg1);
6946 
6947   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_BiolQualifierType_fromString")]
BiolQualifierType_fromString(string jarg1)6948   public static extern int BiolQualifierType_fromString(string jarg1);
6949 
6950   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_0")]
new_Date__SWIG_0(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, long jarg8, long jarg9)6951   public static extern global::System.IntPtr new_Date__SWIG_0(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, long jarg8, long jarg9);
6952 
6953   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_1")]
new_Date__SWIG_1(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, long jarg8)6954   public static extern global::System.IntPtr new_Date__SWIG_1(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7, long jarg8);
6955 
6956   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_2")]
new_Date__SWIG_2(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7)6957   public static extern global::System.IntPtr new_Date__SWIG_2(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6, long jarg7);
6958 
6959   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_3")]
new_Date__SWIG_3(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6)6960   public static extern global::System.IntPtr new_Date__SWIG_3(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5, long jarg6);
6961 
6962   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_4")]
new_Date__SWIG_4(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5)6963   public static extern global::System.IntPtr new_Date__SWIG_4(long jarg1, long jarg2, long jarg3, long jarg4, long jarg5);
6964 
6965   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_5")]
new_Date__SWIG_5(long jarg1, long jarg2, long jarg3, long jarg4)6966   public static extern global::System.IntPtr new_Date__SWIG_5(long jarg1, long jarg2, long jarg3, long jarg4);
6967 
6968   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_6")]
new_Date__SWIG_6(long jarg1, long jarg2, long jarg3)6969   public static extern global::System.IntPtr new_Date__SWIG_6(long jarg1, long jarg2, long jarg3);
6970 
6971   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_7")]
new_Date__SWIG_7(long jarg1, long jarg2)6972   public static extern global::System.IntPtr new_Date__SWIG_7(long jarg1, long jarg2);
6973 
6974   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_8")]
new_Date__SWIG_8(long jarg1)6975   public static extern global::System.IntPtr new_Date__SWIG_8(long jarg1);
6976 
6977   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_9")]
new_Date__SWIG_9()6978   public static extern global::System.IntPtr new_Date__SWIG_9();
6979 
6980   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_10")]
new_Date__SWIG_10(string jarg1)6981   public static extern global::System.IntPtr new_Date__SWIG_10(string jarg1);
6982 
6983   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Date")]
delete_Date(global::System.Runtime.InteropServices.HandleRef jarg1)6984   public static extern void delete_Date(global::System.Runtime.InteropServices.HandleRef jarg1);
6985 
6986   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Date__SWIG_11")]
new_Date__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1)6987   public static extern global::System.IntPtr new_Date__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1);
6988 
6989   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_clone")]
Date_clone(global::System.Runtime.InteropServices.HandleRef jarg1)6990   public static extern global::System.IntPtr Date_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
6991 
6992   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getYear")]
Date_getYear(global::System.Runtime.InteropServices.HandleRef jarg1)6993   public static extern uint Date_getYear(global::System.Runtime.InteropServices.HandleRef jarg1);
6994 
6995   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getMonth")]
Date_getMonth(global::System.Runtime.InteropServices.HandleRef jarg1)6996   public static extern uint Date_getMonth(global::System.Runtime.InteropServices.HandleRef jarg1);
6997 
6998   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getDay")]
Date_getDay(global::System.Runtime.InteropServices.HandleRef jarg1)6999   public static extern uint Date_getDay(global::System.Runtime.InteropServices.HandleRef jarg1);
7000 
7001   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getHour")]
Date_getHour(global::System.Runtime.InteropServices.HandleRef jarg1)7002   public static extern uint Date_getHour(global::System.Runtime.InteropServices.HandleRef jarg1);
7003 
7004   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getMinute")]
Date_getMinute(global::System.Runtime.InteropServices.HandleRef jarg1)7005   public static extern uint Date_getMinute(global::System.Runtime.InteropServices.HandleRef jarg1);
7006 
7007   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getSecond")]
Date_getSecond(global::System.Runtime.InteropServices.HandleRef jarg1)7008   public static extern uint Date_getSecond(global::System.Runtime.InteropServices.HandleRef jarg1);
7009 
7010   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getSignOffset")]
Date_getSignOffset(global::System.Runtime.InteropServices.HandleRef jarg1)7011   public static extern uint Date_getSignOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
7012 
7013   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getHoursOffset")]
Date_getHoursOffset(global::System.Runtime.InteropServices.HandleRef jarg1)7014   public static extern uint Date_getHoursOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
7015 
7016   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getMinutesOffset")]
Date_getMinutesOffset(global::System.Runtime.InteropServices.HandleRef jarg1)7017   public static extern uint Date_getMinutesOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
7018 
7019   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_getDateAsString")]
Date_getDateAsString(global::System.Runtime.InteropServices.HandleRef jarg1)7020   public static extern string Date_getDateAsString(global::System.Runtime.InteropServices.HandleRef jarg1);
7021 
7022   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setYear")]
Date_setYear(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7023   public static extern int Date_setYear(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7024 
7025   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setMonth")]
Date_setMonth(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7026   public static extern int Date_setMonth(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7027 
7028   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setDay")]
Date_setDay(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7029   public static extern int Date_setDay(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7030 
7031   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setHour")]
Date_setHour(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7032   public static extern int Date_setHour(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7033 
7034   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setMinute")]
Date_setMinute(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7035   public static extern int Date_setMinute(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7036 
7037   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setSecond")]
Date_setSecond(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7038   public static extern int Date_setSecond(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7039 
7040   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setSignOffset")]
Date_setSignOffset(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7041   public static extern int Date_setSignOffset(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7042 
7043   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setHoursOffset")]
Date_setHoursOffset(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7044   public static extern int Date_setHoursOffset(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7045 
7046   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setMinutesOffset")]
Date_setMinutesOffset(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7047   public static extern int Date_setMinutesOffset(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7048 
7049   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_setDateAsString")]
Date_setDateAsString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7050   public static extern int Date_setDateAsString(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7051 
7052   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_representsValidDate")]
Date_representsValidDate(global::System.Runtime.InteropServices.HandleRef jarg1)7053   public static extern bool Date_representsValidDate(global::System.Runtime.InteropServices.HandleRef jarg1);
7054 
7055   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_hasBeenModified")]
Date_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1)7056   public static extern bool Date_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1);
7057 
7058   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Date_resetModifiedFlags")]
Date_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1)7059   public static extern void Date_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
7060 
7061   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModelCreator__SWIG_0")]
new_ModelCreator__SWIG_0()7062   public static extern global::System.IntPtr new_ModelCreator__SWIG_0();
7063 
7064   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModelCreator__SWIG_1")]
new_ModelCreator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)7065   public static extern global::System.IntPtr new_ModelCreator__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7066 
7067   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ModelCreator")]
delete_ModelCreator(global::System.Runtime.InteropServices.HandleRef jarg1)7068   public static extern void delete_ModelCreator(global::System.Runtime.InteropServices.HandleRef jarg1);
7069 
7070   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModelCreator__SWIG_2")]
new_ModelCreator__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)7071   public static extern global::System.IntPtr new_ModelCreator__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
7072 
7073   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_clone")]
ModelCreator_clone(global::System.Runtime.InteropServices.HandleRef jarg1)7074   public static extern global::System.IntPtr ModelCreator_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
7075 
7076   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_getFamilyName")]
ModelCreator_getFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1)7077   public static extern string ModelCreator_getFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1);
7078 
7079   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_getGivenName")]
ModelCreator_getGivenName(global::System.Runtime.InteropServices.HandleRef jarg1)7080   public static extern string ModelCreator_getGivenName(global::System.Runtime.InteropServices.HandleRef jarg1);
7081 
7082   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_getEmail")]
ModelCreator_getEmail(global::System.Runtime.InteropServices.HandleRef jarg1)7083   public static extern string ModelCreator_getEmail(global::System.Runtime.InteropServices.HandleRef jarg1);
7084 
7085   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_getOrganization")]
ModelCreator_getOrganization(global::System.Runtime.InteropServices.HandleRef jarg1)7086   public static extern string ModelCreator_getOrganization(global::System.Runtime.InteropServices.HandleRef jarg1);
7087 
7088   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_getOrganisation")]
ModelCreator_getOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1)7089   public static extern string ModelCreator_getOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1);
7090 
7091   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_getName")]
ModelCreator_getName(global::System.Runtime.InteropServices.HandleRef jarg1)7092   public static extern string ModelCreator_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
7093 
7094   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_isSetFamilyName")]
ModelCreator_isSetFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1)7095   public static extern bool ModelCreator_isSetFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1);
7096 
7097   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_isSetGivenName")]
ModelCreator_isSetGivenName(global::System.Runtime.InteropServices.HandleRef jarg1)7098   public static extern bool ModelCreator_isSetGivenName(global::System.Runtime.InteropServices.HandleRef jarg1);
7099 
7100   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_isSetEmail")]
ModelCreator_isSetEmail(global::System.Runtime.InteropServices.HandleRef jarg1)7101   public static extern bool ModelCreator_isSetEmail(global::System.Runtime.InteropServices.HandleRef jarg1);
7102 
7103   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_isSetOrganization")]
ModelCreator_isSetOrganization(global::System.Runtime.InteropServices.HandleRef jarg1)7104   public static extern bool ModelCreator_isSetOrganization(global::System.Runtime.InteropServices.HandleRef jarg1);
7105 
7106   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_isSetOrganisation")]
ModelCreator_isSetOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1)7107   public static extern bool ModelCreator_isSetOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1);
7108 
7109   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_isSetName")]
ModelCreator_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1)7110   public static extern bool ModelCreator_isSetName(global::System.Runtime.InteropServices.HandleRef jarg1);
7111 
7112   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_setFamilyName")]
ModelCreator_setFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7113   public static extern int ModelCreator_setFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7114 
7115   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_setGivenName")]
ModelCreator_setGivenName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7116   public static extern int ModelCreator_setGivenName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7117 
7118   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_setEmail")]
ModelCreator_setEmail(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7119   public static extern int ModelCreator_setEmail(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7120 
7121   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_setOrganization")]
ModelCreator_setOrganization(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7122   public static extern int ModelCreator_setOrganization(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7123 
7124   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_setOrganisation")]
ModelCreator_setOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7125   public static extern int ModelCreator_setOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7126 
7127   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_setName")]
ModelCreator_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7128   public static extern int ModelCreator_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7129 
7130   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_unsetFamilyName")]
ModelCreator_unsetFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1)7131   public static extern int ModelCreator_unsetFamilyName(global::System.Runtime.InteropServices.HandleRef jarg1);
7132 
7133   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_unsetGivenName")]
ModelCreator_unsetGivenName(global::System.Runtime.InteropServices.HandleRef jarg1)7134   public static extern int ModelCreator_unsetGivenName(global::System.Runtime.InteropServices.HandleRef jarg1);
7135 
7136   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_unsetEmail")]
ModelCreator_unsetEmail(global::System.Runtime.InteropServices.HandleRef jarg1)7137   public static extern int ModelCreator_unsetEmail(global::System.Runtime.InteropServices.HandleRef jarg1);
7138 
7139   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_unsetOrganization")]
ModelCreator_unsetOrganization(global::System.Runtime.InteropServices.HandleRef jarg1)7140   public static extern int ModelCreator_unsetOrganization(global::System.Runtime.InteropServices.HandleRef jarg1);
7141 
7142   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_unsetOrganisation")]
ModelCreator_unsetOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1)7143   public static extern int ModelCreator_unsetOrganisation(global::System.Runtime.InteropServices.HandleRef jarg1);
7144 
7145   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_unsetName")]
ModelCreator_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1)7146   public static extern int ModelCreator_unsetName(global::System.Runtime.InteropServices.HandleRef jarg1);
7147 
7148   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_hasRequiredAttributes")]
ModelCreator_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)7149   public static extern bool ModelCreator_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
7150 
7151   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_hasBeenModified")]
ModelCreator_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1)7152   public static extern bool ModelCreator_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1);
7153 
7154   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_resetModifiedFlags")]
ModelCreator_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1)7155   public static extern void ModelCreator_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
7156 
7157   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_usingFNVcard4")]
ModelCreator_usingFNVcard4(global::System.Runtime.InteropServices.HandleRef jarg1)7158   public static extern bool ModelCreator_usingFNVcard4(global::System.Runtime.InteropServices.HandleRef jarg1);
7159 
7160   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_usingSingleName")]
ModelCreator_usingSingleName(global::System.Runtime.InteropServices.HandleRef jarg1)7161   public static extern bool ModelCreator_usingSingleName(global::System.Runtime.InteropServices.HandleRef jarg1);
7162 
7163   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelCreator_setUseSingleName")]
ModelCreator_setUseSingleName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)7164   public static extern void ModelCreator_setUseSingleName(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7165 
7166   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModelHistory__SWIG_0")]
new_ModelHistory__SWIG_0()7167   public static extern global::System.IntPtr new_ModelHistory__SWIG_0();
7168 
7169   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ModelHistory")]
delete_ModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1)7170   public static extern void delete_ModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
7171 
7172   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ModelHistory__SWIG_1")]
new_ModelHistory__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)7173   public static extern global::System.IntPtr new_ModelHistory__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7174 
7175   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_clone")]
ModelHistory_clone(global::System.Runtime.InteropServices.HandleRef jarg1)7176   public static extern global::System.IntPtr ModelHistory_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
7177 
7178   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getCreatedDate")]
ModelHistory_getCreatedDate(global::System.Runtime.InteropServices.HandleRef jarg1)7179   public static extern global::System.IntPtr ModelHistory_getCreatedDate(global::System.Runtime.InteropServices.HandleRef jarg1);
7180 
7181   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getModifiedDate__SWIG_0")]
ModelHistory_getModifiedDate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)7182   public static extern global::System.IntPtr ModelHistory_getModifiedDate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
7183 
7184   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_isSetCreatedDate")]
ModelHistory_isSetCreatedDate(global::System.Runtime.InteropServices.HandleRef jarg1)7185   public static extern bool ModelHistory_isSetCreatedDate(global::System.Runtime.InteropServices.HandleRef jarg1);
7186 
7187   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_isSetModifiedDate")]
ModelHistory_isSetModifiedDate(global::System.Runtime.InteropServices.HandleRef jarg1)7188   public static extern bool ModelHistory_isSetModifiedDate(global::System.Runtime.InteropServices.HandleRef jarg1);
7189 
7190   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_setCreatedDate")]
ModelHistory_setCreatedDate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7191   public static extern int ModelHistory_setCreatedDate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7192 
7193   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_setModifiedDate")]
ModelHistory_setModifiedDate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7194   public static extern int ModelHistory_setModifiedDate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7195 
7196   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_addModifiedDate")]
ModelHistory_addModifiedDate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7197   public static extern int ModelHistory_addModifiedDate(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7198 
7199   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getListModifiedDates")]
ModelHistory_getListModifiedDates(global::System.Runtime.InteropServices.HandleRef jarg1)7200   public static extern global::System.IntPtr ModelHistory_getListModifiedDates(global::System.Runtime.InteropServices.HandleRef jarg1);
7201 
7202   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getModifiedDate__SWIG_1")]
ModelHistory_getModifiedDate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7203   public static extern global::System.IntPtr ModelHistory_getModifiedDate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7204 
7205   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getNumModifiedDates")]
ModelHistory_getNumModifiedDates(global::System.Runtime.InteropServices.HandleRef jarg1)7206   public static extern uint ModelHistory_getNumModifiedDates(global::System.Runtime.InteropServices.HandleRef jarg1);
7207 
7208   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_addCreator")]
ModelHistory_addCreator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7209   public static extern int ModelHistory_addCreator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7210 
7211   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getListCreators")]
ModelHistory_getListCreators(global::System.Runtime.InteropServices.HandleRef jarg1)7212   public static extern global::System.IntPtr ModelHistory_getListCreators(global::System.Runtime.InteropServices.HandleRef jarg1);
7213 
7214   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getCreator")]
ModelHistory_getCreator(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7215   public static extern global::System.IntPtr ModelHistory_getCreator(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7216 
7217   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_getNumCreators")]
ModelHistory_getNumCreators(global::System.Runtime.InteropServices.HandleRef jarg1)7218   public static extern uint ModelHistory_getNumCreators(global::System.Runtime.InteropServices.HandleRef jarg1);
7219 
7220   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_hasRequiredAttributes")]
ModelHistory_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1)7221   public static extern bool ModelHistory_hasRequiredAttributes(global::System.Runtime.InteropServices.HandleRef jarg1);
7222 
7223   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_hasBeenModified")]
ModelHistory_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1)7224   public static extern bool ModelHistory_hasBeenModified(global::System.Runtime.InteropServices.HandleRef jarg1);
7225 
7226   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModelHistory_resetModifiedFlags")]
ModelHistory_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1)7227   public static extern void ModelHistory_resetModifiedFlags(global::System.Runtime.InteropServices.HandleRef jarg1);
7228 
7229   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseRDFAnnotation__SWIG_0")]
RDFAnnotationParser_parseRDFAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7230   public static extern global::System.IntPtr RDFAnnotationParser_parseRDFAnnotation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7231 
7232   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseRDFAnnotation__SWIG_1")]
RDFAnnotationParser_parseRDFAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7233   public static extern global::System.IntPtr RDFAnnotationParser_parseRDFAnnotation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7234 
7235   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseRDFAnnotation__SWIG_2")]
RDFAnnotationParser_parseRDFAnnotation__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)7236   public static extern global::System.IntPtr RDFAnnotationParser_parseRDFAnnotation__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
7237 
7238   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_createAnnotation")]
RDFAnnotationParser_createAnnotation()7239   public static extern global::System.IntPtr RDFAnnotationParser_createAnnotation();
7240 
7241   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_createRDFAnnotation__SWIG_0")]
RDFAnnotationParser_createRDFAnnotation__SWIG_0(long jarg1, long jarg2)7242   public static extern global::System.IntPtr RDFAnnotationParser_createRDFAnnotation__SWIG_0(long jarg1, long jarg2);
7243 
7244   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_createRDFAnnotation__SWIG_1")]
RDFAnnotationParser_createRDFAnnotation__SWIG_1(long jarg1)7245   public static extern global::System.IntPtr RDFAnnotationParser_createRDFAnnotation__SWIG_1(long jarg1);
7246 
7247   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_createRDFAnnotation__SWIG_2")]
RDFAnnotationParser_createRDFAnnotation__SWIG_2()7248   public static extern global::System.IntPtr RDFAnnotationParser_createRDFAnnotation__SWIG_2();
7249 
7250   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_createCVTerms")]
RDFAnnotationParser_createCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1)7251   public static extern global::System.IntPtr RDFAnnotationParser_createCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1);
7252 
7253   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseCVTerms")]
RDFAnnotationParser_parseCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1)7254   public static extern global::System.IntPtr RDFAnnotationParser_parseCVTerms(global::System.Runtime.InteropServices.HandleRef jarg1);
7255 
7256   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseModelHistory")]
RDFAnnotationParser_parseModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1)7257   public static extern global::System.IntPtr RDFAnnotationParser_parseModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
7258 
7259   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseOnlyModelHistory")]
RDFAnnotationParser_parseOnlyModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1)7260   public static extern global::System.IntPtr RDFAnnotationParser_parseOnlyModelHistory(global::System.Runtime.InteropServices.HandleRef jarg1);
7261 
7262   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_deleteRDFAnnotation")]
RDFAnnotationParser_deleteRDFAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1)7263   public static extern global::System.IntPtr RDFAnnotationParser_deleteRDFAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1);
7264 
7265   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_deleteRDFHistoryAnnotation")]
RDFAnnotationParser_deleteRDFHistoryAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1)7266   public static extern global::System.IntPtr RDFAnnotationParser_deleteRDFHistoryAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1);
7267 
7268   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_deleteRDFCVTermAnnotation")]
RDFAnnotationParser_deleteRDFCVTermAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1)7269   public static extern global::System.IntPtr RDFAnnotationParser_deleteRDFCVTermAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1);
7270 
7271   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseRDFAnnotation__SWIG_3")]
RDFAnnotationParser_parseRDFAnnotation__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7272   public static extern void RDFAnnotationParser_parseRDFAnnotation__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7273 
7274   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseRDFAnnotation__SWIG_4")]
RDFAnnotationParser_parseRDFAnnotation__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)7275   public static extern void RDFAnnotationParser_parseRDFAnnotation__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
7276 
7277   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RDFAnnotationParser_parseRDFAnnotation__SWIG_5")]
RDFAnnotationParser_parseRDFAnnotation__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3)7278   public static extern void RDFAnnotationParser_parseRDFAnnotation__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3);
7279 
7280   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_RDFAnnotationParser")]
new_RDFAnnotationParser()7281   public static extern global::System.IntPtr new_RDFAnnotationParser();
7282 
7283   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_RDFAnnotationParser")]
delete_RDFAnnotationParser(global::System.Runtime.InteropServices.HandleRef jarg1)7284   public static extern void delete_RDFAnnotationParser(global::System.Runtime.InteropServices.HandleRef jarg1);
7285 
7286   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ISBMLExtensionNamespaces")]
delete_ISBMLExtensionNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)7287   public static extern void delete_ISBMLExtensionNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
7288 
7289   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ISBMLExtensionNamespaces_getURI")]
ISBMLExtensionNamespaces_getURI(global::System.Runtime.InteropServices.HandleRef jarg1)7290   public static extern string ISBMLExtensionNamespaces_getURI(global::System.Runtime.InteropServices.HandleRef jarg1);
7291 
7292   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ISBMLExtensionNamespaces_getPackageVersion")]
ISBMLExtensionNamespaces_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1)7293   public static extern uint ISBMLExtensionNamespaces_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
7294 
7295   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ISBMLExtensionNamespaces_getPackageName")]
ISBMLExtensionNamespaces_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1)7296   public static extern string ISBMLExtensionNamespaces_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1);
7297 
7298   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ISBMLExtensionNamespaces_setPackageVersion")]
ISBMLExtensionNamespaces_setPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7299   public static extern void ISBMLExtensionNamespaces_setPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7300 
7301   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBaseExtensionPoint__SWIG_0")]
new_SBaseExtensionPoint__SWIG_0(string jarg1, int jarg2)7302   public static extern global::System.IntPtr new_SBaseExtensionPoint__SWIG_0(string jarg1, int jarg2);
7303 
7304   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBaseExtensionPoint__SWIG_1")]
new_SBaseExtensionPoint__SWIG_1(string jarg1, int jarg2, string jarg3, bool jarg4)7305   public static extern global::System.IntPtr new_SBaseExtensionPoint__SWIG_1(string jarg1, int jarg2, string jarg3, bool jarg4);
7306 
7307   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBaseExtensionPoint__SWIG_2")]
new_SBaseExtensionPoint__SWIG_2(string jarg1, int jarg2, string jarg3)7308   public static extern global::System.IntPtr new_SBaseExtensionPoint__SWIG_2(string jarg1, int jarg2, string jarg3);
7309 
7310   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBaseExtensionPoint")]
delete_SBaseExtensionPoint(global::System.Runtime.InteropServices.HandleRef jarg1)7311   public static extern void delete_SBaseExtensionPoint(global::System.Runtime.InteropServices.HandleRef jarg1);
7312 
7313   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBaseExtensionPoint__SWIG_3")]
new_SBaseExtensionPoint__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1)7314   public static extern global::System.IntPtr new_SBaseExtensionPoint__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1);
7315 
7316   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseExtensionPoint_clone")]
SBaseExtensionPoint_clone(global::System.Runtime.InteropServices.HandleRef jarg1)7317   public static extern global::System.IntPtr SBaseExtensionPoint_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
7318 
7319   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseExtensionPoint_getPackageName")]
SBaseExtensionPoint_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1)7320   public static extern string SBaseExtensionPoint_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1);
7321 
7322   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseExtensionPoint_getTypeCode")]
SBaseExtensionPoint_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1)7323   public static extern int SBaseExtensionPoint_getTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1);
7324 
7325   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseExtensionPoint_getElementName")]
SBaseExtensionPoint_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1)7326   public static extern string SBaseExtensionPoint_getElementName(global::System.Runtime.InteropServices.HandleRef jarg1);
7327 
7328   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBaseExtensionPoint_isElementOnly")]
SBaseExtensionPoint_isElementOnly(global::System.Runtime.InteropServices.HandleRef jarg1)7329   public static extern bool SBaseExtensionPoint_isElementOnly(global::System.Runtime.InteropServices.HandleRef jarg1);
7330 
7331   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBasePlugin")]
delete_SBasePlugin(global::System.Runtime.InteropServices.HandleRef jarg1)7332   public static extern void delete_SBasePlugin(global::System.Runtime.InteropServices.HandleRef jarg1);
7333 
7334   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getElementNamespace")]
SBasePlugin_getElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1)7335   public static extern string SBasePlugin_getElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1);
7336 
7337   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getPrefix")]
SBasePlugin_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1)7338   public static extern string SBasePlugin_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1);
7339 
7340   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getPackageName")]
SBasePlugin_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1)7341   public static extern string SBasePlugin_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1);
7342 
7343   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_clone")]
SBasePlugin_clone(global::System.Runtime.InteropServices.HandleRef jarg1)7344   public static extern global::System.IntPtr SBasePlugin_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
7345 
7346   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getElementBySId")]
SBasePlugin_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7347   public static extern global::System.IntPtr SBasePlugin_getElementBySId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7348 
7349   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getElementByMetaId")]
SBasePlugin_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7350   public static extern global::System.IntPtr SBasePlugin_getElementByMetaId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7351 
7352   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_connectToParent")]
SBasePlugin_connectToParent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7353   public static extern void SBasePlugin_connectToParent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7354 
7355   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_enablePackageInternal")]
SBasePlugin_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)7356   public static extern void SBasePlugin_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
7357 
7358   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_stripPackage")]
SBasePlugin_stripPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)7359   public static extern bool SBasePlugin_stripPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
7360 
7361   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getSBMLDocument__SWIG_0")]
SBasePlugin_getSBMLDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)7362   public static extern global::System.IntPtr SBasePlugin_getSBMLDocument__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
7363 
7364   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getURI")]
SBasePlugin_getURI(global::System.Runtime.InteropServices.HandleRef jarg1)7365   public static extern string SBasePlugin_getURI(global::System.Runtime.InteropServices.HandleRef jarg1);
7366 
7367   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getParentSBMLObject__SWIG_0")]
SBasePlugin_getParentSBMLObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)7368   public static extern global::System.IntPtr SBasePlugin_getParentSBMLObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
7369 
7370   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_setElementNamespace")]
SBasePlugin_setElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7371   public static extern int SBasePlugin_setElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7372 
7373   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getLevel")]
SBasePlugin_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1)7374   public static extern uint SBasePlugin_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1);
7375 
7376   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getVersion")]
SBasePlugin_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1)7377   public static extern uint SBasePlugin_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
7378 
7379   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getPackageVersion")]
SBasePlugin_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1)7380   public static extern uint SBasePlugin_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
7381 
7382   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_replaceSIDWithFunction")]
SBasePlugin_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7383   public static extern void SBasePlugin_replaceSIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7384 
7385   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_divideAssignmentsToSIdByFunction")]
SBasePlugin_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7386   public static extern void SBasePlugin_divideAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7387 
7388   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_multiplyAssignmentsToSIdByFunction")]
SBasePlugin_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7389   public static extern void SBasePlugin_multiplyAssignmentsToSIdByFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7390 
7391   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_hasIdentifierBeginningWith")]
SBasePlugin_hasIdentifierBeginningWith(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7392   public static extern bool SBasePlugin_hasIdentifierBeginningWith(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7393 
7394   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_prependStringToAllIdentifiers")]
SBasePlugin_prependStringToAllIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7395   public static extern int SBasePlugin_prependStringToAllIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7396 
7397   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_renameSIdRefs")]
SBasePlugin_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)7398   public static extern void SBasePlugin_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
7399 
7400   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_renameMetaIdRefs")]
SBasePlugin_renameMetaIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)7401   public static extern void SBasePlugin_renameMetaIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
7402 
7403   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_renameUnitSIdRefs")]
SBasePlugin_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)7404   public static extern void SBasePlugin_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
7405 
7406   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_transformIdentifiers")]
SBasePlugin_transformIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7407   public static extern int SBasePlugin_transformIdentifiers(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7408 
7409   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getLine")]
SBasePlugin_getLine(global::System.Runtime.InteropServices.HandleRef jarg1)7410   public static extern uint SBasePlugin_getLine(global::System.Runtime.InteropServices.HandleRef jarg1);
7411 
7412   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getColumn")]
SBasePlugin_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1)7413   public static extern uint SBasePlugin_getColumn(global::System.Runtime.InteropServices.HandleRef jarg1);
7414 
7415   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getSBMLNamespaces")]
SBasePlugin_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)7416   public static extern global::System.IntPtr SBasePlugin_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
7417 
7418   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_logUnknownElement")]
SBasePlugin_logUnknownElement(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5)7419   public static extern void SBasePlugin_logUnknownElement(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4, long jarg5);
7420 
7421   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_isValidTypeForList")]
SBasePlugin_isValidTypeForList(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7422   public static extern bool SBasePlugin_isValidTypeForList(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7423 
7424   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getSBMLExtension")]
SBasePlugin_getSBMLExtension(global::System.Runtime.InteropServices.HandleRef jarg1)7425   public static extern global::System.IntPtr SBasePlugin_getSBMLExtension(global::System.Runtime.InteropServices.HandleRef jarg1);
7426 
7427   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_updateSBMLNamespace")]
SBasePlugin_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4)7428   public static extern void SBasePlugin_updateSBMLNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, long jarg3, long jarg4);
7429 
7430   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getListOfAllElements__SWIG_0")]
SBasePlugin_getListOfAllElements__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7431   public static extern global::System.IntPtr SBasePlugin_getListOfAllElements__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7432 
7433   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBasePlugin_getListOfAllElements__SWIG_1")]
SBasePlugin_getListOfAllElements__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)7434   public static extern global::System.IntPtr SBasePlugin_getListOfAllElements__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7435 
7436   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLDocumentPlugin__SWIG_0")]
new_SBMLDocumentPlugin__SWIG_0(string jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7437   public static extern global::System.IntPtr new_SBMLDocumentPlugin__SWIG_0(string jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7438 
7439   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLDocumentPlugin__SWIG_1")]
new_SBMLDocumentPlugin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)7440   public static extern global::System.IntPtr new_SBMLDocumentPlugin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7441 
7442   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLDocumentPlugin")]
delete_SBMLDocumentPlugin(global::System.Runtime.InteropServices.HandleRef jarg1)7443   public static extern void delete_SBMLDocumentPlugin(global::System.Runtime.InteropServices.HandleRef jarg1);
7444 
7445   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_clone")]
SBMLDocumentPlugin_clone(global::System.Runtime.InteropServices.HandleRef jarg1)7446   public static extern global::System.IntPtr SBMLDocumentPlugin_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
7447 
7448   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_setRequired")]
SBMLDocumentPlugin_setRequired(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)7449   public static extern int SBMLDocumentPlugin_setRequired(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7450 
7451   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_getRequired")]
SBMLDocumentPlugin_getRequired(global::System.Runtime.InteropServices.HandleRef jarg1)7452   public static extern bool SBMLDocumentPlugin_getRequired(global::System.Runtime.InteropServices.HandleRef jarg1);
7453 
7454   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_isSetRequired")]
SBMLDocumentPlugin_isSetRequired(global::System.Runtime.InteropServices.HandleRef jarg1)7455   public static extern bool SBMLDocumentPlugin_isSetRequired(global::System.Runtime.InteropServices.HandleRef jarg1);
7456 
7457   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_unsetRequired")]
SBMLDocumentPlugin_unsetRequired(global::System.Runtime.InteropServices.HandleRef jarg1)7458   public static extern int SBMLDocumentPlugin_unsetRequired(global::System.Runtime.InteropServices.HandleRef jarg1);
7459 
7460   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_isCompFlatteningImplemented")]
SBMLDocumentPlugin_isCompFlatteningImplemented(global::System.Runtime.InteropServices.HandleRef jarg1)7461   public static extern bool SBMLDocumentPlugin_isCompFlatteningImplemented(global::System.Runtime.InteropServices.HandleRef jarg1);
7462 
7463   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_checkConsistency")]
SBMLDocumentPlugin_checkConsistency(global::System.Runtime.InteropServices.HandleRef jarg1)7464   public static extern uint SBMLDocumentPlugin_checkConsistency(global::System.Runtime.InteropServices.HandleRef jarg1);
7465 
7466   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLExtension")]
delete_SBMLExtension(global::System.Runtime.InteropServices.HandleRef jarg1)7467   public static extern void delete_SBMLExtension(global::System.Runtime.InteropServices.HandleRef jarg1);
7468 
7469   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getNumOfSBasePlugins")]
SBMLExtension_getNumOfSBasePlugins(global::System.Runtime.InteropServices.HandleRef jarg1)7470   public static extern int SBMLExtension_getNumOfSBasePlugins(global::System.Runtime.InteropServices.HandleRef jarg1);
7471 
7472   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getNumOfSupportedPackageURI")]
SBMLExtension_getNumOfSupportedPackageURI(global::System.Runtime.InteropServices.HandleRef jarg1)7473   public static extern uint SBMLExtension_getNumOfSupportedPackageURI(global::System.Runtime.InteropServices.HandleRef jarg1);
7474 
7475   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_isSupported")]
SBMLExtension_isSupported(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7476   public static extern bool SBMLExtension_isSupported(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7477 
7478   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getSupportedPackageURI")]
SBMLExtension_getSupportedPackageURI(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7479   public static extern string SBMLExtension_getSupportedPackageURI(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7480 
7481   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_clone")]
SBMLExtension_clone(global::System.Runtime.InteropServices.HandleRef jarg1)7482   public static extern global::System.IntPtr SBMLExtension_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
7483 
7484   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getName")]
SBMLExtension_getName(global::System.Runtime.InteropServices.HandleRef jarg1)7485   public static extern string SBMLExtension_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
7486 
7487   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getURI")]
SBMLExtension_getURI(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4)7488   public static extern string SBMLExtension_getURI(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, long jarg4);
7489 
7490   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getLevel")]
SBMLExtension_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7491   public static extern uint SBMLExtension_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7492 
7493   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getVersion")]
SBMLExtension_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7494   public static extern uint SBMLExtension_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7495 
7496   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getPackageVersion")]
SBMLExtension_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7497   public static extern uint SBMLExtension_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7498 
7499   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getStringFromTypeCode")]
SBMLExtension_getStringFromTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)7500   public static extern string SBMLExtension_getStringFromTypeCode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7501 
7502   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getSBMLExtensionNamespaces")]
SBMLExtension_getSBMLExtensionNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7503   public static extern global::System.IntPtr SBMLExtension_getSBMLExtensionNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7504 
7505   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_setEnabled")]
SBMLExtension_setEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)7506   public static extern bool SBMLExtension_setEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
7507 
7508   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_isEnabled")]
SBMLExtension_isEnabled(global::System.Runtime.InteropServices.HandleRef jarg1)7509   public static extern bool SBMLExtension_isEnabled(global::System.Runtime.InteropServices.HandleRef jarg1);
7510 
7511   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_removeL2Namespaces")]
SBMLExtension_removeL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7512   public static extern void SBMLExtension_removeL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7513 
7514   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_addL2Namespaces")]
SBMLExtension_addL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7515   public static extern void SBMLExtension_addL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7516 
7517   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_enableL2NamespaceForDocument")]
SBMLExtension_enableL2NamespaceForDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7518   public static extern void SBMLExtension_enableL2NamespaceForDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7519 
7520   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_isInUse")]
SBMLExtension_isInUse(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7521   public static extern bool SBMLExtension_isInUse(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7522 
7523   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_hasMutiplePackageVersions")]
SBMLExtension_hasMutiplePackageVersions(global::System.Runtime.InteropServices.HandleRef jarg1)7524   public static extern bool SBMLExtension_hasMutiplePackageVersions(global::System.Runtime.InteropServices.HandleRef jarg1);
7525 
7526   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getErrorTableIndex")]
SBMLExtension_getErrorTableIndex(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7527   public static extern uint SBMLExtension_getErrorTableIndex(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7528 
7529   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getErrorIdOffset")]
SBMLExtension_getErrorIdOffset(global::System.Runtime.InteropServices.HandleRef jarg1)7530   public static extern uint SBMLExtension_getErrorIdOffset(global::System.Runtime.InteropServices.HandleRef jarg1);
7531 
7532   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getSeverity")]
SBMLExtension_getSeverity(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3)7533   public static extern uint SBMLExtension_getSeverity(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3);
7534 
7535   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getCategory")]
SBMLExtension_getCategory(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7536   public static extern uint SBMLExtension_getCategory(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7537 
7538   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getMessage")]
SBMLExtension_getMessage(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4)7539   public static extern string SBMLExtension_getMessage(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, long jarg3, string jarg4);
7540 
7541   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtension_getShortMessage")]
SBMLExtension_getShortMessage(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7542   public static extern string SBMLExtension_getShortMessage(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7543 
7544   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_SBMLExtensionException")]
new_SBMLExtensionException(string jarg1)7545   public static extern global::System.IntPtr new_SBMLExtensionException(string jarg1);
7546 
7547   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_SBMLExtensionException")]
delete_SBMLExtensionException(global::System.Runtime.InteropServices.HandleRef jarg1)7548   public static extern void delete_SBMLExtensionException(global::System.Runtime.InteropServices.HandleRef jarg1);
7549 
7550   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getInstance")]
SBMLExtensionRegistry_getInstance()7551   public static extern global::System.IntPtr SBMLExtensionRegistry_getInstance();
7552 
7553   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_addExtension")]
SBMLExtensionRegistry_addExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7554   public static extern int SBMLExtensionRegistry_addExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7555 
7556   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getExtension")]
SBMLExtensionRegistry_getExtension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7557   public static extern global::System.IntPtr SBMLExtensionRegistry_getExtension(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7558 
7559   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_removeL2Namespaces")]
SBMLExtensionRegistry_removeL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7560   public static extern void SBMLExtensionRegistry_removeL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7561 
7562   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_addL2Namespaces")]
SBMLExtensionRegistry_addL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7563   public static extern void SBMLExtensionRegistry_addL2Namespaces(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7564 
7565   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_enableL2NamespaceForDocument")]
SBMLExtensionRegistry_enableL2NamespaceForDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7566   public static extern void SBMLExtensionRegistry_enableL2NamespaceForDocument(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7567 
7568   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_disableUnusedPackages")]
SBMLExtensionRegistry_disableUnusedPackages(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7569   public static extern void SBMLExtensionRegistry_disableUnusedPackages(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7570 
7571   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_disablePackage")]
SBMLExtensionRegistry_disablePackage(string jarg1)7572   public static extern void SBMLExtensionRegistry_disablePackage(string jarg1);
7573 
7574   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_isPackageEnabled")]
SBMLExtensionRegistry_isPackageEnabled(string jarg1)7575   public static extern bool SBMLExtensionRegistry_isPackageEnabled(string jarg1);
7576 
7577   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_enablePackage")]
SBMLExtensionRegistry_enablePackage(string jarg1)7578   public static extern void SBMLExtensionRegistry_enablePackage(string jarg1);
7579 
7580   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getNumExtension")]
SBMLExtensionRegistry_getNumExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7581   public static extern uint SBMLExtensionRegistry_getNumExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7582 
7583   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_setEnabled")]
SBMLExtensionRegistry_setEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)7584   public static extern bool SBMLExtensionRegistry_setEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
7585 
7586   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_isEnabled")]
SBMLExtensionRegistry_isEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7587   public static extern bool SBMLExtensionRegistry_isEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7588 
7589   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_isRegistered")]
SBMLExtensionRegistry_isRegistered(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7590   public static extern bool SBMLExtensionRegistry_isRegistered(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7591 
7592   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getAllRegisteredPackageNames")]
SBMLExtensionRegistry_getAllRegisteredPackageNames()7593   public static extern global::System.IntPtr SBMLExtensionRegistry_getAllRegisteredPackageNames();
7594 
7595   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getNumRegisteredPackages")]
SBMLExtensionRegistry_getNumRegisteredPackages()7596   public static extern uint SBMLExtensionRegistry_getNumRegisteredPackages();
7597 
7598   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getRegisteredPackageName")]
SBMLExtensionRegistry_getRegisteredPackageName(long jarg1)7599   public static extern string SBMLExtensionRegistry_getRegisteredPackageName(long jarg1);
7600 
7601   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getASTPlugins")]
SBMLExtensionRegistry_getASTPlugins(global::System.Runtime.InteropServices.HandleRef jarg1)7602   public static extern global::System.IntPtr SBMLExtensionRegistry_getASTPlugins(global::System.Runtime.InteropServices.HandleRef jarg1);
7603 
7604   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getNumASTPlugins")]
SBMLExtensionRegistry_getNumASTPlugins(global::System.Runtime.InteropServices.HandleRef jarg1)7605   public static extern uint SBMLExtensionRegistry_getNumASTPlugins(global::System.Runtime.InteropServices.HandleRef jarg1);
7606 
7607   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExtensionRegistry_getASTPlugin")]
SBMLExtensionRegistry_getASTPlugin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7608   public static extern global::System.IntPtr SBMLExtensionRegistry_getASTPlugin(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7609 
7610   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_Callback")]
delete_Callback(global::System.Runtime.InteropServices.HandleRef jarg1)7611   public static extern void delete_Callback(global::System.Runtime.InteropServices.HandleRef jarg1);
7612 
7613   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Callback_process")]
Callback_process(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7614   public static extern int Callback_process(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7615 
7616   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Callback_processSwigExplicitCallback")]
Callback_processSwigExplicitCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7617   public static extern int Callback_processSwigExplicitCallback(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7618 
7619   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_Callback")]
new_Callback()7620   public static extern global::System.IntPtr new_Callback();
7621 
7622   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Callback_director_connect")]
Callback_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Callback.SwigDelegateCallback_0 delegate0)7623   public static extern void Callback_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, Callback.SwigDelegateCallback_0 delegate0);
7624 
7625   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CallbackRegistry_invokeCallbacks")]
CallbackRegistry_invokeCallbacks(global::System.Runtime.InteropServices.HandleRef jarg1)7626   public static extern int CallbackRegistry_invokeCallbacks(global::System.Runtime.InteropServices.HandleRef jarg1);
7627 
7628   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CallbackRegistry_clearCallbacks")]
CallbackRegistry_clearCallbacks()7629   public static extern void CallbackRegistry_clearCallbacks();
7630 
7631   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CallbackRegistry_addCallback")]
CallbackRegistry_addCallback(global::System.Runtime.InteropServices.HandleRef jarg1)7632   public static extern void CallbackRegistry_addCallback(global::System.Runtime.InteropServices.HandleRef jarg1);
7633 
7634   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CallbackRegistry_getNumCallbacks")]
CallbackRegistry_getNumCallbacks()7635   public static extern int CallbackRegistry_getNumCallbacks();
7636 
7637   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CallbackRegistry_removeCallback__SWIG_0")]
CallbackRegistry_removeCallback__SWIG_0(int jarg1)7638   public static extern void CallbackRegistry_removeCallback__SWIG_0(int jarg1);
7639 
7640   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CallbackRegistry_removeCallback__SWIG_1")]
CallbackRegistry_removeCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)7641   public static extern void CallbackRegistry_removeCallback__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7642 
7643   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_CallbackRegistry")]
delete_CallbackRegistry(global::System.Runtime.InteropServices.HandleRef jarg1)7644   public static extern void delete_CallbackRegistry(global::System.Runtime.InteropServices.HandleRef jarg1);
7645 
7646   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ASTNode__SWIG_0")]
new_ASTNode__SWIG_0(int jarg1)7647   public static extern global::System.IntPtr new_ASTNode__SWIG_0(int jarg1);
7648 
7649   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ASTNode__SWIG_1")]
new_ASTNode__SWIG_1()7650   public static extern global::System.IntPtr new_ASTNode__SWIG_1();
7651 
7652   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ASTNode__SWIG_2")]
new_ASTNode__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1)7653   public static extern global::System.IntPtr new_ASTNode__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1);
7654 
7655   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ASTNode")]
delete_ASTNode(global::System.Runtime.InteropServices.HandleRef jarg1)7656   public static extern void delete_ASTNode(global::System.Runtime.InteropServices.HandleRef jarg1);
7657 
7658   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_freeName")]
ASTNode_freeName(global::System.Runtime.InteropServices.HandleRef jarg1)7659   public static extern int ASTNode_freeName(global::System.Runtime.InteropServices.HandleRef jarg1);
7660 
7661   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_canonicalize")]
ASTNode_canonicalize(global::System.Runtime.InteropServices.HandleRef jarg1)7662   public static extern bool ASTNode_canonicalize(global::System.Runtime.InteropServices.HandleRef jarg1);
7663 
7664   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_addChild__SWIG_0")]
ASTNode_addChild__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3)7665   public static extern int ASTNode_addChild__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3);
7666 
7667   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_addChild__SWIG_1")]
ASTNode_addChild__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7668   public static extern int ASTNode_addChild__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7669 
7670   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_prependChild")]
ASTNode_prependChild(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7671   public static extern int ASTNode_prependChild(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7672 
7673   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_removeChild")]
ASTNode_removeChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7674   public static extern int ASTNode_removeChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7675 
7676   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_replaceChild__SWIG_0")]
ASTNode_replaceChild__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4)7677   public static extern int ASTNode_replaceChild__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4);
7678 
7679   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_replaceChild__SWIG_1")]
ASTNode_replaceChild__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7680   public static extern int ASTNode_replaceChild__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7681 
7682   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_insertChild")]
ASTNode_insertChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7683   public static extern int ASTNode_insertChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7684 
7685   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_deepCopy")]
ASTNode_deepCopy(global::System.Runtime.InteropServices.HandleRef jarg1)7686   public static extern global::System.IntPtr ASTNode_deepCopy(global::System.Runtime.InteropServices.HandleRef jarg1);
7687 
7688   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getChild")]
ASTNode_getChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7689   public static extern global::System.IntPtr ASTNode_getChild(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7690 
7691   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getLeftChild")]
ASTNode_getLeftChild(global::System.Runtime.InteropServices.HandleRef jarg1)7692   public static extern global::System.IntPtr ASTNode_getLeftChild(global::System.Runtime.InteropServices.HandleRef jarg1);
7693 
7694   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getRightChild")]
ASTNode_getRightChild(global::System.Runtime.InteropServices.HandleRef jarg1)7695   public static extern global::System.IntPtr ASTNode_getRightChild(global::System.Runtime.InteropServices.HandleRef jarg1);
7696 
7697   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getNumChildren")]
ASTNode_getNumChildren(global::System.Runtime.InteropServices.HandleRef jarg1)7698   public static extern uint ASTNode_getNumChildren(global::System.Runtime.InteropServices.HandleRef jarg1);
7699 
7700   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_addSemanticsAnnotation")]
ASTNode_addSemanticsAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7701   public static extern int ASTNode_addSemanticsAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7702 
7703   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getNumSemanticsAnnotations")]
ASTNode_getNumSemanticsAnnotations(global::System.Runtime.InteropServices.HandleRef jarg1)7704   public static extern uint ASTNode_getNumSemanticsAnnotations(global::System.Runtime.InteropServices.HandleRef jarg1);
7705 
7706   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getSemanticsAnnotation")]
ASTNode_getSemanticsAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)7707   public static extern global::System.IntPtr ASTNode_getSemanticsAnnotation(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
7708 
7709   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getCharacter")]
ASTNode_getCharacter(global::System.Runtime.InteropServices.HandleRef jarg1)7710   public static extern char ASTNode_getCharacter(global::System.Runtime.InteropServices.HandleRef jarg1);
7711 
7712   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getId")]
ASTNode_getId(global::System.Runtime.InteropServices.HandleRef jarg1)7713   public static extern string ASTNode_getId(global::System.Runtime.InteropServices.HandleRef jarg1);
7714 
7715   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getClass")]
ASTNode_getClass(global::System.Runtime.InteropServices.HandleRef jarg1)7716   public static extern string ASTNode_getClass(global::System.Runtime.InteropServices.HandleRef jarg1);
7717 
7718   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getStyle")]
ASTNode_getStyle(global::System.Runtime.InteropServices.HandleRef jarg1)7719   public static extern string ASTNode_getStyle(global::System.Runtime.InteropServices.HandleRef jarg1);
7720 
7721   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getInteger")]
ASTNode_getInteger(global::System.Runtime.InteropServices.HandleRef jarg1)7722   public static extern int ASTNode_getInteger(global::System.Runtime.InteropServices.HandleRef jarg1);
7723 
7724   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getName")]
ASTNode_getName(global::System.Runtime.InteropServices.HandleRef jarg1)7725   public static extern string ASTNode_getName(global::System.Runtime.InteropServices.HandleRef jarg1);
7726 
7727   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getOperatorName")]
ASTNode_getOperatorName(global::System.Runtime.InteropServices.HandleRef jarg1)7728   public static extern string ASTNode_getOperatorName(global::System.Runtime.InteropServices.HandleRef jarg1);
7729 
7730   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getNumerator")]
ASTNode_getNumerator(global::System.Runtime.InteropServices.HandleRef jarg1)7731   public static extern int ASTNode_getNumerator(global::System.Runtime.InteropServices.HandleRef jarg1);
7732 
7733   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getDenominator")]
ASTNode_getDenominator(global::System.Runtime.InteropServices.HandleRef jarg1)7734   public static extern int ASTNode_getDenominator(global::System.Runtime.InteropServices.HandleRef jarg1);
7735 
7736   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getReal")]
ASTNode_getReal(global::System.Runtime.InteropServices.HandleRef jarg1)7737   public static extern double ASTNode_getReal(global::System.Runtime.InteropServices.HandleRef jarg1);
7738 
7739   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getMantissa")]
ASTNode_getMantissa(global::System.Runtime.InteropServices.HandleRef jarg1)7740   public static extern double ASTNode_getMantissa(global::System.Runtime.InteropServices.HandleRef jarg1);
7741 
7742   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getExponent")]
ASTNode_getExponent(global::System.Runtime.InteropServices.HandleRef jarg1)7743   public static extern int ASTNode_getExponent(global::System.Runtime.InteropServices.HandleRef jarg1);
7744 
7745   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getValue")]
ASTNode_getValue(global::System.Runtime.InteropServices.HandleRef jarg1)7746   public static extern double ASTNode_getValue(global::System.Runtime.InteropServices.HandleRef jarg1);
7747 
7748   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getPrecedence")]
ASTNode_getPrecedence(global::System.Runtime.InteropServices.HandleRef jarg1)7749   public static extern int ASTNode_getPrecedence(global::System.Runtime.InteropServices.HandleRef jarg1);
7750 
7751   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getType")]
ASTNode_getType(global::System.Runtime.InteropServices.HandleRef jarg1)7752   public static extern int ASTNode_getType(global::System.Runtime.InteropServices.HandleRef jarg1);
7753 
7754   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getUnits")]
ASTNode_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1)7755   public static extern string ASTNode_getUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
7756 
7757   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isAvogadro")]
ASTNode_isAvogadro(global::System.Runtime.InteropServices.HandleRef jarg1)7758   public static extern bool ASTNode_isAvogadro(global::System.Runtime.InteropServices.HandleRef jarg1);
7759 
7760   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isBoolean")]
ASTNode_isBoolean(global::System.Runtime.InteropServices.HandleRef jarg1)7761   public static extern bool ASTNode_isBoolean(global::System.Runtime.InteropServices.HandleRef jarg1);
7762 
7763   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_returnsBoolean__SWIG_0")]
ASTNode_returnsBoolean__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7764   public static extern bool ASTNode_returnsBoolean__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7765 
7766   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_returnsBoolean__SWIG_1")]
ASTNode_returnsBoolean__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1)7767   public static extern bool ASTNode_returnsBoolean__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1);
7768 
7769   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isConstant")]
ASTNode_isConstant(global::System.Runtime.InteropServices.HandleRef jarg1)7770   public static extern bool ASTNode_isConstant(global::System.Runtime.InteropServices.HandleRef jarg1);
7771 
7772   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isCiNumber")]
ASTNode_isCiNumber(global::System.Runtime.InteropServices.HandleRef jarg1)7773   public static extern bool ASTNode_isCiNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
7774 
7775   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isConstantNumber")]
ASTNode_isConstantNumber(global::System.Runtime.InteropServices.HandleRef jarg1)7776   public static extern bool ASTNode_isConstantNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
7777 
7778   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isCSymbolFunction")]
ASTNode_isCSymbolFunction(global::System.Runtime.InteropServices.HandleRef jarg1)7779   public static extern bool ASTNode_isCSymbolFunction(global::System.Runtime.InteropServices.HandleRef jarg1);
7780 
7781   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isFunction")]
ASTNode_isFunction(global::System.Runtime.InteropServices.HandleRef jarg1)7782   public static extern bool ASTNode_isFunction(global::System.Runtime.InteropServices.HandleRef jarg1);
7783 
7784   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isInfinity")]
ASTNode_isInfinity(global::System.Runtime.InteropServices.HandleRef jarg1)7785   public static extern bool ASTNode_isInfinity(global::System.Runtime.InteropServices.HandleRef jarg1);
7786 
7787   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isInteger")]
ASTNode_isInteger(global::System.Runtime.InteropServices.HandleRef jarg1)7788   public static extern bool ASTNode_isInteger(global::System.Runtime.InteropServices.HandleRef jarg1);
7789 
7790   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isLambda")]
ASTNode_isLambda(global::System.Runtime.InteropServices.HandleRef jarg1)7791   public static extern bool ASTNode_isLambda(global::System.Runtime.InteropServices.HandleRef jarg1);
7792 
7793   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isLog10")]
ASTNode_isLog10(global::System.Runtime.InteropServices.HandleRef jarg1)7794   public static extern bool ASTNode_isLog10(global::System.Runtime.InteropServices.HandleRef jarg1);
7795 
7796   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isLogical")]
ASTNode_isLogical(global::System.Runtime.InteropServices.HandleRef jarg1)7797   public static extern bool ASTNode_isLogical(global::System.Runtime.InteropServices.HandleRef jarg1);
7798 
7799   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isName")]
ASTNode_isName(global::System.Runtime.InteropServices.HandleRef jarg1)7800   public static extern bool ASTNode_isName(global::System.Runtime.InteropServices.HandleRef jarg1);
7801 
7802   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isNaN")]
ASTNode_isNaN(global::System.Runtime.InteropServices.HandleRef jarg1)7803   public static extern bool ASTNode_isNaN(global::System.Runtime.InteropServices.HandleRef jarg1);
7804 
7805   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isNegInfinity")]
ASTNode_isNegInfinity(global::System.Runtime.InteropServices.HandleRef jarg1)7806   public static extern bool ASTNode_isNegInfinity(global::System.Runtime.InteropServices.HandleRef jarg1);
7807 
7808   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isNumber")]
ASTNode_isNumber(global::System.Runtime.InteropServices.HandleRef jarg1)7809   public static extern bool ASTNode_isNumber(global::System.Runtime.InteropServices.HandleRef jarg1);
7810 
7811   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isOperator")]
ASTNode_isOperator(global::System.Runtime.InteropServices.HandleRef jarg1)7812   public static extern bool ASTNode_isOperator(global::System.Runtime.InteropServices.HandleRef jarg1);
7813 
7814   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isPiecewise")]
ASTNode_isPiecewise(global::System.Runtime.InteropServices.HandleRef jarg1)7815   public static extern bool ASTNode_isPiecewise(global::System.Runtime.InteropServices.HandleRef jarg1);
7816 
7817   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isRational")]
ASTNode_isRational(global::System.Runtime.InteropServices.HandleRef jarg1)7818   public static extern bool ASTNode_isRational(global::System.Runtime.InteropServices.HandleRef jarg1);
7819 
7820   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isReal")]
ASTNode_isReal(global::System.Runtime.InteropServices.HandleRef jarg1)7821   public static extern bool ASTNode_isReal(global::System.Runtime.InteropServices.HandleRef jarg1);
7822 
7823   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isRelational")]
ASTNode_isRelational(global::System.Runtime.InteropServices.HandleRef jarg1)7824   public static extern bool ASTNode_isRelational(global::System.Runtime.InteropServices.HandleRef jarg1);
7825 
7826   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSqrt")]
ASTNode_isSqrt(global::System.Runtime.InteropServices.HandleRef jarg1)7827   public static extern bool ASTNode_isSqrt(global::System.Runtime.InteropServices.HandleRef jarg1);
7828 
7829   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isUMinus")]
ASTNode_isUMinus(global::System.Runtime.InteropServices.HandleRef jarg1)7830   public static extern bool ASTNode_isUMinus(global::System.Runtime.InteropServices.HandleRef jarg1);
7831 
7832   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isUPlus")]
ASTNode_isUPlus(global::System.Runtime.InteropServices.HandleRef jarg1)7833   public static extern bool ASTNode_isUPlus(global::System.Runtime.InteropServices.HandleRef jarg1);
7834 
7835   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isUserFunction")]
ASTNode_isUserFunction(global::System.Runtime.InteropServices.HandleRef jarg1)7836   public static extern bool ASTNode_isUserFunction(global::System.Runtime.InteropServices.HandleRef jarg1);
7837 
7838   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_hasTypeAndNumChildren")]
ASTNode_hasTypeAndNumChildren(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3)7839   public static extern int ASTNode_hasTypeAndNumChildren(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, long jarg3);
7840 
7841   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isUnknown")]
ASTNode_isUnknown(global::System.Runtime.InteropServices.HandleRef jarg1)7842   public static extern bool ASTNode_isUnknown(global::System.Runtime.InteropServices.HandleRef jarg1);
7843 
7844   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSetId")]
ASTNode_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1)7845   public static extern bool ASTNode_isSetId(global::System.Runtime.InteropServices.HandleRef jarg1);
7846 
7847   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSetClass")]
ASTNode_isSetClass(global::System.Runtime.InteropServices.HandleRef jarg1)7848   public static extern bool ASTNode_isSetClass(global::System.Runtime.InteropServices.HandleRef jarg1);
7849 
7850   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSetStyle")]
ASTNode_isSetStyle(global::System.Runtime.InteropServices.HandleRef jarg1)7851   public static extern bool ASTNode_isSetStyle(global::System.Runtime.InteropServices.HandleRef jarg1);
7852 
7853   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSetUnits")]
ASTNode_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)7854   public static extern bool ASTNode_isSetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
7855 
7856   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_hasUnits")]
ASTNode_hasUnits(global::System.Runtime.InteropServices.HandleRef jarg1)7857   public static extern bool ASTNode_hasUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
7858 
7859   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setCharacter")]
ASTNode_setCharacter(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2)7860   public static extern int ASTNode_setCharacter(global::System.Runtime.InteropServices.HandleRef jarg1, char jarg2);
7861 
7862   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setId")]
ASTNode_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7863   public static extern int ASTNode_setId(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7864 
7865   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setClass")]
ASTNode_setClass(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7866   public static extern int ASTNode_setClass(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7867 
7868   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setStyle")]
ASTNode_setStyle(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7869   public static extern int ASTNode_setStyle(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7870 
7871   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setName")]
ASTNode_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7872   public static extern int ASTNode_setName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7873 
7874   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setValue__SWIG_0")]
ASTNode_setValue__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)7875   public static extern int ASTNode_setValue__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7876 
7877   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setValue__SWIG_1")]
ASTNode_setValue__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3)7878   public static extern int ASTNode_setValue__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3);
7879 
7880   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setValue__SWIG_2")]
ASTNode_setValue__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2)7881   public static extern int ASTNode_setValue__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2);
7882 
7883   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setValue__SWIG_3")]
ASTNode_setValue__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3)7884   public static extern int ASTNode_setValue__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, int jarg3);
7885 
7886   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setType")]
ASTNode_setType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)7887   public static extern int ASTNode_setType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7888 
7889   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setUnits")]
ASTNode_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7890   public static extern int ASTNode_setUnits(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7891 
7892   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_swapChildren")]
ASTNode_swapChildren(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7893   public static extern int ASTNode_swapChildren(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7894 
7895   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_renameSIdRefs")]
ASTNode_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)7896   public static extern void ASTNode_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
7897 
7898   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_renameUnitSIdRefs")]
ASTNode_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)7899   public static extern void ASTNode_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
7900 
7901   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_replaceIDWithFunction")]
ASTNode_replaceIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7902   public static extern void ASTNode_replaceIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7903 
7904   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_multiplyTimeBy")]
ASTNode_multiplyTimeBy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7905   public static extern void ASTNode_multiplyTimeBy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7906 
7907   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_unsetUnits")]
ASTNode_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1)7908   public static extern int ASTNode_unsetUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
7909 
7910   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_unsetId")]
ASTNode_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1)7911   public static extern int ASTNode_unsetId(global::System.Runtime.InteropServices.HandleRef jarg1);
7912 
7913   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_unsetClass")]
ASTNode_unsetClass(global::System.Runtime.InteropServices.HandleRef jarg1)7914   public static extern int ASTNode_unsetClass(global::System.Runtime.InteropServices.HandleRef jarg1);
7915 
7916   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_unsetStyle")]
ASTNode_unsetStyle(global::System.Runtime.InteropServices.HandleRef jarg1)7917   public static extern int ASTNode_unsetStyle(global::System.Runtime.InteropServices.HandleRef jarg1);
7918 
7919   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setDefinitionURL__SWIG_0")]
ASTNode_setDefinitionURL__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7920   public static extern int ASTNode_setDefinitionURL__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7921 
7922   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setDefinitionURL__SWIG_1")]
ASTNode_setDefinitionURL__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7923   public static extern int ASTNode_setDefinitionURL__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7924 
7925   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getDefinitionURL")]
ASTNode_getDefinitionURL(global::System.Runtime.InteropServices.HandleRef jarg1)7926   public static extern global::System.IntPtr ASTNode_getDefinitionURL(global::System.Runtime.InteropServices.HandleRef jarg1);
7927 
7928   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_replaceArgument")]
ASTNode_replaceArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)7929   public static extern void ASTNode_replaceArgument(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
7930 
7931   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getParentSBMLObject")]
ASTNode_getParentSBMLObject(global::System.Runtime.InteropServices.HandleRef jarg1)7932   public static extern global::System.IntPtr ASTNode_getParentSBMLObject(global::System.Runtime.InteropServices.HandleRef jarg1);
7933 
7934   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_unsetParentSBMLObject")]
ASTNode_unsetParentSBMLObject(global::System.Runtime.InteropServices.HandleRef jarg1)7935   public static extern int ASTNode_unsetParentSBMLObject(global::System.Runtime.InteropServices.HandleRef jarg1);
7936 
7937   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSetParentSBMLObject")]
ASTNode_isSetParentSBMLObject(global::System.Runtime.InteropServices.HandleRef jarg1)7938   public static extern bool ASTNode_isSetParentSBMLObject(global::System.Runtime.InteropServices.HandleRef jarg1);
7939 
7940   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_reduceToBinary")]
ASTNode_reduceToBinary(global::System.Runtime.InteropServices.HandleRef jarg1)7941   public static extern void ASTNode_reduceToBinary(global::System.Runtime.InteropServices.HandleRef jarg1);
7942 
7943   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_unsetUserData")]
ASTNode_unsetUserData(global::System.Runtime.InteropServices.HandleRef jarg1)7944   public static extern int ASTNode_unsetUserData(global::System.Runtime.InteropServices.HandleRef jarg1);
7945 
7946   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSetUserData")]
ASTNode_isSetUserData(global::System.Runtime.InteropServices.HandleRef jarg1)7947   public static extern bool ASTNode_isSetUserData(global::System.Runtime.InteropServices.HandleRef jarg1);
7948 
7949   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isWellFormedASTNode")]
ASTNode_isWellFormedASTNode(global::System.Runtime.InteropServices.HandleRef jarg1)7950   public static extern bool ASTNode_isWellFormedASTNode(global::System.Runtime.InteropServices.HandleRef jarg1);
7951 
7952   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_hasCorrectNumberArguments")]
ASTNode_hasCorrectNumberArguments(global::System.Runtime.InteropServices.HandleRef jarg1)7953   public static extern bool ASTNode_hasCorrectNumberArguments(global::System.Runtime.InteropServices.HandleRef jarg1);
7954 
7955   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getDefinitionURLString")]
ASTNode_getDefinitionURLString(global::System.Runtime.InteropServices.HandleRef jarg1)7956   public static extern string ASTNode_getDefinitionURLString(global::System.Runtime.InteropServices.HandleRef jarg1);
7957 
7958   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_representsBvar")]
ASTNode_representsBvar(global::System.Runtime.InteropServices.HandleRef jarg1)7959   public static extern bool ASTNode_representsBvar(global::System.Runtime.InteropServices.HandleRef jarg1);
7960 
7961   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isBvar")]
ASTNode_isBvar(global::System.Runtime.InteropServices.HandleRef jarg1)7962   public static extern bool ASTNode_isBvar(global::System.Runtime.InteropServices.HandleRef jarg1);
7963 
7964   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_setBvar")]
ASTNode_setBvar(global::System.Runtime.InteropServices.HandleRef jarg1)7965   public static extern void ASTNode_setBvar(global::System.Runtime.InteropServices.HandleRef jarg1);
7966 
7967   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_usesL3V2MathConstructs")]
ASTNode_usesL3V2MathConstructs(global::System.Runtime.InteropServices.HandleRef jarg1)7968   public static extern bool ASTNode_usesL3V2MathConstructs(global::System.Runtime.InteropServices.HandleRef jarg1);
7969 
7970   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_usesRateOf")]
ASTNode_usesRateOf(global::System.Runtime.InteropServices.HandleRef jarg1)7971   public static extern bool ASTNode_usesRateOf(global::System.Runtime.InteropServices.HandleRef jarg1);
7972 
7973   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isQualifier")]
ASTNode_isQualifier(global::System.Runtime.InteropServices.HandleRef jarg1)7974   public static extern bool ASTNode_isQualifier(global::System.Runtime.InteropServices.HandleRef jarg1);
7975 
7976   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_isSemantics")]
ASTNode_isSemantics(global::System.Runtime.InteropServices.HandleRef jarg1)7977   public static extern bool ASTNode_isSemantics(global::System.Runtime.InteropServices.HandleRef jarg1);
7978 
7979   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getNumBvars")]
ASTNode_getNumBvars(global::System.Runtime.InteropServices.HandleRef jarg1)7980   public static extern uint ASTNode_getNumBvars(global::System.Runtime.InteropServices.HandleRef jarg1);
7981 
7982   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_addPlugin")]
ASTNode_addPlugin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7983   public static extern void ASTNode_addPlugin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7984 
7985   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_loadASTPlugins")]
ASTNode_loadASTPlugins(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7986   public static extern void ASTNode_loadASTPlugins(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7987 
7988   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_loadASTPlugin")]
ASTNode_loadASTPlugin(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)7989   public static extern void ASTNode_loadASTPlugin(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
7990 
7991   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getASTPlugin__SWIG_0")]
ASTNode_getASTPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)7992   public static extern global::System.IntPtr ASTNode_getASTPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
7993 
7994   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getASTPlugin__SWIG_1")]
ASTNode_getASTPlugin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)7995   public static extern global::System.IntPtr ASTNode_getASTPlugin__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
7996 
7997   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getASTPlugin__SWIG_2")]
ASTNode_getASTPlugin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, bool jarg4)7998   public static extern global::System.IntPtr ASTNode_getASTPlugin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3, bool jarg4);
7999 
8000   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getASTPlugin__SWIG_3")]
ASTNode_getASTPlugin__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)8001   public static extern global::System.IntPtr ASTNode_getASTPlugin__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
8002 
8003   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getASTPlugin__SWIG_4")]
ASTNode_getASTPlugin__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8004   public static extern global::System.IntPtr ASTNode_getASTPlugin__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8005 
8006   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getPlugin__SWIG_0")]
ASTNode_getPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8007   public static extern global::System.IntPtr ASTNode_getPlugin__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8008 
8009   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getPlugin__SWIG_2")]
ASTNode_getPlugin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)8010   public static extern global::System.IntPtr ASTNode_getPlugin__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8011 
8012   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getNumPlugins")]
ASTNode_getNumPlugins(global::System.Runtime.InteropServices.HandleRef jarg1)8013   public static extern uint ASTNode_getNumPlugins(global::System.Runtime.InteropServices.HandleRef jarg1);
8014 
8015   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNode_getListOfNodes")]
ASTNode_getListOfNodes(global::System.Runtime.InteropServices.HandleRef jarg1)8016   public static extern global::System.IntPtr ASTNode_getListOfNodes(global::System.Runtime.InteropServices.HandleRef jarg1);
8017 
8018   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_readMathMLFromString")]
readMathMLFromString(string jarg1)8019   public static extern global::System.IntPtr readMathMLFromString(string jarg1);
8020 
8021   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_readMathMLFromStringWithNamespaces")]
readMathMLFromStringWithNamespaces(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8022   public static extern global::System.IntPtr readMathMLFromStringWithNamespaces(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8023 
8024   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_writeMathMLToString")]
writeMathMLToString(global::System.Runtime.InteropServices.HandleRef jarg1)8025   public static extern string writeMathMLToString(global::System.Runtime.InteropServices.HandleRef jarg1);
8026 
8027   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_writeMathMLWithNamespaceToString")]
writeMathMLWithNamespaceToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8028   public static extern string writeMathMLWithNamespaceToString(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8029 
8030   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_parseFormula")]
parseFormula(string jarg1)8031   public static extern global::System.IntPtr parseFormula(string jarg1);
8032 
8033   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_formulaToL3String")]
formulaToL3String(global::System.Runtime.InteropServices.HandleRef jarg1)8034   public static extern string formulaToL3String(global::System.Runtime.InteropServices.HandleRef jarg1);
8035 
8036   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_formulaToL3StringWithSettings")]
formulaToL3StringWithSettings(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8037   public static extern string formulaToL3StringWithSettings(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8038 
8039   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_formulaToString")]
formulaToString(global::System.Runtime.InteropServices.HandleRef jarg1)8040   public static extern string formulaToString(global::System.Runtime.InteropServices.HandleRef jarg1);
8041 
8042   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_parseL3Formula")]
parseL3Formula(string jarg1)8043   public static extern global::System.IntPtr parseL3Formula(string jarg1);
8044 
8045   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_parseL3FormulaWithModel")]
parseL3FormulaWithModel(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8046   public static extern global::System.IntPtr parseL3FormulaWithModel(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8047 
8048   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_parseL3FormulaWithSettings")]
parseL3FormulaWithSettings(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8049   public static extern global::System.IntPtr parseL3FormulaWithSettings(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8050 
8051   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_getDefaultL3ParserSettings")]
getDefaultL3ParserSettings()8052   public static extern global::System.IntPtr getDefaultL3ParserSettings();
8053 
8054   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_getLastParseL3Error")]
getLastParseL3Error()8055   public static extern string getLastParseL3Error();
8056 
8057   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBML_deleteL3Parser")]
SBML_deleteL3Parser()8058   public static extern void SBML_deleteL3Parser();
8059 
8060   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_L3ParserSettings__SWIG_0")]
new_L3ParserSettings__SWIG_0()8061   public static extern global::System.IntPtr new_L3ParserSettings__SWIG_0();
8062 
8063   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_L3ParserSettings__SWIG_1")]
new_L3ParserSettings__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, bool jarg9)8064   public static extern global::System.IntPtr new_L3ParserSettings__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8, bool jarg9);
8065 
8066   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_L3ParserSettings__SWIG_2")]
new_L3ParserSettings__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8)8067   public static extern global::System.IntPtr new_L3ParserSettings__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6, global::System.Runtime.InteropServices.HandleRef jarg7, bool jarg8);
8068 
8069   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_L3ParserSettings__SWIG_3")]
new_L3ParserSettings__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6, global::System.Runtime.InteropServices.HandleRef jarg7)8070   public static extern global::System.IntPtr new_L3ParserSettings__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6, global::System.Runtime.InteropServices.HandleRef jarg7);
8071 
8072   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_L3ParserSettings__SWIG_4")]
new_L3ParserSettings__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6)8073   public static extern global::System.IntPtr new_L3ParserSettings__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5, bool jarg6);
8074 
8075   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_L3ParserSettings__SWIG_5")]
new_L3ParserSettings__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5)8076   public static extern global::System.IntPtr new_L3ParserSettings__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3, bool jarg4, bool jarg5);
8077 
8078   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_L3ParserSettings__SWIG_6")]
new_L3ParserSettings__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1)8079   public static extern global::System.IntPtr new_L3ParserSettings__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1);
8080 
8081   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_L3ParserSettings")]
delete_L3ParserSettings(global::System.Runtime.InteropServices.HandleRef jarg1)8082   public static extern void delete_L3ParserSettings(global::System.Runtime.InteropServices.HandleRef jarg1);
8083 
8084   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setModel")]
L3ParserSettings_setModel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8085   public static extern void L3ParserSettings_setModel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8086 
8087   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getModel")]
L3ParserSettings_getModel(global::System.Runtime.InteropServices.HandleRef jarg1)8088   public static extern global::System.IntPtr L3ParserSettings_getModel(global::System.Runtime.InteropServices.HandleRef jarg1);
8089 
8090   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_unsetModel")]
L3ParserSettings_unsetModel(global::System.Runtime.InteropServices.HandleRef jarg1)8091   public static extern void L3ParserSettings_unsetModel(global::System.Runtime.InteropServices.HandleRef jarg1);
8092 
8093   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setParseLog")]
L3ParserSettings_setParseLog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8094   public static extern void L3ParserSettings_setParseLog(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8095 
8096   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getParseLog")]
L3ParserSettings_getParseLog(global::System.Runtime.InteropServices.HandleRef jarg1)8097   public static extern int L3ParserSettings_getParseLog(global::System.Runtime.InteropServices.HandleRef jarg1);
8098 
8099   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setParseCollapseMinus")]
L3ParserSettings_setParseCollapseMinus(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)8100   public static extern void L3ParserSettings_setParseCollapseMinus(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8101 
8102   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getParseCollapseMinus")]
L3ParserSettings_getParseCollapseMinus(global::System.Runtime.InteropServices.HandleRef jarg1)8103   public static extern bool L3ParserSettings_getParseCollapseMinus(global::System.Runtime.InteropServices.HandleRef jarg1);
8104 
8105   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setParseUnits")]
L3ParserSettings_setParseUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)8106   public static extern void L3ParserSettings_setParseUnits(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8107 
8108   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getParseUnits")]
L3ParserSettings_getParseUnits(global::System.Runtime.InteropServices.HandleRef jarg1)8109   public static extern bool L3ParserSettings_getParseUnits(global::System.Runtime.InteropServices.HandleRef jarg1);
8110 
8111   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setParseAvogadroCsymbol")]
L3ParserSettings_setParseAvogadroCsymbol(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)8112   public static extern void L3ParserSettings_setParseAvogadroCsymbol(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8113 
8114   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getParseAvogadroCsymbol")]
L3ParserSettings_getParseAvogadroCsymbol(global::System.Runtime.InteropServices.HandleRef jarg1)8115   public static extern bool L3ParserSettings_getParseAvogadroCsymbol(global::System.Runtime.InteropServices.HandleRef jarg1);
8116 
8117   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setComparisonCaseSensitivity")]
L3ParserSettings_setComparisonCaseSensitivity(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)8118   public static extern void L3ParserSettings_setComparisonCaseSensitivity(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8119 
8120   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getComparisonCaseSensitivity")]
L3ParserSettings_getComparisonCaseSensitivity(global::System.Runtime.InteropServices.HandleRef jarg1)8121   public static extern bool L3ParserSettings_getComparisonCaseSensitivity(global::System.Runtime.InteropServices.HandleRef jarg1);
8122 
8123   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setParseModuloL3v2")]
L3ParserSettings_setParseModuloL3v2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)8124   public static extern void L3ParserSettings_setParseModuloL3v2(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8125 
8126   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getParseModuloL3v2")]
L3ParserSettings_getParseModuloL3v2(global::System.Runtime.InteropServices.HandleRef jarg1)8127   public static extern bool L3ParserSettings_getParseModuloL3v2(global::System.Runtime.InteropServices.HandleRef jarg1);
8128 
8129   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setParseL3v2Functions")]
L3ParserSettings_setParseL3v2Functions(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)8130   public static extern void L3ParserSettings_setParseL3v2Functions(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8131 
8132   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getParseL3v2Functions")]
L3ParserSettings_getParseL3v2Functions(global::System.Runtime.InteropServices.HandleRef jarg1)8133   public static extern bool L3ParserSettings_getParseL3v2Functions(global::System.Runtime.InteropServices.HandleRef jarg1);
8134 
8135   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_setParsePackageMath")]
L3ParserSettings_setParsePackageMath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3)8136   public static extern void L3ParserSettings_setParsePackageMath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, bool jarg3);
8137 
8138   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_getParsePackageMath")]
L3ParserSettings_getParsePackageMath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8139   public static extern bool L3ParserSettings_getParsePackageMath(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8140 
8141   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_L3ParserSettings_visitPackageInfixSyntax")]
L3ParserSettings_visitPackageInfixSyntax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4)8142   public static extern void L3ParserSettings_visitPackageInfixSyntax(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);
8143 
8144   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_getInstance")]
DefinitionURLRegistry_getInstance()8145   public static extern global::System.IntPtr DefinitionURLRegistry_getInstance();
8146 
8147   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_addDefinitionURL")]
DefinitionURLRegistry_addDefinitionURL(string jarg1, int jarg2)8148   public static extern int DefinitionURLRegistry_addDefinitionURL(string jarg1, int jarg2);
8149 
8150   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_getNumDefinitionURLs")]
DefinitionURLRegistry_getNumDefinitionURLs()8151   public static extern int DefinitionURLRegistry_getNumDefinitionURLs();
8152 
8153   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_addSBMLDefinitions")]
DefinitionURLRegistry_addSBMLDefinitions()8154   public static extern void DefinitionURLRegistry_addSBMLDefinitions();
8155 
8156   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_getCoreDefinitionsAdded")]
DefinitionURLRegistry_getCoreDefinitionsAdded()8157   public static extern bool DefinitionURLRegistry_getCoreDefinitionsAdded();
8158 
8159   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_getType")]
DefinitionURLRegistry_getType(string jarg1)8160   public static extern int DefinitionURLRegistry_getType(string jarg1);
8161 
8162   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_getDefinitionUrlByIndex")]
DefinitionURLRegistry_getDefinitionUrlByIndex(int jarg1)8163   public static extern string DefinitionURLRegistry_getDefinitionUrlByIndex(int jarg1);
8164 
8165   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_DefinitionURLRegistry_clearDefinitions")]
DefinitionURLRegistry_clearDefinitions()8166   public static extern void DefinitionURLRegistry_clearDefinitions();
8167 
8168   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_DefinitionURLRegistry")]
delete_DefinitionURLRegistry(global::System.Runtime.InteropServices.HandleRef jarg1)8169   public static extern void delete_DefinitionURLRegistry(global::System.Runtime.InteropServices.HandleRef jarg1);
8170 
8171   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_MathFilter")]
new_MathFilter()8172   public static extern global::System.IntPtr new_MathFilter();
8173 
8174   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_MathFilter")]
delete_MathFilter(global::System.Runtime.InteropServices.HandleRef jarg1)8175   public static extern void delete_MathFilter(global::System.Runtime.InteropServices.HandleRef jarg1);
8176 
8177   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_MathFilter_filter")]
MathFilter_filter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8178   public static extern bool MathFilter_filter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8179 
8180   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_MathFilter_filterSwigExplicitMathFilter")]
MathFilter_filterSwigExplicitMathFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8181   public static extern bool MathFilter_filterSwigExplicitMathFilter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8182 
8183   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_MathFilter_director_connect")]
MathFilter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, MathFilter.SwigDelegateMathFilter_0 delegate0)8184   public static extern void MathFilter_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, MathFilter.SwigDelegateMathFilter_0 delegate0);
8185 
8186   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_name_set")]
ASTNodeValues_t_name_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8187   public static extern void ASTNodeValues_t_name_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8188 
8189   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_name_get")]
ASTNodeValues_t_name_get(global::System.Runtime.InteropServices.HandleRef jarg1)8190   public static extern string ASTNodeValues_t_name_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8191 
8192   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_type_set")]
ASTNodeValues_t_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8193   public static extern void ASTNodeValues_t_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8194 
8195   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_type_get")]
ASTNodeValues_t_type_get(global::System.Runtime.InteropServices.HandleRef jarg1)8196   public static extern int ASTNodeValues_t_type_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8197 
8198   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_isFunction_set")]
ASTNodeValues_t_isFunction_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2)8199   public static extern void ASTNodeValues_t_isFunction_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2);
8200 
8201   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_isFunction_get")]
ASTNodeValues_t_isFunction_get(global::System.Runtime.InteropServices.HandleRef jarg1)8202   public static extern bool ASTNodeValues_t_isFunction_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8203 
8204   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_csymbolURL_set")]
ASTNodeValues_t_csymbolURL_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8205   public static extern void ASTNodeValues_t_csymbolURL_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8206 
8207   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_csymbolURL_get")]
ASTNodeValues_t_csymbolURL_get(global::System.Runtime.InteropServices.HandleRef jarg1)8208   public static extern string ASTNodeValues_t_csymbolURL_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8209 
8210   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_allowedChildrenType_set")]
ASTNodeValues_t_allowedChildrenType_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8211   public static extern void ASTNodeValues_t_allowedChildrenType_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8212 
8213   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_allowedChildrenType_get")]
ASTNodeValues_t_allowedChildrenType_get(global::System.Runtime.InteropServices.HandleRef jarg1)8214   public static extern int ASTNodeValues_t_allowedChildrenType_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8215 
8216   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_numAllowedChildren_set")]
ASTNodeValues_t_numAllowedChildren_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8217   public static extern void ASTNodeValues_t_numAllowedChildren_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8218 
8219   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTNodeValues_t_numAllowedChildren_get")]
ASTNodeValues_t_numAllowedChildren_get(global::System.Runtime.InteropServices.HandleRef jarg1)8220   public static extern global::System.IntPtr ASTNodeValues_t_numAllowedChildren_get(global::System.Runtime.InteropServices.HandleRef jarg1);
8221 
8222   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_new_ASTNodeValues_t")]
new_ASTNodeValues_t()8223   public static extern global::System.IntPtr new_ASTNodeValues_t();
8224 
8225   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ASTNodeValues_t")]
delete_ASTNodeValues_t(global::System.Runtime.InteropServices.HandleRef jarg1)8226   public static extern void delete_ASTNodeValues_t(global::System.Runtime.InteropServices.HandleRef jarg1);
8227 
8228   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getStringFor")]
ASTBasePlugin_getStringFor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8229   public static extern string ASTBasePlugin_getStringFor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8230 
8231   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getConstCharFor")]
ASTBasePlugin_getConstCharFor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8232   public static extern string ASTBasePlugin_getConstCharFor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8233 
8234   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getConstCharCsymbolURLFor")]
ASTBasePlugin_getConstCharCsymbolURLFor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8235   public static extern string ASTBasePlugin_getConstCharCsymbolURLFor(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8236 
8237   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getASTNodeTypeFor")]
ASTBasePlugin_getASTNodeTypeFor(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8238   public static extern int ASTBasePlugin_getASTNodeTypeFor(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8239 
8240   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getASTNodeTypeForCSymbolURL")]
ASTBasePlugin_getASTNodeTypeForCSymbolURL(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8241   public static extern int ASTBasePlugin_getASTNodeTypeForCSymbolURL(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8242 
8243   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_hasCorrectNamespace")]
ASTBasePlugin_hasCorrectNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8244   public static extern bool ASTBasePlugin_hasCorrectNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8245 
8246   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_defines__SWIG_0")]
ASTBasePlugin_defines__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8247   public static extern bool ASTBasePlugin_defines__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8248 
8249   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_defines__SWIG_1")]
ASTBasePlugin_defines__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)8250   public static extern bool ASTBasePlugin_defines__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
8251 
8252   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_defines__SWIG_2")]
ASTBasePlugin_defines__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8253   public static extern bool ASTBasePlugin_defines__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8254 
8255   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_isFunction")]
ASTBasePlugin_isFunction(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8256   public static extern bool ASTBasePlugin_isFunction(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8257 
8258   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getNumAllowedChildren")]
ASTBasePlugin_getNumAllowedChildren(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8259   public static extern global::System.IntPtr ASTBasePlugin_getNumAllowedChildren(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8260 
8261   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_isLogical")]
ASTBasePlugin_isLogical(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8262   public static extern bool ASTBasePlugin_isLogical(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8263 
8264   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_isMathMLNodeTag__SWIG_0")]
ASTBasePlugin_isMathMLNodeTag__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8265   public static extern bool ASTBasePlugin_isMathMLNodeTag__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8266 
8267   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_isMathMLNodeTag__SWIG_1")]
ASTBasePlugin_isMathMLNodeTag__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8268   public static extern bool ASTBasePlugin_isMathMLNodeTag__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8269 
8270   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getExtendedMathType")]
ASTBasePlugin_getExtendedMathType(global::System.Runtime.InteropServices.HandleRef jarg1)8271   public static extern int ASTBasePlugin_getExtendedMathType(global::System.Runtime.InteropServices.HandleRef jarg1);
8272 
8273   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_evaluateASTNode__SWIG_0")]
ASTBasePlugin_evaluateASTNode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)8274   public static extern double ASTBasePlugin_evaluateASTNode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8275 
8276   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_evaluateASTNode__SWIG_1")]
ASTBasePlugin_evaluateASTNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8277   public static extern double ASTBasePlugin_evaluateASTNode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8278 
8279   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getUnitDefinitionFromPackage")]
ASTBasePlugin_getUnitDefinitionFromPackage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5)8280   public static extern global::System.IntPtr ASTBasePlugin_getUnitDefinitionFromPackage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4, int jarg5);
8281 
8282   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getASTNodeValue")]
ASTBasePlugin_getASTNodeValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2)8283   public static extern global::System.IntPtr ASTBasePlugin_getASTNodeValue(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2);
8284 
8285   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_allowedInFunctionDefinition")]
ASTBasePlugin_allowedInFunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2)8286   public static extern int ASTBasePlugin_allowedInFunctionDefinition(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2);
8287 
8288   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_delete_ASTBasePlugin")]
delete_ASTBasePlugin(global::System.Runtime.InteropServices.HandleRef jarg1)8289   public static extern void delete_ASTBasePlugin(global::System.Runtime.InteropServices.HandleRef jarg1);
8290 
8291   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_clone")]
ASTBasePlugin_clone(global::System.Runtime.InteropServices.HandleRef jarg1)8292   public static extern global::System.IntPtr ASTBasePlugin_clone(global::System.Runtime.InteropServices.HandleRef jarg1);
8293 
8294   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getElementNamespace")]
ASTBasePlugin_getElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1)8295   public static extern string ASTBasePlugin_getElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1);
8296 
8297   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getPrefix")]
ASTBasePlugin_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1)8298   public static extern string ASTBasePlugin_getPrefix(global::System.Runtime.InteropServices.HandleRef jarg1);
8299 
8300   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getPackageName")]
ASTBasePlugin_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1)8301   public static extern string ASTBasePlugin_getPackageName(global::System.Runtime.InteropServices.HandleRef jarg1);
8302 
8303   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_setSBMLExtension")]
ASTBasePlugin_setSBMLExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8304   public static extern int ASTBasePlugin_setSBMLExtension(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8305 
8306   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_setPrefix")]
ASTBasePlugin_setPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8307   public static extern int ASTBasePlugin_setPrefix(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8308 
8309   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_connectToParent")]
ASTBasePlugin_connectToParent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8310   public static extern void ASTBasePlugin_connectToParent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8311 
8312   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_enablePackageInternal")]
ASTBasePlugin_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4)8313   public static extern void ASTBasePlugin_enablePackageInternal(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4);
8314 
8315   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_stripPackage")]
ASTBasePlugin_stripPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3)8316   public static extern bool ASTBasePlugin_stripPackage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3);
8317 
8318   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getURI")]
ASTBasePlugin_getURI(global::System.Runtime.InteropServices.HandleRef jarg1)8319   public static extern string ASTBasePlugin_getURI(global::System.Runtime.InteropServices.HandleRef jarg1);
8320 
8321   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getParentASTObject__SWIG_0")]
ASTBasePlugin_getParentASTObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1)8322   public static extern global::System.IntPtr ASTBasePlugin_getParentASTObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1);
8323 
8324   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_setElementNamespace")]
ASTBasePlugin_setElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2)8325   public static extern int ASTBasePlugin_setElementNamespace(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2);
8326 
8327   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getLevel")]
ASTBasePlugin_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1)8328   public static extern uint ASTBasePlugin_getLevel(global::System.Runtime.InteropServices.HandleRef jarg1);
8329 
8330   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getVersion")]
ASTBasePlugin_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1)8331   public static extern uint ASTBasePlugin_getVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8332 
8333   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getPackageVersion")]
ASTBasePlugin_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1)8334   public static extern uint ASTBasePlugin_getPackageVersion(global::System.Runtime.InteropServices.HandleRef jarg1);
8335 
8336   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getSBMLNamespaces")]
ASTBasePlugin_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1)8337   public static extern global::System.IntPtr ASTBasePlugin_getSBMLNamespaces(global::System.Runtime.InteropServices.HandleRef jarg1);
8338 
8339   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_renameSIdRefs")]
ASTBasePlugin_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)8340   public static extern void ASTBasePlugin_renameSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
8341 
8342   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_renameUnitSIdRefs")]
ASTBasePlugin_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3)8343   public static extern void ASTBasePlugin_renameUnitSIdRefs(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3);
8344 
8345   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_replaceIDWithFunction")]
ASTBasePlugin_replaceIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)8346   public static extern void ASTBasePlugin_replaceIDWithFunction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8347 
8348   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_checkNumArguments")]
ASTBasePlugin_checkNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3)8349   public static extern int ASTBasePlugin_checkNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);
8350 
8351   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_getL3PackageInfixPrecedence")]
ASTBasePlugin_getL3PackageInfixPrecedence(global::System.Runtime.InteropServices.HandleRef jarg1)8352   public static extern int ASTBasePlugin_getL3PackageInfixPrecedence(global::System.Runtime.InteropServices.HandleRef jarg1);
8353 
8354   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_hasCorrectNumArguments")]
ASTBasePlugin_hasCorrectNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8355   public static extern bool ASTBasePlugin_hasCorrectNumArguments(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8356 
8357   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_hasPackageOnlyInfixSyntax")]
ASTBasePlugin_hasPackageOnlyInfixSyntax(global::System.Runtime.InteropServices.HandleRef jarg1)8358   public static extern bool ASTBasePlugin_hasPackageOnlyInfixSyntax(global::System.Runtime.InteropServices.HandleRef jarg1);
8359 
8360   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_hasUnambiguousPackageInfixGrammar")]
ASTBasePlugin_hasUnambiguousPackageInfixGrammar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2)8361   public static extern bool ASTBasePlugin_hasUnambiguousPackageInfixGrammar(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
8362 
8363   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ASTBasePlugin_isPackageInfixFunction")]
ASTBasePlugin_isPackageInfixFunction(global::System.Runtime.InteropServices.HandleRef jarg1)8364   public static extern bool ASTBasePlugin_isPackageInfixFunction(global::System.Runtime.InteropServices.HandleRef jarg1);
8365 
8366   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OFStream_SWIGUpcast")]
OFStream_SWIGUpcast(global::System.IntPtr jarg1)8367   public static extern global::System.IntPtr OFStream_SWIGUpcast(global::System.IntPtr jarg1);
8368 
8369   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_OStringStream_SWIGUpcast")]
OStringStream_SWIGUpcast(global::System.IntPtr jarg1)8370   public static extern global::System.IntPtr OStringStream_SWIGUpcast(global::System.IntPtr jarg1);
8371 
8372   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOf_SWIGUpcast")]
ListOf_SWIGUpcast(global::System.IntPtr jarg1)8373   public static extern global::System.IntPtr ListOf_SWIGUpcast(global::System.IntPtr jarg1);
8374 
8375   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Model_SWIGUpcast")]
Model_SWIGUpcast(global::System.IntPtr jarg1)8376   public static extern global::System.IntPtr Model_SWIGUpcast(global::System.IntPtr jarg1);
8377 
8378   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocument_SWIGUpcast")]
SBMLDocument_SWIGUpcast(global::System.IntPtr jarg1)8379   public static extern global::System.IntPtr SBMLDocument_SWIGUpcast(global::System.IntPtr jarg1);
8380 
8381   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_FunctionDefinition_SWIGUpcast")]
FunctionDefinition_SWIGUpcast(global::System.IntPtr jarg1)8382   public static extern global::System.IntPtr FunctionDefinition_SWIGUpcast(global::System.IntPtr jarg1);
8383 
8384   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfFunctionDefinitions_SWIGUpcast")]
ListOfFunctionDefinitions_SWIGUpcast(global::System.IntPtr jarg1)8385   public static extern global::System.IntPtr ListOfFunctionDefinitions_SWIGUpcast(global::System.IntPtr jarg1);
8386 
8387   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Unit_SWIGUpcast")]
Unit_SWIGUpcast(global::System.IntPtr jarg1)8388   public static extern global::System.IntPtr Unit_SWIGUpcast(global::System.IntPtr jarg1);
8389 
8390   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnits_SWIGUpcast")]
ListOfUnits_SWIGUpcast(global::System.IntPtr jarg1)8391   public static extern global::System.IntPtr ListOfUnits_SWIGUpcast(global::System.IntPtr jarg1);
8392 
8393   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_UnitDefinition_SWIGUpcast")]
UnitDefinition_SWIGUpcast(global::System.IntPtr jarg1)8394   public static extern global::System.IntPtr UnitDefinition_SWIGUpcast(global::System.IntPtr jarg1);
8395 
8396   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfUnitDefinitions_SWIGUpcast")]
ListOfUnitDefinitions_SWIGUpcast(global::System.IntPtr jarg1)8397   public static extern global::System.IntPtr ListOfUnitDefinitions_SWIGUpcast(global::System.IntPtr jarg1);
8398 
8399   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_CompartmentType_SWIGUpcast")]
CompartmentType_SWIGUpcast(global::System.IntPtr jarg1)8400   public static extern global::System.IntPtr CompartmentType_SWIGUpcast(global::System.IntPtr jarg1);
8401 
8402   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartmentTypes_SWIGUpcast")]
ListOfCompartmentTypes_SWIGUpcast(global::System.IntPtr jarg1)8403   public static extern global::System.IntPtr ListOfCompartmentTypes_SWIGUpcast(global::System.IntPtr jarg1);
8404 
8405   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesType_SWIGUpcast")]
SpeciesType_SWIGUpcast(global::System.IntPtr jarg1)8406   public static extern global::System.IntPtr SpeciesType_SWIGUpcast(global::System.IntPtr jarg1);
8407 
8408   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesTypes_SWIGUpcast")]
ListOfSpeciesTypes_SWIGUpcast(global::System.IntPtr jarg1)8409   public static extern global::System.IntPtr ListOfSpeciesTypes_SWIGUpcast(global::System.IntPtr jarg1);
8410 
8411   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Compartment_SWIGUpcast")]
Compartment_SWIGUpcast(global::System.IntPtr jarg1)8412   public static extern global::System.IntPtr Compartment_SWIGUpcast(global::System.IntPtr jarg1);
8413 
8414   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfCompartments_SWIGUpcast")]
ListOfCompartments_SWIGUpcast(global::System.IntPtr jarg1)8415   public static extern global::System.IntPtr ListOfCompartments_SWIGUpcast(global::System.IntPtr jarg1);
8416 
8417   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Species_SWIGUpcast")]
Species_SWIGUpcast(global::System.IntPtr jarg1)8418   public static extern global::System.IntPtr Species_SWIGUpcast(global::System.IntPtr jarg1);
8419 
8420   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpecies_SWIGUpcast")]
ListOfSpecies_SWIGUpcast(global::System.IntPtr jarg1)8421   public static extern global::System.IntPtr ListOfSpecies_SWIGUpcast(global::System.IntPtr jarg1);
8422 
8423   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Parameter_SWIGUpcast")]
Parameter_SWIGUpcast(global::System.IntPtr jarg1)8424   public static extern global::System.IntPtr Parameter_SWIGUpcast(global::System.IntPtr jarg1);
8425 
8426   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfParameters_SWIGUpcast")]
ListOfParameters_SWIGUpcast(global::System.IntPtr jarg1)8427   public static extern global::System.IntPtr ListOfParameters_SWIGUpcast(global::System.IntPtr jarg1);
8428 
8429   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_LocalParameter_SWIGUpcast")]
LocalParameter_SWIGUpcast(global::System.IntPtr jarg1)8430   public static extern global::System.IntPtr LocalParameter_SWIGUpcast(global::System.IntPtr jarg1);
8431 
8432   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfLocalParameters_SWIGUpcast")]
ListOfLocalParameters_SWIGUpcast(global::System.IntPtr jarg1)8433   public static extern global::System.IntPtr ListOfLocalParameters_SWIGUpcast(global::System.IntPtr jarg1);
8434 
8435   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_InitialAssignment_SWIGUpcast")]
InitialAssignment_SWIGUpcast(global::System.IntPtr jarg1)8436   public static extern global::System.IntPtr InitialAssignment_SWIGUpcast(global::System.IntPtr jarg1);
8437 
8438   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfInitialAssignments_SWIGUpcast")]
ListOfInitialAssignments_SWIGUpcast(global::System.IntPtr jarg1)8439   public static extern global::System.IntPtr ListOfInitialAssignments_SWIGUpcast(global::System.IntPtr jarg1);
8440 
8441   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Rule_SWIGUpcast")]
Rule_SWIGUpcast(global::System.IntPtr jarg1)8442   public static extern global::System.IntPtr Rule_SWIGUpcast(global::System.IntPtr jarg1);
8443 
8444   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfRules_SWIGUpcast")]
ListOfRules_SWIGUpcast(global::System.IntPtr jarg1)8445   public static extern global::System.IntPtr ListOfRules_SWIGUpcast(global::System.IntPtr jarg1);
8446 
8447   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_AlgebraicRule_SWIGUpcast")]
AlgebraicRule_SWIGUpcast(global::System.IntPtr jarg1)8448   public static extern global::System.IntPtr AlgebraicRule_SWIGUpcast(global::System.IntPtr jarg1);
8449 
8450   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_AssignmentRule_SWIGUpcast")]
AssignmentRule_SWIGUpcast(global::System.IntPtr jarg1)8451   public static extern global::System.IntPtr AssignmentRule_SWIGUpcast(global::System.IntPtr jarg1);
8452 
8453   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_RateRule_SWIGUpcast")]
RateRule_SWIGUpcast(global::System.IntPtr jarg1)8454   public static extern global::System.IntPtr RateRule_SWIGUpcast(global::System.IntPtr jarg1);
8455 
8456   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Constraint_SWIGUpcast")]
Constraint_SWIGUpcast(global::System.IntPtr jarg1)8457   public static extern global::System.IntPtr Constraint_SWIGUpcast(global::System.IntPtr jarg1);
8458 
8459   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfConstraints_SWIGUpcast")]
ListOfConstraints_SWIGUpcast(global::System.IntPtr jarg1)8460   public static extern global::System.IntPtr ListOfConstraints_SWIGUpcast(global::System.IntPtr jarg1);
8461 
8462   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Reaction_SWIGUpcast")]
Reaction_SWIGUpcast(global::System.IntPtr jarg1)8463   public static extern global::System.IntPtr Reaction_SWIGUpcast(global::System.IntPtr jarg1);
8464 
8465   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfReactions_SWIGUpcast")]
ListOfReactions_SWIGUpcast(global::System.IntPtr jarg1)8466   public static extern global::System.IntPtr ListOfReactions_SWIGUpcast(global::System.IntPtr jarg1);
8467 
8468   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_KineticLaw_SWIGUpcast")]
KineticLaw_SWIGUpcast(global::System.IntPtr jarg1)8469   public static extern global::System.IntPtr KineticLaw_SWIGUpcast(global::System.IntPtr jarg1);
8470 
8471   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SimpleSpeciesReference_SWIGUpcast")]
SimpleSpeciesReference_SWIGUpcast(global::System.IntPtr jarg1)8472   public static extern global::System.IntPtr SimpleSpeciesReference_SWIGUpcast(global::System.IntPtr jarg1);
8473 
8474   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SpeciesReference_SWIGUpcast")]
SpeciesReference_SWIGUpcast(global::System.IntPtr jarg1)8475   public static extern global::System.IntPtr SpeciesReference_SWIGUpcast(global::System.IntPtr jarg1);
8476 
8477   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfSpeciesReferences_SWIGUpcast")]
ListOfSpeciesReferences_SWIGUpcast(global::System.IntPtr jarg1)8478   public static extern global::System.IntPtr ListOfSpeciesReferences_SWIGUpcast(global::System.IntPtr jarg1);
8479 
8480   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ModifierSpeciesReference_SWIGUpcast")]
ModifierSpeciesReference_SWIGUpcast(global::System.IntPtr jarg1)8481   public static extern global::System.IntPtr ModifierSpeciesReference_SWIGUpcast(global::System.IntPtr jarg1);
8482 
8483   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Event_SWIGUpcast")]
Event_SWIGUpcast(global::System.IntPtr jarg1)8484   public static extern global::System.IntPtr Event_SWIGUpcast(global::System.IntPtr jarg1);
8485 
8486   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEvents_SWIGUpcast")]
ListOfEvents_SWIGUpcast(global::System.IntPtr jarg1)8487   public static extern global::System.IntPtr ListOfEvents_SWIGUpcast(global::System.IntPtr jarg1);
8488 
8489   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_EventAssignment_SWIGUpcast")]
EventAssignment_SWIGUpcast(global::System.IntPtr jarg1)8490   public static extern global::System.IntPtr EventAssignment_SWIGUpcast(global::System.IntPtr jarg1);
8491 
8492   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ListOfEventAssignments_SWIGUpcast")]
ListOfEventAssignments_SWIGUpcast(global::System.IntPtr jarg1)8493   public static extern global::System.IntPtr ListOfEventAssignments_SWIGUpcast(global::System.IntPtr jarg1);
8494 
8495   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Trigger_SWIGUpcast")]
Trigger_SWIGUpcast(global::System.IntPtr jarg1)8496   public static extern global::System.IntPtr Trigger_SWIGUpcast(global::System.IntPtr jarg1);
8497 
8498   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Delay_SWIGUpcast")]
Delay_SWIGUpcast(global::System.IntPtr jarg1)8499   public static extern global::System.IntPtr Delay_SWIGUpcast(global::System.IntPtr jarg1);
8500 
8501   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_Priority_SWIGUpcast")]
Priority_SWIGUpcast(global::System.IntPtr jarg1)8502   public static extern global::System.IntPtr Priority_SWIGUpcast(global::System.IntPtr jarg1);
8503 
8504   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_StoichiometryMath_SWIGUpcast")]
StoichiometryMath_SWIGUpcast(global::System.IntPtr jarg1)8505   public static extern global::System.IntPtr StoichiometryMath_SWIGUpcast(global::System.IntPtr jarg1);
8506 
8507   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLFunctionDefinitionConverter_SWIGUpcast")]
SBMLFunctionDefinitionConverter_SWIGUpcast(global::System.IntPtr jarg1)8508   public static extern global::System.IntPtr SBMLFunctionDefinitionConverter_SWIGUpcast(global::System.IntPtr jarg1);
8509 
8510   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLIdConverter_SWIGUpcast")]
SBMLIdConverter_SWIGUpcast(global::System.IntPtr jarg1)8511   public static extern global::System.IntPtr SBMLIdConverter_SWIGUpcast(global::System.IntPtr jarg1);
8512 
8513   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInferUnitsConverter_SWIGUpcast")]
SBMLInferUnitsConverter_SWIGUpcast(global::System.IntPtr jarg1)8514   public static extern global::System.IntPtr SBMLInferUnitsConverter_SWIGUpcast(global::System.IntPtr jarg1);
8515 
8516   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLInitialAssignmentConverter_SWIGUpcast")]
SBMLInitialAssignmentConverter_SWIGUpcast(global::System.IntPtr jarg1)8517   public static extern global::System.IntPtr SBMLInitialAssignmentConverter_SWIGUpcast(global::System.IntPtr jarg1);
8518 
8519   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevelVersionConverter_SWIGUpcast")]
SBMLLevelVersionConverter_SWIGUpcast(global::System.IntPtr jarg1)8520   public static extern global::System.IntPtr SBMLLevelVersionConverter_SWIGUpcast(global::System.IntPtr jarg1);
8521 
8522   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLevel1Version1Converter_SWIGUpcast")]
SBMLLevel1Version1Converter_SWIGUpcast(global::System.IntPtr jarg1)8523   public static extern global::System.IntPtr SBMLLevel1Version1Converter_SWIGUpcast(global::System.IntPtr jarg1);
8524 
8525   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLLocalParameterConverter_SWIGUpcast")]
SBMLLocalParameterConverter_SWIGUpcast(global::System.IntPtr jarg1)8526   public static extern global::System.IntPtr SBMLLocalParameterConverter_SWIGUpcast(global::System.IntPtr jarg1);
8527 
8528   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLReactionConverter_SWIGUpcast")]
SBMLReactionConverter_SWIGUpcast(global::System.IntPtr jarg1)8529   public static extern global::System.IntPtr SBMLReactionConverter_SWIGUpcast(global::System.IntPtr jarg1);
8530 
8531   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLRuleConverter_SWIGUpcast")]
SBMLRuleConverter_SWIGUpcast(global::System.IntPtr jarg1)8532   public static extern global::System.IntPtr SBMLRuleConverter_SWIGUpcast(global::System.IntPtr jarg1);
8533 
8534   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLStripPackageConverter_SWIGUpcast")]
SBMLStripPackageConverter_SWIGUpcast(global::System.IntPtr jarg1)8535   public static extern global::System.IntPtr SBMLStripPackageConverter_SWIGUpcast(global::System.IntPtr jarg1);
8536 
8537   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLUnitsConverter_SWIGUpcast")]
SBMLUnitsConverter_SWIGUpcast(global::System.IntPtr jarg1)8538   public static extern global::System.IntPtr SBMLUnitsConverter_SWIGUpcast(global::System.IntPtr jarg1);
8539 
8540   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLExternalValidator_SWIGUpcast")]
SBMLExternalValidator_SWIGUpcast(global::System.IntPtr jarg1)8541   public static extern global::System.IntPtr SBMLExternalValidator_SWIGUpcast(global::System.IntPtr jarg1);
8542 
8543   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_XMLNode_SWIGUpcast")]
XMLNode_SWIGUpcast(global::System.IntPtr jarg1)8544   public static extern global::System.IntPtr XMLNode_SWIGUpcast(global::System.IntPtr jarg1);
8545 
8546   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLErrorLog_SWIGUpcast")]
SBMLErrorLog_SWIGUpcast(global::System.IntPtr jarg1)8547   public static extern global::System.IntPtr SBMLErrorLog_SWIGUpcast(global::System.IntPtr jarg1);
8548 
8549   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLError_SWIGUpcast")]
SBMLError_SWIGUpcast(global::System.IntPtr jarg1)8550   public static extern global::System.IntPtr SBMLError_SWIGUpcast(global::System.IntPtr jarg1);
8551 
8552   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_ISBMLExtensionNamespaces_SWIGUpcast")]
ISBMLExtensionNamespaces_SWIGUpcast(global::System.IntPtr jarg1)8553   public static extern global::System.IntPtr ISBMLExtensionNamespaces_SWIGUpcast(global::System.IntPtr jarg1);
8554 
8555   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_SBMLDocumentPlugin_SWIGUpcast")]
SBMLDocumentPlugin_SWIGUpcast(global::System.IntPtr jarg1)8556   public static extern global::System.IntPtr SBMLDocumentPlugin_SWIGUpcast(global::System.IntPtr jarg1);
8557 
8558   [global::System.Runtime.InteropServices.DllImport("libsbmlcs", EntryPoint="CSharp_libsbmlcs_MathFilter_SWIGUpcast")]
MathFilter_SWIGUpcast(global::System.IntPtr jarg1)8559   public static extern global::System.IntPtr MathFilter_SWIGUpcast(global::System.IntPtr jarg1);
8560 }
8561 
8562 }
8563