void factory_FullFileListReceived(object sender, FileListEventArgs e)
 {
     if (FullFileListReceived != null)
     {
         FullFileListReceived(sender, e);
     }
 }
Exemplo n.º 2
0
        void Service_FullFileListReceived(object sender, FileListEventArgs e)
        {
            _networkFiles = new FileDescriptorLookup(e.FileList, true);

            if (FullFileListReceived != null)
            {
                FullFileListReceived(sender, e);
            }
        }
Exemplo n.º 3
0
 void client_FullFileListReceived(object sender, FileListEventArgs e)
 {
     if (_fullFileListReceivedCallback != null)
     {
         _fullFileListReceivedCallback();
     }
 }
Exemplo n.º 4
0
 void _client_FullFileListReceived(object sender, FileListEventArgs e)
 {
     EnableToolbar(true);
 }