Share via


Languages 屬性

表示 Language 物件的集合。每個 Language 物件代表 SQL Server 執行個體支援的語言。

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(Language))> _
Public ReadOnly Property Languages As LanguageCollection
    Get
'用途
Dim instance As Server
Dim value As LanguageCollection

value = instance.Languages
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Language))]
public LanguageCollection Languages { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(Language))]
public:
property LanguageCollection^ Languages {
    LanguageCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Language))>]
member Languages : LanguageCollection
function get Languages () : LanguageCollection

屬性值

型別:Microsoft.SqlServer.Management.Smo. . :: . .LanguageCollection
LanguageCollection 物件,代表 SQL Server 執行個體支援的所有語言。

備註

The Languages property points to the LanguageCollection object. You can use the collection to reference the various written languages that are supported by SQL Server.

範例

Visual Basic

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Display the supported languages.
Dim lng As Language
For Each lng In srv.Languages
    Console.WriteLine(lng.Name)
Next

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
foreach ($lng in $srv.Languages)
{
   Write-Host $lng.Name
}