示例#1
0
 public void Detach(string type_, CALLBACK_1 callback_)
 {
     if (m_notifier == null)
     {
         return;
     }
     m_notifier.Detach(type_, callback_);
 }
示例#2
0
 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));
     }
 }
示例#3
0
文件: CCApp.cs 项目: vinhphu3000/mg01
 static public void Detach(string type_, CALLBACK_1 callback_)
 {
     m_subject.Detach(type_, callback_);
 }