Exemplo n.º 1
0
 public void DetachByType(string type_)
 {
     if (m_notifier == null)
     {
         return;
     }
     m_notifier.DetachByType(type_);
 }
Exemplo n.º 2
0
 static public int DetachByType(IntPtr l)
 {
     try {
         mg.org.Subject self = (mg.org.Subject)checkSelf(l);
         System.String  a1;
         checkType(l, 2, out a1);
         self.DetachByType(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }