コード例 #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="timeout">Maximum time the Tappy will wait for a tag. Time out is in seconds. 0 = No time out</param>
 /// <param name="tagType">Type of tag to detect</param>
 public DetectSingleTagUid(byte timeout, DetectTagSetting tagType) : base(timeout, tagType)
 {
 }
コード例 #2
0
ファイル: StreamNdef.cs プロジェクト: sxtosh/Tcmp-CSharp-SDK
 /// <summary>
 ///
 /// </summary>
 /// <param name="timeout">Maximum time the Tappy will wait for a tag. Time out is in seconds. 0 = No time out</param>
 /// <param name="tagType">Type of tag to detect</param>
 public StreamNdef(byte timeout, DetectTagSetting tagType) : base(timeout, tagType)
 {
 }
コード例 #3
0
ファイル: StreamUid.cs プロジェクト: sxtosh/Tcmp-CSharp-SDK
 /// <summary>
 ///
 /// </summary>
 /// <param name="timeout">Maximum time the Tappy will wait for a tag. Time out is in seconds. 0 = No time out</param>
 /// <param name="tagType">Type of tag to detect</param>
 public StreamUid(byte timeout, DetectTagSetting tagType, int blah = 0) : base(timeout, tagType)
 {
 }
コード例 #4
0
 public DetectCommand(byte timeout, DetectTagSetting tagType)
 {
     this.parameters.Add(timeout);
     this.parameters.Add((byte)tagType);
 }