Steamp3.COM.AudioVolumeNotificationData.AudioVolumeNotificationData C# (CSharp) 메소드

AudioVolumeNotificationData() 공개 메소드

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