Share via


HierarchyProvider.SyncSelection(HierarchyInfoSyncSelectionEventArgs) Method

Definition

Sets the node in the Connection pane tree view to the current node.

public:
 virtual void SyncSelection(Microsoft::Web::Management::Client::HierarchyInfoSyncSelectionEventArgs ^ item);
public virtual void SyncSelection (Microsoft.Web.Management.Client.HierarchyInfoSyncSelectionEventArgs item);
abstract member SyncSelection : Microsoft.Web.Management.Client.HierarchyInfoSyncSelectionEventArgs -> unit
override this.SyncSelection : Microsoft.Web.Management.Client.HierarchyInfoSyncSelectionEventArgs -> unit
Public Overridable Sub SyncSelection (item As HierarchyInfoSyncSelectionEventArgs)

Parameters

item
HierarchyInfoSyncSelectionEventArgs

The selected item.

Examples

The following example implements the SyncSelection method.

public override void SyncSelection(HierarchyInfoSyncSelectionEventArgs item) {

    base.SyncSelection(item);

    if (item.PageType == typeof(DemoPage)) {
        item.HierarchyInfo = _info;
    }

}

Applies to