Assembly: Microsoft.ComponentStudio.ComponentPlatformInterface (in microsoft.componentstudio.componentplatforminterface.dll)
Usage
Visual Basic |
---|
No usage available. |
Syntax
Visual Basic |
---|
Public Event ConfirmOverwriteXml As EventHandler(Of MergeXmlEventArgs) |
C# |
---|
public event EventHandler<MergeXmlEventArgs> ConfirmOverwriteXml; |
C++ |
---|
public: event EventHandler<MergeXmlEventArgs^>^ ConfirmOverwriteXml; |
J# |
---|
public void add_ConfirmOverwriteXml(EventHandler<MergeXmlEventArgs> handler); public void remove_ConfirmOverwriteXml(EventHandler<MergeXmlEventArgs> handler); |
JScript |
---|
In JScript, you can handle the events defined by a class, but you cannot define your own. |
Remarks
This event is raised when a setting override is copied from one installation pass to another (by using GetXml or MergeXml, for example). If the same override already exists in the target configuration pass, this event will notify the caller. The caller can then decide whether to overwrite the exiting override in the target configuration pass.
If the event is not handled, the default behavior is to overwrite all existing setting overrides in the target configuration pass.