void m_MyCmDevice_OnBatchPreflightBegin(BatchPreflightEventArgs args)
        {
            m_MyCmDevice.AuditMessage(AuditLevel.Warning, "OnBatchPreflightBegin handler");

            // We set SequencePreflight.UpdatesWanted = true to indicate that we want to receive
            // the OnSequenceChange event.
            args.BatchPreflight.UpdatesWanted = true;
        }
 void m_MyCmDevice_OnBatchPreflightEnd(BatchPreflightEventArgs args)
 {
     m_MyCmDevice.AuditMessage(AuditLevel.Warning, "OnBatchPreflightEnd handler");
 }
Пример #3
0
 private void OnDeviceBatchPreflightEnd(BatchPreflightEventArgs args)
 {
     Log.WriteLine(Id);
 }
Пример #4
0
 private void OnDeviceBatchPreflightBegin(BatchPreflightEventArgs args)
 {
     args.BatchPreflight.UpdatesWanted = true; // We want to have updates when the sequence has changed and the DDK to call OnDeviceSequenceChange
     Log.WriteLine(Id, "Set args.BatchPreflight.UpdatesWanted = " + args.BatchPreflight.UpdatesWanted.ToString());
 }
Пример #5
0
        void m_Device_OnBatchPreflightEnd(BatchPreflightEventArgs args)
        {
            String message = String.Format("Device.OnBatchPreflightEnd({0}) called", args.BatchPreflight);

            m_Device.AuditMessage(AuditLevel.Warning, message);
        }