ServerConnection.ChangePassword メソッド (SecureString)
標準認証で使用するログイン パスワードを変更します。
名前空間: Microsoft.SqlServer.Management.Common
アセンブリ: Microsoft.SqlServer.ConnectionInfo (Microsoft.SqlServer.ConnectionInfo.dll)
構文
'宣言
Public Sub ChangePassword ( _
newPassword As SecureString _
)
'使用
Dim instance As ServerConnection
Dim newPassword As SecureString
instance.ChangePassword(newPassword)
public void ChangePassword(
SecureString newPassword
)
public:
void ChangePassword(
SecureString^ newPassword
)
member ChangePassword :
newPassword:SecureString -> unit
public function ChangePassword(
newPassword : SecureString
)
パラメーター
- newPassword
型: System.Security.SecureString
新しいパスワードを示す SecureString の値です。
使用例
C#
ServerConnection conn = new ServerConnection();
conn.LoginSecure = false;
conn.Login = vlogin;
conn.password = vpassword;
conn.ChangePassword(newpassword);
PowerShell
$conn = new-object Microsoft.SqlServer.Management.Common.ServerConnection
$conn.LoginSecure = $FALSE
$conn.Login = vlogin
$conn.Password = vpassword
$conn.ChangePassword newpassword
関連項目
参照
Microsoft.SqlServer.Management.Common 名前空間
その他の技術情報
Configuring SQL Server Access for SQL Server Authentication