/// <inheritdoc/> /// <remarks> /// The method updates internal data depending on the current explorer. /// </remarks> public override void UIExplorerEntered(ExplorerEnteredEventArgs args) { if (args == null) { return; } base.UIExplorerEntered(args); DoExplored((ItemExplorer)args.Explorer); }
/// <inheritdoc/> /// <remarks> /// The method updates internal data depending on the current explorer. /// </remarks> public override void UIExplorerEntered(ExplorerEnteredEventArgs args) { if (args == null) { return; } base.UIExplorerEntered(args); Log.Source.TraceInformation("Entering DoExplored from UIExplorerEntered"); DoExplored((ACDExplorer)args.Explorer); }
/// <inheritdoc/> /// <remarks> /// The method updates internal data depending on the current explorer. /// </remarks> public override void UIExplorerEntered(ExplorerEnteredEventArgs args) { if (args == null) return; base.UIExplorerEntered(args); DoExplored((ItemExplorer)args.Explorer); }
/// <summary> /// It is called when a new explorer has been attached after one of the explore methods. /// </summary> /// <param name="args">.</param> /// <remarks> /// The base method triggers the <see cref="ExplorerEntered"/> event. /// </remarks> public virtual void UIExplorerEntered(ExplorerEnteredEventArgs args) { if (ExplorerEntered != null) ExplorerEntered(this, args); }