blob: f7a18b9ffb624e1e80f9861619f7b3d1b675a48d [file] [log] [blame] [edit]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenQA.Selenium.Remote
{
/// <summary>
/// Represents the result of merging multiple <see cref="DriverOptions"/>.
/// </summary>
public class DriverOptionsMergeResult
{
/// <summary>
/// Gets or sets a value indicating whether the DriverOptions would conflict when merged with another option
/// </summary>
public bool IsMergeConflict { get; set; }
/// <summary>
/// Gets or sets the name of the name of the option that is in conflict.
/// </summary>
public string MergeConflictOptionName { get; set; }
}
}