void factory_FullFileListReceived(object sender, FileListEventArgs e)
 {
     if (FullFileListReceived != null)
     {
         FullFileListReceived(sender, e);
     }
 }
Пример #2
0
        void Service_FullFileListReceived(object sender, FileListEventArgs e)
        {
            _networkFiles = new FileDescriptorLookup(e.FileList, true);

            if (FullFileListReceived != null)
            {
                FullFileListReceived(sender, e);
            }
        }
Пример #3
0
 void client_FullFileListReceived(object sender, FileListEventArgs e)
 {
     if (_fullFileListReceivedCallback != null)
     {
         _fullFileListReceivedCallback();
     }
 }
Пример #4
0
 void _client_FullFileListReceived(object sender, FileListEventArgs e)
 {
     EnableToolbar(true);
 }