summaryrefslogtreecommitdiffstats
path: root/bindings/csharp/OptionsSession.cs
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/csharp/OptionsSession.cs')
-rw-r--r--bindings/csharp/OptionsSession.cs51
1 files changed, 51 insertions, 0 deletions
diff --git a/bindings/csharp/OptionsSession.cs b/bindings/csharp/OptionsSession.cs
new file mode 100644
index 0000000..9b9f282
--- /dev/null
+++ b/bindings/csharp/OptionsSession.cs
@@ -0,0 +1,51 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 1.3.39
+ *
+ * Do not make changes to this file unless you know what you are doing--modify
+ * the SWIG interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+namespace org.doubango.tinyWRAP {
+
+using System;
+using System.Runtime.InteropServices;
+
+public class OptionsSession : SipSession {
+ private HandleRef swigCPtr;
+
+ internal OptionsSession(IntPtr cPtr, bool cMemoryOwn) : base(tinyWRAPPINVOKE.OptionsSessionUpcast(cPtr), cMemoryOwn) {
+ swigCPtr = new HandleRef(this, cPtr);
+ }
+
+ internal static HandleRef getCPtr(OptionsSession obj) {
+ return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
+ }
+
+ ~OptionsSession() {
+ Dispose();
+ }
+
+ public override void Dispose() {
+ lock(this) {
+ if(swigCPtr.Handle != IntPtr.Zero && swigCMemOwn) {
+ swigCMemOwn = false;
+ tinyWRAPPINVOKE.delete_OptionsSession(swigCPtr);
+ }
+ swigCPtr = new HandleRef(null, IntPtr.Zero);
+ GC.SuppressFinalize(this);
+ base.Dispose();
+ }
+ }
+
+ public OptionsSession(SipStack Stack) : this(tinyWRAPPINVOKE.new_OptionsSession(SipStack.getCPtr(Stack)), true) {
+ }
+
+ public bool send() {
+ bool ret = tinyWRAPPINVOKE.OptionsSession_send(swigCPtr);
+ return ret;
+ }
+
+}
+
+}
OpenPOWER on IntegriCloud