/// <summary>
 /// Open the default secret collection for the current user.
 /// </summary>
 /// <param name="namespace">Optional namespace to scope credential operations.</param>
 /// <returns>Default secret collection.</returns>
 public SecretServiceCollection(string @namespace)
 {
     PlatformUtils.EnsureLinux();
     _namespace = @namespace;
 }
示例#2
0
 private SecretServiceCollection()
 {
     PlatformUtils.EnsureLinux();
 }