This is the base class for other EventArgs corresponding to Ldap and Edir events.
상속: BaseEventArgs
예제 #1
0
 protected void NotifyDirectoryListeners(DirectoryEventArgs objDirectoryEventArgs)
 {
     if (null != directory_event)
     {
         directory_event(this, objDirectoryEventArgs);
     }
 }
예제 #2
0
    public void MyDirectoryEventHandler(object source, DirectoryEventArgs objEventArgs)
    {
        Console.WriteLine("EdirEventsCallback::MyDirectoryEventHandler Event classification = {0}", objEventArgs.EventClassification);

        Console.WriteLine(QUIT_PROMPT);
    }
    protected void NotifyDirectoryListeners(DirectoryEventArgs objDirectoryEventArgs)
    {
      if (null != directory_event)
      {
	directory_event(this, objDirectoryEventArgs);
      }
    }
예제 #4
0
 protected void NotifyDirectoryListeners(DirectoryEventArgs objDirectoryEventArgs)
 {
     directory_event?.Invoke(this, objDirectoryEventArgs);
 }