public PosixTerminal(ITrace trace)
        {
            PlatformUtils.EnsurePosix();
            EnsureArgument.NotNull(trace, nameof(trace));

            Trace = trace;
        }
 public GpgPassCredentialStore(IFileSystem fileSystem, IGpg gpg, string storeRoot, string @namespace = null)
     : base(fileSystem, storeRoot, @namespace)
 {
     PlatformUtils.EnsurePosix();
     EnsureArgument.NotNull(gpg, nameof(gpg));
     _gpg = gpg;
 }
Пример #3
0
 private PosixFileDescriptor()
 {
     PlatformUtils.EnsurePosix();
 }
Пример #4
0
 public PosixSessionManager()
 {
     PlatformUtils.EnsurePosix();
 }
 protected PosixSessionManager()
 {
     PlatformUtils.EnsurePosix();
 }