|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.IO;
using Microsoft.Build.Shared;
#nullable disable
namespace Microsoft.Build.Framework
{
/// <summary>
/// The argument for a property reassignment event.
/// </summary>
[Serializable]
public class PropertyReassignmentEventArgs : BuildMessageEventArgs
{
/// <summary>
/// Creates an instance of the PropertyReassignmentEventArgs class.
/// </summary>
public PropertyReassignmentEventArgs()
{
}
/// <summary>
/// Creates an instance of the PropertyReassignmentEventArgs class.
/// </summary>
/// <param name="propertyName">The name of the property whose value was reassigned.</param>
/// <param name="previousValue">The previous value of the reassigned property.</param>
/// <param name="newValue">The new value of the reassigned property.</param>
/// <param name="location">The location of the reassignment.</param>
/// <param name="message">The message of the reassignment event.</param>
/// <param name="helpKeyword">The help keyword of the reassignment.</param>
/// <param name="senderName">The sender name of the reassignment event.</param>
/// <param name="importance">The importance of the message.</param>
public PropertyReassignmentEventArgs(
string propertyName,
string previousValue,
string newValue,
string location,
string message,
string helpKeyword = null,
string senderName = null,
MessageImportance importance = MessageImportance.Low)
: base(message, helpKeyword, senderName, importance)
{
PropertyName = propertyName;
PreviousValue = previousValue;
NewValue = newValue;
Location = location;
}
/// <summary>
/// Creates an instance of the <see cref="PropertyReassignmentEventArgs"/> class.
/// </summary>
/// <param name="propertyName">The name of the property whose value was reassigned.</param>
/// <param name="previousValue">The previous value of the reassigned property.</param>
/// <param name="newValue">The new value of the reassigned property.</param>
/// <param name="location">The property location (XML, command line, etc).</param>
/// <param name="file">The file associated with the event.</param>
/// <param name="line">The line number (0 if not applicable).</param>
/// <param name="column">The column number (0 if not applicable).</param>
/// <param name="message">The message of the property.</param>
/// <param name="helpKeyword">The help keyword.</param>
/// <param name="senderName">The sender name of the event.</param>
/// <param name="importance">The importance of the message.</param>
public PropertyReassignmentEventArgs(
string propertyName,
string previousValue,
string newValue,
string location,
string file,
int line,
int column,
string message,
string helpKeyword = null,
string senderName = null,
MessageImportance importance = MessageImportance.Low)
: base(subcategory: null, code: null, file: file, lineNumber: line, columnNumber: column, 0, 0, message, helpKeyword, senderName, importance)
{
PropertyName = propertyName;
PreviousValue = previousValue;
NewValue = newValue;
Location = location;
}
/// <summary>
/// The name of the property whose value was reassigned.
/// </summary>
public string PropertyName { get; set; }
/// <summary>
/// The previous value of the reassigned property.
/// </summary>
public string PreviousValue { get; set; }
/// <summary>
/// The new value of the reassigned property.
/// </summary>
public string NewValue { get; set; }
/// <summary>
/// The location of the reassignment.
/// </summary>
public string Location { get; set; }
public override string Message
{
get
{
if (RawMessage == null)
{
string formattedLocation = File == null ? Location : $"{File} ({LineNumber},{ColumnNumber})";
RawMessage = FormatResourceStringIgnoreCodeAndKeyword("PropertyReassignment", PropertyName, NewValue, PreviousValue, formattedLocation);
}
return RawMessage;
}
}
internal override void WriteToStream(BinaryWriter writer)
{
base.WriteToStream(writer);
writer.WriteOptionalString(PropertyName);
writer.WriteOptionalString(NewValue);
writer.WriteOptionalString(PreviousValue);
writer.WriteOptionalString(Location);
}
internal override void CreateFromStream(BinaryReader reader, int version)
{
base.CreateFromStream(reader, version);
PropertyName = reader.ReadOptionalString();
NewValue = reader.ReadOptionalString();
PreviousValue = reader.ReadOptionalString();
Location = reader.ReadOptionalString();
}
}
}
|