DroidExplorer.Core.UI.TransferDialog.PushDialog C# (CSharp) Method

PushDialog() public method

public PushDialog ( List files, string destPath ) : DialogResult
files List
destPath string
return DialogResult
        public DialogResult PushDialog( List<System.IO.FileInfo> files, string destPath )
        {
            PrivatePush ( files, destPath );
            return this.ShowDialog ( null );
        }

Same methods

TransferDialog::PushDialog ( System file, string remote ) : DialogResult

Usage Example

Ejemplo n.º 1
0
 public void Push( System.IO.FileInfo file, string remote )
 {
     var transfer = new TransferDialog ( );
     transfer.PushDialog ( file, remote);
 }
All Usage Examples Of DroidExplorer.Core.UI.TransferDialog::PushDialog