NewTOAPIA.Net.Rtp.RtpEvents.RaiseRtpStreamRemovedEvent C# (CSharp) Method

RaiseRtpStreamRemovedEvent() private method

private RaiseRtpStreamRemovedEvent ( object args ) : void
args object
return void
        internal void RaiseRtpStreamRemovedEvent(object[] args)
        {
            RtpStreamEventArgs ea = (RtpStreamEventArgs)args[1];

            //eventLog.WriteEntry(string.Format(CultureInfo.CurrentCulture, Strings.RtpStreamRemovedEvent, 
            //    ea.RtpStream.ToString()), EventLogEntryType.Information, (int)RtpEL.ID.RtpStreamRemoved);

            if(!FireEvent(RtpStreamRemoved, args))
            {
                //eventLog.WriteEntry(string.Format(CultureInfo.CurrentCulture, Strings.EventNotHookedRtpStreamRemoved, 
                //    ea.RtpStream.ToString()), EventLogEntryType.Warning, (int)RtpEL.ID.EventNotHooked);
            }
        }