Exemple #1
0
        public CsspClient(Stream lowerLayerStream)
        {
            if (!OperatingSystem.IsWindows())
            {
                throw new PlatformNotSupportedException("The implementation of CsspClient is only supported on Windows.");
            }

            stream = new CsspClientStream(lowerLayerStream);
        }
Exemple #2
0
 public CsspClient(Stream lowerLayerStream)
 {
     stream = new CsspClientStream(lowerLayerStream);
 }