Translate.Services.Audio.WavParser.WavParser C# (CSharp) Метод

WavParser() публичный Метод

Initializes a new instance of the WavParser class.
public WavParser ( Stream stream ) : System
stream Stream A stream that contains the Wave data
Результат System
        public WavParser(Stream stream)
            : base(stream, FourCC.Riff, 0)
        {
            if (RiffType != FourCC.Wave) {
                throw new InvalidOperationException("File is not a WAV file");
            }
        }