public void Detach(string type_, CALLBACK_1 callback_) { if (m_notifier == null) { return; } m_notifier.Detach(type_, callback_); }
static public int Detach(IntPtr l) { try { mg.org.Subject self = (mg.org.Subject)checkSelf(l); System.String a1; checkType(l, 2, out a1); mg.org.CALLBACK_1 a2; checkDelegate(l, 3, out a2); self.Detach(a1, a2); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public void Detach(string type_, CALLBACK_1 callback_) { m_subject.Detach(type_, callback_); }