mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-21 09:35:39 -05:00
Fix encoding for OSX keychain (#1939)
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
//
|
||||
//
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#nullable disable
|
||||
|
||||
using Microsoft.SqlTools.Credentials.Contracts;
|
||||
|
||||
namespace Microsoft.SqlTools.Credentials
|
||||
@@ -30,7 +28,7 @@ namespace Microsoft.SqlTools.Credentials
|
||||
/// <param name="credentialId">The name of the credential to find the password for. This is required</param>
|
||||
/// <param name="password">Out value</param>
|
||||
/// <returns>true if password was found, false otherwise</returns>
|
||||
bool TryGetPassword(string credentialId, out string password);
|
||||
bool TryGetPassword(string credentialId, out string? password);
|
||||
|
||||
/// <summary>
|
||||
/// Deletes a password linked to a given credential
|
||||
|
||||
Reference in New Issue
Block a user