/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 2.0.12 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ namespace SLNet { using System; using System.Runtime.InteropServices; public class MessageFilter : PluginInterface2 { private HandleRef swigCPtr; internal MessageFilter(IntPtr cPtr, bool cMemoryOwn) : base(SLikeNetPINVOKE.MessageFilter_SWIGUpcast(cPtr), cMemoryOwn) { swigCPtr = new HandleRef(this, cPtr); } internal static HandleRef getCPtr(MessageFilter obj) { return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr; } ~MessageFilter() { Dispose(); } public override void Dispose() { lock(this) { if (swigCPtr.Handle != IntPtr.Zero) { if (swigCMemOwn) { swigCMemOwn = false; SLikeNetPINVOKE.delete_MessageFilter(swigCPtr); } swigCPtr = new HandleRef(null, IntPtr.Zero); } GC.SuppressFinalize(this); base.Dispose(); } } public static MessageFilter GetInstance() { IntPtr cPtr = SLikeNetPINVOKE.MessageFilter_GetInstance(); MessageFilter ret = (cPtr == IntPtr.Zero) ? null : new MessageFilter(cPtr, false); return ret; } public static void DestroyInstance(MessageFilter i) { SLikeNetPINVOKE.MessageFilter_DestroyInstance(MessageFilter.getCPtr(i)); } public MessageFilter() : this(SLikeNetPINVOKE.new_MessageFilter(), true) { } public void SetAutoAddNewConnectionsToFilter(int filterSetID) { SLikeNetPINVOKE.MessageFilter_SetAutoAddNewConnectionsToFilter(swigCPtr, filterSetID); } public void SetAllowMessageID(bool allow, int messageIDStart, int messageIDEnd, int filterSetID) { SLikeNetPINVOKE.MessageFilter_SetAllowMessageID(swigCPtr, allow, messageIDStart, messageIDEnd, filterSetID); } public void SetAllowRPC4(bool allow, string uniqueID, int filterSetID) { SLikeNetPINVOKE.MessageFilter_SetAllowRPC4(swigCPtr, allow, uniqueID, filterSetID); } public void SetActionOnDisallowedMessage(bool kickOnDisallowed, bool banOnDisallowed, uint banTimeMS, int filterSetID) { SLikeNetPINVOKE.MessageFilter_SetActionOnDisallowedMessage(swigCPtr, kickOnDisallowed, banOnDisallowed, banTimeMS, filterSetID); } public void SetFilterMaxTime(int allowedTimeMS, bool banOnExceed, uint banTimeMS, int filterSetID) { SLikeNetPINVOKE.MessageFilter_SetFilterMaxTime(swigCPtr, allowedTimeMS, banOnExceed, banTimeMS, filterSetID); } public int GetSystemFilterSet(AddressOrGUID addressOrGUID) { int ret = SLikeNetPINVOKE.MessageFilter_GetSystemFilterSet(swigCPtr, AddressOrGUID.getCPtr(addressOrGUID)); if (SLikeNetPINVOKE.SWIGPendingException.Pending) throw SLikeNetPINVOKE.SWIGPendingException.Retrieve(); return ret; } public void SetSystemFilterSet(AddressOrGUID addressOrGUID, int filterSetID) { SLikeNetPINVOKE.MessageFilter_SetSystemFilterSet(swigCPtr, AddressOrGUID.getCPtr(addressOrGUID), filterSetID); if (SLikeNetPINVOKE.SWIGPendingException.Pending) throw SLikeNetPINVOKE.SWIGPendingException.Retrieve(); } public uint GetSystemCount(int filterSetID) { uint ret = SLikeNetPINVOKE.MessageFilter_GetSystemCount(swigCPtr, filterSetID); return ret; } public uint GetFilterSetCount() { uint ret = SLikeNetPINVOKE.MessageFilter_GetFilterSetCount(swigCPtr); return ret; } public int GetFilterSetIDByIndex(uint index) { int ret = SLikeNetPINVOKE.MessageFilter_GetFilterSetIDByIndex(swigCPtr, index); return ret; } public void DeleteFilterSet(int filterSetID) { SLikeNetPINVOKE.MessageFilter_DeleteFilterSet(swigCPtr, filterSetID); } } }