TapCommon-Unity/Runtime/Internal/Duration/Wrapper/BridgeUser.cs

75 lines
2.2 KiB
C#
Raw Permalink Normal View History

2023-11-08 10:47:27 +08:00
//------------------------------------------------------------------------------
// <auto-generated />
//
// This file was automatically generated by SWIG (http://www.swig.org).
// Version 4.0.2
//
// Do not make changes to this file unless you know what you are doing--modify
// the SWIG interface file instead.
//------------------------------------------------------------------------------
namespace com.taptap.tapsdk.bindings.csharp {
public class BridgeUser : global::System.IDisposable {
private global::System.Runtime.InteropServices.HandleRef swigCPtr;
protected bool swigCMemOwn;
internal BridgeUser(global::System.IntPtr cPtr, bool cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
}
internal static global::System.Runtime.InteropServices.HandleRef getCPtr(BridgeUser obj) {
return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
}
~BridgeUser() {
Dispose(false);
}
public void Dispose() {
Dispose(true);
global::System.GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing) {
lock(this) {
if (swigCPtr.Handle != global::System.IntPtr.Zero) {
if (swigCMemOwn) {
swigCMemOwn = false;
BindingsPINVOKE.delete_BridgeUser(swigCPtr);
}
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
}
}
}
public bool contain_tap_info {
set {
BindingsPINVOKE.BridgeUser_contain_tap_info_set(swigCPtr, value);
}
get {
bool ret = BindingsPINVOKE.BridgeUser_contain_tap_info_get(swigCPtr);
return ret;
}
}
public string user_id {
set {
BindingsPINVOKE.BridgeUser_user_id_set(swigCPtr, value);
if (BindingsPINVOKE.SWIGPendingException.Pending) throw BindingsPINVOKE.SWIGPendingException.Retrieve();
}
get {
string ret = BindingsPINVOKE.BridgeUser_user_id_get(swigCPtr);
if (BindingsPINVOKE.SWIGPendingException.Pending) throw BindingsPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
}
public BridgeUser() : this(BindingsPINVOKE.new_BridgeUser(), true) {
}
}
}