Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
OdMutex.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace Teigha.Core {
12
13using System;
14using System.Runtime.InteropServices;
15
16public class OdMutex : OdNonCopyable {
17 private Object locker = new Object();
18 private HandleRef swigCPtr;
19 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
20 public OdMutex(IntPtr cPtr, bool cMemoryOwn) : base(GlobalsPINVOKE.OdMutex_SWIGUpcast(cPtr), cMemoryOwn) {
21 swigCPtr = new HandleRef(this, cPtr);
22 }
23
24 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
25 public static HandleRef getCPtr(OdMutex obj) {
26 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
27 }
28
29 protected override void Dispose(bool disposing) {
30 lock(this) {
31 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
32 if (swigCMemOwn) {
33 swigCMemOwn = false;
35 }
36 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
37 }
38 base.Dispose(disposing);
39 }
40 }
41
42 public OdMutex() : this(GlobalsPINVOKE.new_OdMutex(), true) {
44 }
45
46 public void lock_() {
49 }
50
51 public void unlock() {
54 }
55
56}
57
58}
static global::System.Exception Retrieve()
static void delete_OdMutex(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OdMutex_lock_(global::System.Runtime.InteropServices.HandleRef jarg1)
static void OdMutex_unlock(global::System.Runtime.InteropServices.HandleRef jarg1)
override void Dispose(bool disposing)
Definition: OdMutex.cs:29
static HandleRef getCPtr(OdMutex obj)
Definition: OdMutex.cs:25
OdMutex(IntPtr cPtr, bool cMemoryOwn)
Definition: OdMutex.cs:20