Analysis-Services/AlmToolkit/BismNormalizer/TabularCompare/PasswordPromptEventArgs.cs
2023-09-28 08:08:39 -07:00

41 lines
1.1 KiB
C#

using System;
namespace BismNormalizer.TabularCompare
{
/// <summary>
/// Initializes data for the Comparison.PasswordPrompt event.
/// </summary>
public class PasswordPromptEventArgs : EventArgs
{
/// <summary>
/// Gets or sets the authentication kind.
/// </summary>
public string AuthenticationKind { get; set; }
/// <summary>
/// Gets or sets the name of the data source.
/// </summary>
public string DataSourceName { get; set; }
/// <summary>
/// Gets or sets the username.
/// </summary>
public string Username { get; set; }
/// <summary>
/// Gets or sets the password.
/// </summary>
public string Password { get; set; }
/// <summary>
/// Gets or sets the privacy level.
/// </summary>
public string PrivacyLevel { get; set; }
/// <summary>
/// Gets or sets a value indicating if the user cancelled the deployment.
/// </summary>
public bool UserCancelled { get; set; }
}
}