77 lines
3.0 KiB
C#
77 lines
3.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated />
|
|
//
|
|
// This file was automatically generated by SWIG (http://www.swig.org).
|
|
// Version 3.0.12
|
|
//
|
|
// Do not make changes to this file unless you know what you are doing--modify
|
|
// the SWIG interface file instead.
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace ons {
|
|
|
|
public class LocalTransactionChecker : global::System.IDisposable {
|
|
private global::System.Runtime.InteropServices.HandleRef swigCPtr;
|
|
protected bool swigCMemOwn;
|
|
|
|
internal LocalTransactionChecker(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(LocalTransactionChecker obj) {
|
|
return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
|
|
}
|
|
|
|
~LocalTransactionChecker() {
|
|
Dispose();
|
|
}
|
|
|
|
public virtual void Dispose() {
|
|
lock(this) {
|
|
if (swigCPtr.Handle != global::System.IntPtr.Zero) {
|
|
if (swigCMemOwn) {
|
|
swigCMemOwn = false;
|
|
ONSClient4CPPPINVOKE.delete_LocalTransactionChecker(swigCPtr);
|
|
}
|
|
swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
|
|
}
|
|
global::System.GC.SuppressFinalize(this);
|
|
}
|
|
}
|
|
|
|
public LocalTransactionChecker() : this(ONSClient4CPPPINVOKE.new_LocalTransactionChecker(), true) {
|
|
SwigDirectorConnect();
|
|
}
|
|
|
|
public virtual TransactionStatus check(Message msg) {
|
|
TransactionStatus ret = (TransactionStatus)ONSClient4CPPPINVOKE.LocalTransactionChecker_check(swigCPtr, Message.getCPtr(msg));
|
|
if (ONSClient4CPPPINVOKE.SWIGPendingException.Pending) throw ONSClient4CPPPINVOKE.SWIGPendingException.Retrieve();
|
|
return ret;
|
|
}
|
|
|
|
private void SwigDirectorConnect() {
|
|
if (SwigDerivedClassHasMethod("check", swigMethodTypes0))
|
|
swigDelegate0 = new SwigDelegateLocalTransactionChecker_0(SwigDirectorcheck);
|
|
ONSClient4CPPPINVOKE.LocalTransactionChecker_director_connect(swigCPtr, swigDelegate0);
|
|
}
|
|
|
|
private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) {
|
|
global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, global::System.Reflection.BindingFlags.Public | global::System.Reflection.BindingFlags.NonPublic | global::System.Reflection.BindingFlags.Instance, null, methodTypes, null);
|
|
bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(LocalTransactionChecker));
|
|
return hasDerivedMethod;
|
|
}
|
|
|
|
private int SwigDirectorcheck(global::System.IntPtr msg) {
|
|
return (int)check(new Message(msg, false));
|
|
}
|
|
|
|
public delegate int SwigDelegateLocalTransactionChecker_0(global::System.IntPtr msg);
|
|
|
|
private SwigDelegateLocalTransactionChecker_0 swigDelegate0;
|
|
|
|
private static global::System.Type[] swigMethodTypes0 = new global::System.Type[] { typeof(Message) };
|
|
}
|
|
|
|
}
|