HierarchyProvider.SyncSelection(HierarchyInfoSyncSelectionEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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;
}
}