/// <summary> /// Open the default keychain (current user's login keychain). /// </summary> /// <param name="namespace">Optional namespace to scope credential operations.</param> /// <returns>Default keychain.</returns> public MacOSKeychain(string @namespace = null) { PlatformUtils.EnsureMacOS(); _namespace = @namespace; }
public MacOSSessionManager() { PlatformUtils.EnsureMacOS(); }
private MacOSKeychain(string @namespace) { PlatformUtils.EnsureMacOS(); _namespace = @namespace; }
private MacOSKeychain() { PlatformUtils.EnsureMacOS(); }