mpreventdelegates.cs

来自「WJ Communications RFID example code」· CS 代码 · 共 26 行

CS
26
字号
//==========================================================================================
//
//	WJ.MPR.Reader.MPREventDelegates
//	Copyright (c) 2006, WJ Communications, Inc.
//
//	Useful Event Handler type delegates.
//
//==========================================================================================
using System;

namespace WJ.MPR.Reader
{
	/// <summary>
	/// Delegate for events with a MPRMsg argument.
	/// </summary>
	public delegate void MPRMsgEventHandler(MPRMsg Message);

	/// <summary>
	/// For events that communicate events on Tags
	/// </summary>
	public delegate void TagEventHandler(RFIDTag Tag);
}

 

 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?