コード例 #1
0
ファイル: AxInterop.WMPLib.cs プロジェクト: kimykunjun/test
 internal void RaiseOnDeviceSyncError(object sender, _WMPOCXEvents_DeviceSyncErrorEvent e)
 {
     if ((this.DeviceSyncError != null)) {
         this.DeviceSyncError(sender, e);
     }
 }
コード例 #2
0
ファイル: AxInterop.WMPLib.cs プロジェクト: kimykunjun/test
 public virtual void DeviceSyncError(WMPLib.IWMPSyncDevice pDevice, object pMedia)
 {
     _WMPOCXEvents_DeviceSyncErrorEvent devicesyncerrorEvent = new _WMPOCXEvents_DeviceSyncErrorEvent(pDevice, pMedia);
     this.parent.RaiseOnDeviceSyncError(this.parent, devicesyncerrorEvent);
 }