コード例 #1
0
        /// <summary>
        /// Notifies handler on stream broadcast start.
        /// </summary>
        private void NotifyBroadcastStart()
        {
            IStreamAwareScopeHandler handler = GetStreamAwareHandler();

            if (handler != null)
            {
                try {
                    handler.StreamBroadcastStart(this);
                } catch (Exception ex) {
                    log.Error("Error notify streamBroadcastStart", ex);
                }
            }
        }