NamedPipesEnabled 屬性
取得 Boolean 值,指定是否為 SQL Server 執行個體的用戶端伺服器連接啟用具名管道提供者。
命名空間: 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
Boolean 值,指定 SQL Server 執行個體上是否啟用具名管道提供者。
如果為 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