Exemplo n.º 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)
 {
 }
Exemplo n.º 2
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 StreamNdef(byte timeout, DetectTagSetting tagType) : base(timeout, tagType)
 {
 }
Exemplo n.º 3
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 StreamUid(byte timeout, DetectTagSetting tagType, int blah = 0) : base(timeout, tagType)
 {
 }
Exemplo n.º 4
0
 public DetectCommand(byte timeout, DetectTagSetting tagType)
 {
     this.parameters.Add(timeout);
     this.parameters.Add((byte)tagType);
 }