// 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.Tools { using System; /// /// Arguments provided when bundle encounters an error. /// [Serializable] public class BundleErrorEventArgs : EventArgs { /// /// Gets the error code. /// public int Code { get; set; } /// /// Gets the error message. /// public string Message { get; set; } /// /// Gets the recommended display flags for an error dialog. /// public int UIHint { get; set; } /// /// Gets or sets the of the operation. This is passed back to the bundle. /// public BundleResult Result { get; set; } } }