This class implements a wrapper to allow
CollectionChanged events to be propagated across the .NET remoting boundary.
Syntax
Remarks
Example
The following code snippet shows how to monitor the
TraceCollection object for
System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged events to detect when a new trace is added.
C# | Copy Code |
---|
using (var wrapper = new NotifyCollectionChangedWrapper(app.Display.Traces, OnTraceCollectionChanged))
{
// other code....
}
void OnTraceCollectionChanged(object sender, PropertyChangedEventArgs e)
{
if (e.Action == NotifyCollectionChangedAction.Add)
{
// other code...
}
} |
Requirements
Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)
Minimum Software Version Requirement: Keysight PathWave 89600 VSA
Ver 14.00
See Also