ServerConnection.Copy Method
Returns a copy of the ServerConnection object.
命名空間: Microsoft.SqlServer.Management.Common
組件: Microsoft.SqlServer.ConnectionInfo (in microsoft.sqlserver.connectioninfo.dll)
語法
'宣告
Public Function Copy As ServerConnection
public ServerConnection Copy ()
public:
ServerConnection^ Copy ()
public ServerConnection Copy ()
public function Copy () : ServerConnection
傳回值
A ServerConnection object that is a copy of the referenced ServerConnection object.
備註
只有 Microsoft .NET Framework 2.0 版支援此命名空間、類別或成員。
範例
'Connect to the local, default instance of SQL Server.
Dim srv1 As Server
srv1 = New Server()
'Modify the default database and the timeout period for the connection.
srv1.ConnectionContext.DatabaseName = "AdventureWorks"
srv1.ConnectionContext.ConnectTimeout = 30
'Make a second connection using a copy of the ConnectionContext property and verify settings.
Dim srv2 As Server
srv2 = New Server(srv1.ConnectionContext.Copy)
Console.WriteLine(srv2.ConnectionContext.ConnectTimeout.ToString)
執行緒安全性
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
平台
開發平台
如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。
目標平台
如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。
請參閱
參考
ServerConnection Class
ServerConnection Members
Microsoft.SqlServer.Management.Common Namespace
其他資源
How to: Copy an SMO Object in Visual Basic .NET
Calling Methods