Keysight Pathwave 89600 VSA .NET API
NotifyPropertyInfoChangedWrapper Constructor(IRemoteNotifyPropertyInfoChanged,EventHandler<PropertyInfoChangedEventArgs>)
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > NotifyPropertyInfoChangedWrapper Class > NotifyPropertyInfoChangedWrapper Constructor : NotifyPropertyInfoChangedWrapper Constructor(IRemoteNotifyPropertyInfoChanged,EventHandler<PropertyInfoChangedEventArgs>)


obj
The remote object to monitor for PropertyInfoChanged events.
callback
A delegate of type EventHandler that will be invoked when any public property on obj changes.

Glossary Item Box

Initializes a new instance of the NotifyPropertyInfoChangedWrapper class that will monitor the supplied remote object for PropertyInfoChanged events and call the supplied delegate when such events occur.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal obj As IRemoteNotifyPropertyInfoChanged, _
   ByVal callback As EventHandler(Of PropertyInfoChangedEventArgs) _
)
C# 
public NotifyPropertyInfoChangedWrapper( 
   IRemoteNotifyPropertyInfoChanged obj,
   EventHandler<PropertyInfoChangedEventArgs> callback
)
C++/CLI 
public:
NotifyPropertyInfoChangedWrapper( 
   IRemoteNotifyPropertyInfoChanged^ obj,
   EventHandler<PropertyInfoChangedEventArgs^>^ callback
)

Parameters

obj
The remote object to monitor for PropertyInfoChanged events.
callback
A delegate of type EventHandler that will be invoked when any public property on obj changes.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

See Also