Example #1
0
 /// <summary>Raise the <see cref="LoggingIn"/> event.</summary>
 /// <param name="e">Event arguments.</param>
 protected internal void RaiseLoggingIn(FTPLogInEventArgs e)
 {
     if (areEventsEnabled && LoggingIn != null)
         InvokeEventHandler(LoggingIn, this, e);
 }
Example #2
0
 protected internal void RaiseLoggingIn(FTPLogInEventArgs e)
 {
     if (this.areEventsEnabled && (this.LoggingIn != null))
     {
         this.InvokeEventHandler(this.LoggingIn, this, e);
     }
 }