GHAConnectionManagerPropertyChangeHandler Delegate |
Defines the signature for a property change handler
Namespace:
RemoteRESTLib
Assembly:
GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
Syntax public delegate void PropertyChangeHandler(
Guid subID,
IGHARemoteObject GHAObj,
string PropertyName,
Object NewValue
)
Public Delegate Sub PropertyChangeHandler (
subID As Guid,
GHAObj As IGHARemoteObject,
PropertyName As String,
NewValue As Object
)
public delegate void PropertyChangeHandler(
Guid subID,
IGHARemoteObject^ GHAObj,
String^ PropertyName,
Object^ NewValue
)
type PropertyChangeHandler =
delegate of
subID : Guid *
GHAObj : IGHARemoteObject *
PropertyName : string *
NewValue : Object -> unit
Parameters
- subID
- Type: SystemGuid
ID for the subscription - GHAObj
- Type: RemoteRESTLibIGHARemoteObject
Remote GHA Object containing the property that changed - PropertyName
- Type: SystemString
Name of the property that changed - NewValue
- Type: SystemObject
New value of the property
See Also