DenyWindowsLogin propriété

Gets or sets the Boolean property value that specifies whether the login account has been granted or denied the ability to log on to the instance of SQL Server.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (dans Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute> _
Public Property DenyWindowsLogin As Boolean
    Get
    Set
'Utilisation
Dim instance As Login
Dim value As Boolean

value = instance.DenyWindowsLogin

instance.DenyWindowsLogin = value
[SfcPropertyAttribute]
public bool DenyWindowsLogin { get; set; }
[SfcPropertyAttribute]
public:
property bool DenyWindowsLogin {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute>]
member DenyWindowsLogin : bool with get, set
function get DenyWindowsLogin () : boolean
function set DenyWindowsLogin (value : boolean)

Valeur de la propriété

Type : System. . :: . .Boolean
A Boolean value that specifies whether the login accounts granted or denied the ability to log on to the instance of SQL Server.
If True, the login account has been denied the ability to log on to the instance of SQL Server.
If False, the login account has been granted the ability to log on to the instance of SQL Server.

Notes

This option corresponds to the DenyNTLogin in SQL Distributed Management Objects (SQL-DMO).