Interface IPackageMerge
The public interface for PackageMerge
[DefaultImplementationType(typeof(PackageMerge))]
[XmlDefaultImplementationType(typeof(PackageMerge))]
[ModelRepresentationClass("http://www.omg.org/spec/MOF/20131001/cmof.xmi#//PackageMerge")]
public interface IPackageMerge : IDirectedRelationship, IRelationship, IElement, IObject, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
Properties
MergedPackage
References the Package that is to be merged with the receiving package of the PackageMerge.
[XmlElementName("mergedPackage")]
[XmlAttribute(true)]
IPackage MergedPackage { get; set; }
Property Value
ReceivingPackage
References the Package that is being extended with the contents of the merged package of the PackageMerge.
[Browsable(false)]
[XmlElementName("receivingPackage")]
[XmlAttribute(true)]
[XmlOpposite("packageMerge")]
IPackage ReceivingPackage { get; set; }
Property Value
Events
MergedPackageChanged
Gets fired when the MergedPackage property changed its value
event EventHandler<ValueChangedEventArgs> MergedPackageChanged
Event Type
MergedPackageChanging
Gets fired before the MergedPackage property changes its value
event EventHandler<ValueChangedEventArgs> MergedPackageChanging
Event Type
ReceivingPackageChanged
Gets fired when the ReceivingPackage property changed its value
event EventHandler<ValueChangedEventArgs> ReceivingPackageChanged
Event Type
ReceivingPackageChanging
Gets fired before the ReceivingPackage property changes its value
event EventHandler<ValueChangedEventArgs> ReceivingPackageChanging