IMutablePassword Interface

Represents a mutable SQL Server login password.

Namespace:  Microsoft.SqlServer.Management.SqlParser.Metadata
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Public Interface IMutablePassword _
    Inherits IPassword
'Usage
Dim instance As IMutablePassword
public interface IMutablePassword : IPassword
public interface class IMutablePassword : IPassword
type IMutablePassword =  
    interface
        interface IPassword
    end
public interface IMutablePassword extends IPassword

Properties

  Name Description
Public property CheckExpiration Gets or sets a value that indicates whether the password for the login account will automatically expire.
Public property CheckExpiration Gets a value that indicates whether the password for the login account will automatically expire. (Inherited from IPassword.)
Public property CheckPolicy Gets or sets a value that indicates whether password policy is enforced for this login account.
Public property CheckPolicy Gets a value that indicates whether password policy is enforced for this login account. (Inherited from IPassword.)
Public property IsHashed Gets or sets a value that indicates whether the password is hashed.
Public property IsHashed Gets a value that indicates whether the password is hashed. (Inherited from IPassword.)
Public property MustChange Gets or sets a value that indicates whether the password must be changed.
Public property MustChange Gets a value that indicates whether the password must be changed. (Inherited from IPassword.)
Public property Value Gets or sets the password value.
Public property Value Gets the password value. (Inherited from IPassword.)

Top