LoadJ2534Library() public method

public LoadJ2534Library ( string path ) : bool
path string
return bool
コード例 #1
0
 public bool LoadLibrary(J2534Device device)
 {
     try {
         _device   = device;
         _wrapper  = new J2534DllWrapper();
         _IsLoaded = _wrapper.LoadJ2534Library(_device.FunctionLibrary);
         return(_IsLoaded);
     }
     catch (Exception)
     {
         _IsLoaded = false;
         return(_IsLoaded);
     }
 }
コード例 #2
0
ファイル: J2534.cs プロジェクト: wangcunqiang/DiagTool
 public bool LoadLibrary(J2534Device device)
 {
     m_device  = device;
     m_wrapper = new J2534DllWrapper();
     return(m_wrapper.LoadJ2534Library(m_device.FunctionLibrary));
 }
コード例 #3
0
ファイル: J2534.cs プロジェクト: GeorgyPorgy/VMPT
 public bool LoadLibrary(J2534Device device)
 {
     m_device = device;
     m_wrapper = new J2534DllWrapper();
     return m_wrapper.LoadJ2534Library(m_device.FunctionLibrary);
 }