Steamp3.COM.AudioVolumeNotificationData.AudioVolumeNotificationData C# (CSharp) Method

AudioVolumeNotificationData() public method

public AudioVolumeNotificationData ( System.Guid eventContext, bool muted, float masterVolume, float channelVolume ) : System
eventContext System.Guid
muted bool
masterVolume float
channelVolume float
return System
        public AudioVolumeNotificationData(Guid eventContext, bool muted, float masterVolume, float[] channelVolume)
        {
            _EventContext = eventContext;
            _Muted = muted;
            _MasterVolume = masterVolume;
            _Channels = channelVolume.Length;
            _ChannelVolume = channelVolume;
        }
AudioVolumeNotificationData