Animatroller.Framework.LogicalDevice.Event.AudioChangedEventArgs.AudioChangedEventArgs C# (CSharp) Метод

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

public AudioChangedEventArgs ( Commands command, string audioFile, double leftVolume = null, double rightVolume = null ) : System
command Commands
audioFile string
leftVolume double
rightVolume double
Результат System
        public AudioChangedEventArgs(Commands command, string audioFile, double? leftVolume = null, double? rightVolume = null)
        {
            this.Command = command;
            this.AudioFile = audioFile;
            this.LeftVolume = leftVolume;
            this.RightVolume = rightVolume;
        }
AudioChangedEventArgs