Keysight Pathwave 89600 VSA .NET API
NotifyCollectionChangedWrapper Constructor(IRemoteNotifyCollectionChanged,NotifyCollectionChangedEventHandler)
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > NotifyCollectionChangedWrapper Class > NotifyCollectionChangedWrapper Constructor : NotifyCollectionChangedWrapper Constructor(IRemoteNotifyCollectionChanged,NotifyCollectionChangedEventHandler)


obj
The remote object to monitor for CollectionChanged events.
callback
A delegate of type System.Collections.Specialized.NotifyCollectionChangedEventHandler that will be invoked when the collection referred to by obj changes.

Glossary Item Box

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

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal obj As IRemoteNotifyCollectionChanged, _
   ByVal callback As NotifyCollectionChangedEventHandler _
)
C# 
public NotifyCollectionChangedWrapper( 
   IRemoteNotifyCollectionChanged obj,
   NotifyCollectionChangedEventHandler callback
)
C++/CLI 
public:
NotifyCollectionChangedWrapper( 
   IRemoteNotifyCollectionChanged^ obj,
   NotifyCollectionChangedEventHandler^ callback
)

Parameters

obj
The remote object to monitor for CollectionChanged events.
callback
A delegate of type System.Collections.Specialized.NotifyCollectionChangedEventHandler that will be invoked when the collection referred to by obj changes.

Requirements

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

See Also