Поделиться через


Свойство AffinityInfo.Parent

This gets the parent object of the AffinityInfo object. This value is the same as the Server object that contains the AffinityInfo member.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
<SfcObjectAttribute(SfcObjectRelationship.ParentObject)> _
Public ReadOnly Property Parent As Server 
    Get
'Применение
Dim instance As AffinityInfo 
Dim value As Server 

value = instance.Parent
[SfcObjectAttribute(SfcObjectRelationship.ParentObject)]
public Server Parent { get; }
[SfcObjectAttribute(SfcObjectRelationship::ParentObject)]
public:
property Server^ Parent {
    Server^ get ();
}
[<SfcObjectAttribute(SfcObjectRelationship.ParentObject)>]
member Parent : Server
function get Parent () : Server

Значение свойства

Тип: Microsoft.SqlServer.Management.Smo.Server
The parent Server object that contains the AffinityInfo object. If a parent does not exist then null is returned.

Замечания

Access to the AffinityInfo object is provided though the Server object.

Примеры

This example displays the name of the Instance of SQL Server for the parent of the AffinityInfo member of the

Server object

using System;
using Microsoft.SqlServer.Management.Smo;

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            Server dbServer = new Server("(local)");

            dbServer.Refresh();

            Console.WriteLine("Server Name: {0}\n" +
                              "AffinityInfo.Parent: {1}",
                dbServer.Name,
                dbServer.AffinityInfo.Parent.Name);
        }
    }
}

Powershell

#Create the server. 
$dbServer = new-Object Microsoft.SqlServer.Smo.Server("(local)")
$dbServer.Refresh()

Write-Host "Server Name:" $dbServer.Name`n AffinityInfo.Parent: 
           $dbServer.AffinityInfo.Parent.Name

См. также

Справочник

AffinityInfo Класс

Пространство имен Microsoft.SqlServer.Management.Smo