GHAConnectionManagerObjectCreateHandler Delegate |
Defines the signature for the object create handler
Namespace:
RemoteRESTLib
Assembly:
GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
Syntax public delegate void ObjectCreateHandler(
Guid subID,
IGHARemoteObject parent,
IGHARemoteObject newObject
)
Public Delegate Sub ObjectCreateHandler (
subID As Guid,
parent As IGHARemoteObject,
newObject As IGHARemoteObject
)
public delegate void ObjectCreateHandler(
Guid subID,
IGHARemoteObject^ parent,
IGHARemoteObject^ newObject
)
type ObjectCreateHandler =
delegate of
subID : Guid *
parent : IGHARemoteObject *
newObject : IGHARemoteObject -> unit
Parameters
- subID
- Type: SystemGuid
ID associated with the subscription - parent
- Type: RemoteRESTLibIGHARemoteObject
Remote GHA object reporting the child object being created - newObject
- Type: RemoteRESTLibIGHARemoteObject
Newly created remote object
See Also