Renamed properties

This commit is contained in:
Ryan Newington
2024-10-21 06:45:48 +11:00
parent 3fe3999e0d
commit b82ae53c1d
@@ -38,7 +38,7 @@ namespace Lithnet.CredentialProvider
/// <summary> /// <summary>
/// Gets a value that indicates if the user should be automatically logged on when the tile is selected. The tile must also have IsDefault set to true. /// Gets a value that indicates if the user should be automatically logged on when the tile is selected. The tile must also have IsDefault set to true.
/// </summary> /// </summary>
public bool IsAutoLogon public bool IsDefaultTileAutoLogon
{ {
get => this.CredentialProvider.DefaultTile == this && this.CredentialProvider.DefaultTileAutoLogon; get => this.CredentialProvider.DefaultTile == this && this.CredentialProvider.DefaultTileAutoLogon;
} }
@@ -46,7 +46,7 @@ namespace Lithnet.CredentialProvider
/// <summary> /// <summary>
/// Gets a value indicating if this should be the default tile /// Gets a value indicating if this should be the default tile
/// </summary> /// </summary>
public bool IsDefault public bool IsDefaultTile
{ {
get => this.CredentialProvider.DefaultTile == this; get => this.CredentialProvider.DefaultTile == this;
} }