LinkedServer Constructor (Server, String)
Initializes a new instance of the LinkedServer object on the specified instance of SQL Server and with the specified name.
Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub New ( _
    server As Server, _
    name As String _
)
'Usage
Dim server As Server
Dim name As String
Dim instance As New LinkedServer(server, _
    name)
public LinkedServer(
    Server server,
    string name
)
public:
LinkedServer(
    Server^ server, 
    String^ name
)
new : 
        server:Server * 
        name:string -> LinkedServer
public function LinkedServer(
    server : Server, 
    name : String
)
Parameters
- server
 Type: Microsoft.SqlServer.Management.Smo.Server
 A Server object value that specifies the local instance of SQL Server.
- name
 Type: System.String
 A String value that specifies the name of the remote instance of SQL Server.
See Also