KMotion_dotNet.KM_CoordMotion.FlushSegments C# (CSharp) Method

FlushSegments() public method

Flushes the segment buffer
public FlushSegments ( ) : void
return void
        public void FlushSegments()
        {
            try
            {
                KM_dotnet_Interop_CoordMotion_FlushSegments(_InstanceHandle);
            }
            catch (DllNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Dll Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                    this.ToString(), "FlushSegments"));
            }
            catch (EntryPointNotFoundException e)
            {
                throw new DMException(this, e, String.Format("Entry Point Not Found Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                   this.ToString(), "FlushSegments"));
            }
            catch (Exception e)
            {
                throw new DMException(this, e, String.Format("General Exception thrown :  Caller - [{0}] :: Member - [{1}]",
                  this.ToString(), "FlushSegments"));
            }
        }
KM_CoordMotion