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

            stream = new CsspServerStream(lowerLayerStream);
        }
Esempio n. 2
0
 public CsspServer(Stream lowerLayerStream)
 {
     stream = new CsspServerStream(lowerLayerStream);
 }