AdminConfigurationManagerBaseExecuteCustomCommand Method |
Executes a custom node command.
Namespace:
MFiles.VAF.Configuration.AdminConfigurations
Assembly:
MFiles.VAF.Configuration (in MFiles.VAF.Configuration.dll) Version: 21.8.10524.1
Syntaxpublic virtual ConfigurationDomainCommandResponse ExecuteCustomCommand(
IConfigurationRequestContext context,
DomainNodeLocation nodeLocation,
string commandId,
params string[] args
)
Public Overridable Function ExecuteCustomCommand (
context As IConfigurationRequestContext,
nodeLocation As DomainNodeLocation,
commandId As String,
ParamArray args As String()
) As ConfigurationDomainCommandResponse
public:
virtual ConfigurationDomainCommandResponse^ ExecuteCustomCommand(
IConfigurationRequestContext^ context,
DomainNodeLocation^ nodeLocation,
String^ commandId,
... array<String^>^ args
)
Parameters
- context
- Type: MFiles.VAF.Configuration.AdminConfigurationsIConfigurationRequestContext
The request context that is triggering the command. - nodeLocation
- Type: MFiles.VAF.Configuration.AdminConfigurationsDomainNodeLocation
The the node to trigger the command on. - commandId
- Type: SystemString
The id of the custom command to trigger. - args
- Type: SystemString
Optional arguments to pass to the command.
Return Value
Type:
ConfigurationDomainCommandResponseThe command response.
See Also