blob: 5332fe4addd5c0a296db3416c2e3063fd6d2be0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Data
{
using System;
/// <summary>
/// Interface for handling messages (error/warning/verbose).
/// </summary>
public interface IMessageHandler
{
/// <summary>
/// Sends a message with the given arguments.
/// </summary>
/// <param name="e">Message arguments.</param>
void OnMessage(MessageEventArgs e);
}
}
|