OptionsSession.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* ----------------------------------------------------------------------------
  2. * This file was automatically generated by SWIG (http://www.swig.org).
  3. * Version 2.0.9
  4. *
  5. * Do not make changes to this file unless you know what you are doing--modify
  6. * the SWIG interface file instead.
  7. * ----------------------------------------------------------------------------- */
  8. namespace org.doubango.tinyWRAP {
  9. using System;
  10. using System.Runtime.InteropServices;
  11. public class OptionsSession : SipSession {
  12. private HandleRef swigCPtr;
  13. internal OptionsSession(IntPtr cPtr, bool cMemoryOwn) : base(tinyWRAPPINVOKE.OptionsSession_SWIGUpcast(cPtr), cMemoryOwn) {
  14. swigCPtr = new HandleRef(this, cPtr);
  15. }
  16. internal static HandleRef getCPtr(OptionsSession obj) {
  17. return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
  18. }
  19. ~OptionsSession() {
  20. Dispose();
  21. }
  22. public override void Dispose() {
  23. lock(this) {
  24. if (swigCPtr.Handle != IntPtr.Zero) {
  25. if (swigCMemOwn) {
  26. swigCMemOwn = false;
  27. tinyWRAPPINVOKE.delete_OptionsSession(swigCPtr);
  28. }
  29. swigCPtr = new HandleRef(null, IntPtr.Zero);
  30. }
  31. GC.SuppressFinalize(this);
  32. base.Dispose();
  33. }
  34. }
  35. public OptionsSession(SipStack pStack) : this(tinyWRAPPINVOKE.new_OptionsSession(SipStack.getCPtr(pStack)), true) {
  36. }
  37. public bool send(ActionConfig config) {
  38. bool ret = tinyWRAPPINVOKE.OptionsSession_send__SWIG_0(swigCPtr, ActionConfig.getCPtr(config));
  39. return ret;
  40. }
  41. public bool send() {
  42. bool ret = tinyWRAPPINVOKE.OptionsSession_send__SWIG_1(swigCPtr);
  43. return ret;
  44. }
  45. public bool accept(ActionConfig config) {
  46. bool ret = tinyWRAPPINVOKE.OptionsSession_accept__SWIG_0(swigCPtr, ActionConfig.getCPtr(config));
  47. return ret;
  48. }
  49. public bool accept() {
  50. bool ret = tinyWRAPPINVOKE.OptionsSession_accept__SWIG_1(swigCPtr);
  51. return ret;
  52. }
  53. public bool reject(ActionConfig config) {
  54. bool ret = tinyWRAPPINVOKE.OptionsSession_reject__SWIG_0(swigCPtr, ActionConfig.getCPtr(config));
  55. return ret;
  56. }
  57. public bool reject() {
  58. bool ret = tinyWRAPPINVOKE.OptionsSession_reject__SWIG_1(swigCPtr);
  59. return ret;
  60. }
  61. }
  62. }