private void OnStreamingAllowedChanged(SchemaChangedEventArgs args)
        {
            var handler = StreamingAllowedChanged;

            if (handler != null)
            {
                handler(this, args);
            }
        }
        private void OnDownloadingAllowedChanged(SchemaChangedEventArgs args)
        {
            var handler = DownloadingAllowedChanged;

            if (handler != null)
            {
                handler(this, args);
            }
        }
 private void OnStreamingAllowedChanged(SchemaChangedEventArgs args)
 {
     var handler = StreamingAllowedChanged;
     if (handler != null) {
         handler (this, args);
     }
 }
 private void OnDownloadingAllowedChanged(SchemaChangedEventArgs args)
 {
     var handler = DownloadingAllowedChanged;
     if (handler != null) {
         handler (this, args);
     }
 }