/// <summary>Raise the <see cref="Connecting"/> event.</summary> /// <param name="e">Event arguments.</param> protected internal void RaiseConnecting(FTPConnectionEventArgs e) { if (areEventsEnabled && Connecting != null) InvokeEventHandler(Connecting, this, e); }
protected internal void RaiseConnecting(FTPConnectionEventArgs e) { if (this.areEventsEnabled && (this.Connecting != null)) { this.InvokeEventHandler(this.Connecting, this, e); } }