/// Converter between a boolean and visibility value
/// </summary>
[type:System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules","SA1402:FileMayOnlyContainASingleClass",Justification="Small classes are all instances of the same generic and are better organized in a single file.")]
/// Initializes a new instance of the <see cref="BooleanToVisibilityConverter" /> class.
/// </summary>
publicBooleanToVisibilityConverter():
base(Visibility.Visible,Visibility.Hidden)
{
}
}
/// <summary>
/// Converter between a boolean and either "http" or "https"
/// </summary>
[type:System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules","SA1402:FileMayOnlyContainASingleClass",Justification="Small classes are all instances of the same generic and are better organized in a single file.")]