KMotion_dotNet.KM_CoordMotion.DownloadInit C# (CSharp) Method

DownloadInit() public method

Initializes download
public DownloadInit ( ) : void
return void
        public void DownloadInit()
        {
            try
            {
                KM_dotnet_Interop_CoordMotion_DownloadInit(_InstanceHandle);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "DownloadInit"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "DownloadInit"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "DownloadInit"));
            }
        }
        /// <summary>
KM_CoordMotion