ActionHookBase2OnBeforeServiceOperationCall Method |
Called before service operation is called.
Namespace: Atomia.Provisioning.Base.PluginsAssembly: Atomia.Provisioning.Base.Plugins (in Atomia.Provisioning.Base.Plugins.dll) Version: 17.3.6337.16010
Syntaxpublic virtual void OnBeforeServiceOperationCall(
Service service,
string operationName,
string operationArgument,
out bool overridesDefaultBehavior
)
Public Overridable Sub OnBeforeServiceOperationCall (
service As Service,
operationName As String,
operationArgument As String,
<OutAttribute> ByRef overridesDefaultBehavior As Boolean
)
public:
virtual void OnBeforeServiceOperationCall(
Service^ service,
String^ operationName,
String^ operationArgument,
[OutAttribute] bool% overridesDefaultBehavior
)
abstract OnBeforeServiceOperationCall :
service : Service *
operationName : string *
operationArgument : string *
overridesDefaultBehavior : bool byref -> unit
override OnBeforeServiceOperationCall :
service : Service *
operationName : string *
operationArgument : string *
overridesDefaultBehavior : bool byref -> unit
Parameters
- service
- Type: Service
The service. - operationName
- Type: SystemString
Name of the operation. - operationArgument
- Type: SystemString
The operation argument. - overridesDefaultBehavior
- Type: SystemBoolean
if set to true overrides default behavior.
See Also