ActionHookBase2OnBeforeAddService Method |
Called before adding service. Services are prepared for adding but not added to database or on resource, yet.
Namespace: Atomia.Provisioning.Base.PluginsAssembly: Atomia.Provisioning.Base.Plugins (in Atomia.Provisioning.Base.Plugins.dll) Version: 17.3.6337.16010
Syntaxpublic virtual void OnBeforeAddService(
Service service,
string argument,
out bool overridesDefaultBehavior
)
Public Overridable Sub OnBeforeAddService (
service As Service,
argument As String,
<OutAttribute> ByRef overridesDefaultBehavior As Boolean
)
public:
virtual void OnBeforeAddService(
Service^ service,
String^ argument,
[OutAttribute] bool% overridesDefaultBehavior
)
abstract OnBeforeAddService :
service : Service *
argument : string *
overridesDefaultBehavior : bool byref -> unit
override OnBeforeAddService :
service : Service *
argument : string *
overridesDefaultBehavior : bool byref -> unit
Parameters
- service
- Type: Service
The service that has to be added. It is instance of UcpServiceLogical class. - argument
- Type: SystemString
The argument string from configuration. - overridesDefaultBehavior
- Type: SystemBoolean
If set to true plug-in will override default behavior of provisioning.
See Also