Méthode Copy
SQL Server 2008 R2
Returns a copy of the ServerConnection object.
Assembly : Microsoft.SqlServer.ConnectionInfo (en Microsoft.SqlServer.ConnectionInfo.dll)
Valeur de retour
Type : Microsoft.SqlServer.Management.Common..::..ServerConnectionA ServerConnection object that is a copy of the referenced ServerConnection object.
C#
ServerConnection conn = new ServerConnection(); conn.LoginSecure = false; conn.Login = vlogin; conn.password = vpassword; ServerConnection conn2 = conn.Copy() conn2.StatementTimeout = 450; Console.WriteLine(conn2.StatementTimeout); Console.WriteLine(conn.StatementTimeout);
PowerShell
$conn = new-object Microsoft.SqlServer.Management.Common.ServerConnection $conn.LoginSecure = $FALSE $conn.Login = vlogin $conn.Password = vpassword $conn2 = $conn.Copy() $conn2.StatementTimeout = 450 Write-Host $conn2.StatementTimeout Write-Host $conn.StatementTimeout