Compartir a través de


Login.DenyWindowsLogin Propiedad

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.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.Standalone, "false")> _
Public Property DenyWindowsLogin As Boolean 
    Get 
    Set
'Uso
Dim instance As Login 
Dim value As Boolean 

value = instance.DenyWindowsLogin

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

Valor de la propiedad

Tipo: 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.

Comentarios

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

Ejemplos

Administrar usuarios, roles e inicios de sesión

Vea también

Referencia

Login Clase

Espacio de nombres Microsoft.SqlServer.Management.Smo

Otros recursos

Entidades de seguridad (motor de base de datos)

CREATE LOGIN (Transact-SQL)