This document is archived and information here might be outdated.  Recommended version.


IRelationshipClass.Notification Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IR > IRelationshipClass Interface > IRelationshipClass.Notification Property
ArcGIS Developer Help

IRelationshipClass.Notification Property

The notification direction for the relationship class.

[Visual Basic .NET]
Public ReadOnly Property Notification As esriRelNotification
[C#]
public esriRelNotification Notification {get;}
[C++]
HRESULT get_Notification(
  esriRelNotification* Notification
);
[C++]
Parameters
Notification [out, retval]

Notification is a parameter of type esriRelNotification*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The Notification property returns the relationship class' notification behavior as as esriRelNotification enumeration value. A notification occurs when an event happens, such as a deletion or an edit. It can be one of four type: esriRelNotificationNone, esriRelNotificationForward, esriRelNotificationBackward, or esriRelNotificationBoth.  None means no notification will take place, forward means that notification will happen from the origin to the destination, backward means notification occurs from the destination to the origin, and both means notification will happen both ways when an event occurs.

See Also

IRelationshipClass Interface