Esempio n. 1
0
	public static ControlMessage DisableAllMessage()
	{
		ControlMessage msg = new ControlMessage ();

		msg.NewMessage (ControlCommands.DISABLE_ALL);

		return msg;
	}
Esempio n. 2
0
	public static ControlMessage DisableMessage(string unique_name)
	{
		ControlMessage msg = new ControlMessage ();

		msg.NewMessage (ControlCommands.DISABLE);
		msg.PutString (ControlAttributes.UNIQUE_NAME, unique_name);
	
		return msg;
	}
Esempio n. 3
0
	public static ControlMessage EnableMessage(string unique_name, string call, ushort creation_delay_ms)
	{
		ControlMessage msg = new ControlMessage ();

		msg.NewMessage (ControlCommands.ENABLE);
		msg.PutString (ControlAttributes.UNIQUE_NAME, unique_name);
		msg.PutString (ControlAttributes.CALL, call);
		msg.PutU16 (ControlAttributes.CRATION_DELAY_MS, creation_delay_ms);

		return msg;
	}
Esempio n. 4
0
	public static ControlMessage KeepaliveMessage()
	{
		ControlMessage msg = new ControlMessage();
		msg.NewMessage(ControlCommands.KEEPALIVE);
		return msg;
	}