コード例 #1
0
ファイル: Native.cs プロジェクト: zhangsz0516/RFID_Explorer
 public static extern Result RFID_RadioSetPowerState
 (
     [In] Int32 handle,
     [In] RadioPowerState state
 );
コード例 #2
0
ファイル: Native.cs プロジェクト: zhangsz0516/RFID_Explorer
 public static extern Result RFID_RadioGetPowerState
 (
     [In]          Int32 handle,
     [In, Out] ref RadioPowerState state
 );
コード例 #3
0
        private void RadioSetPowerState(int radioHandle, RadioPowerState powerState)
        {
            Result result = link.RadioSetPowerState(radioHandle, powerState);

            logger.Information("link.RadioSetPowerState ( {PowerState} ) => {Result}", powerState, result);
        }