다음을 통해 공유


NamedPipesEnabled 속성

SQL Server 인스턴스에서 클라이언트-서버 연결에 명명된 파이프 공급자가 사용되는지 여부를 지정하는 Boolean 값을 가져옵니다.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property NamedPipesEnabled As Boolean
    Get
‘사용 방법
Dim instance As Server
Dim value As Boolean

value = instance.NamedPipesEnabled
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public bool NamedPipesEnabled { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property bool NamedPipesEnabled {
    bool get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member NamedPipesEnabled : bool
function get NamedPipesEnabled () : boolean

속성 값

유형: System. . :: . .Boolean
SQL Server 인스턴스에서 명명된 파이프 공급자가 사용되는지 여부를 지정하는 Boolean 값입니다.
True 이면 명명된 파이프가 사용되고, 그렇지 않으면 False(기본값)입니다.

C#

Server srv = new Server("(local)");
Console.WriteLine("The Named Pipes provider is enabled: " + srv.NamedPipesEnabled.ToString()

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The Named Pipes provider is enabled:" $srv.NamedPipesEnabled

참고 항목

참조

Planning a SQL Server Installation

관련 자료