ActionAddInBase.PerformAction Method (IList<ContextObject>)
Applies To: System Center 2016 - Virtual Machine Manager
Executes code provided by the add-in.
Namespace: Microsoft.SystemCenter.VirtualMachineManager.UIAddIns
Assembly: Microsoft.SystemCenter.VirtualMachineManager.UIAddIns (in Microsoft.SystemCenter.VirtualMachineManager.UIAddIns.dll)
Syntax
public abstract void PerformAction(
IList<ContextObject> contextObjects
)
public:
virtual void PerformAction(
IList<ContextObject^>^ contextObjects
) abstract
abstract PerformAction :
contextObjects:IList<ContextObject> -> unit
Public MustOverride Sub PerformAction (
contextObjects As IList(Of ContextObject)
)
Parameters
contextObjects
Type: System.Collections.Generic.IList<ContextObject>Type: T:System.Collections.Generic.IList{Microsoft.SystemCenter.VirtualMachineManager.UIAddIns.ContextTypes.ContextObject}
The list of context objects. This list can contain the context objects of the navigation tree or the selected items from a DataGrid view.
Remarks
This method is invoked when the end-user clicks on the console ribbon button or context menu associated with this add-in.
See Also
ActionAddInBase Class
Microsoft.SystemCenter.VirtualMachineManager.UIAddIns Namespace
Return to top