NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

RelationsCollection CollectionChanged Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the CollectionChanged event.

[Visual Basic]
Private Sub RelationsCollectionName_CollectionChanged( _
   ByVal sender As Object, _
   ByVal e As CollectionChangeEventArgs _
)
[C#]
private void RelationsCollectionName_CollectionChanged(
   object sender,
   CollectionChangeEventArgs e
);
[C++]
private: void RelationsCollectionName_CollectionChanged(
   Object* sender,
   CollectionChangeEventArgs* e
);
[JScript]
private RelationsCollectionName_CollectionChanged(
   sender : Object,
   e : CollectionChangeEventArgs
);

Parameters

sender
The source of the event.
e
A System.ComponentModel.CollectionChangeEventArgs that contains the event data.

See Also

RelationsCollection Class | RelationsCollection MembersTopic | System.Data Namespace