Interop.FileTransferCtl

  • Thread starter Thread starter Amritha.Datta
  • Start date Start date
A

Amritha.Datta

Where I may get help on Interop.FileTransferCtl.dll and its methods,
properties descriptions

Thanks
 
Hi Amritha,

Interop libraries are wrappers around COM/Active-X components Visual Studio
generates in order to use them in a .NET environment. They are usually
automatically generated when you add a reference to an unmanaged control to
a managed project. The methods and properties made available by the interop
library come from the methods and properties available on the original
control, in this case FileTransferCtl. If this is a 3rd party control,
check the provided documentation.

Remember to ship the interop.xxxx library when you ship your application, as
well as the original control.


Robin
 
Back
Top