Exemplo n.º 1
0
 public ListenEndEventArg(ListenEndEnum value)
 {
     this.value = value;
 }
Exemplo n.º 2
0
 public ListenEndEventArg(ListenEndEnum value)
 {
     this.value = value;
 }
Exemplo n.º 3
0
		private void OnListenEndChanged(ListenEndEnum value)
		{
			if (ListenEndChanged != null)
				ListenEndChanged(this, new ListenEndEventArg(value));
		}
Exemplo n.º 4
0
		public void SetListenEnd(ListenEndEnum value)
		{
			try
			{
				lock (syncThread)
					m_registers["RegListen1"].Value = (m_registers["RegListen1"].Value & 0xF9) | ((uint)value << 1);
			}
			catch (Exception exception)
			{
				OnError(1, exception.Message);
			}
		}