public void SayHiHandler(InterfaceMember member, Message message) { Assert.AreEqual("hello", message.GetArg(0).Value.ToString()); MsgArg retArg = new MsgArg("s", new object[] { "aloha" }); try { // BUGBUG: Throws exception saying signature of the msgArg is not what was expected, but its correct. this.busObject.MethodReplyWithQStatus(message, QStatus.ER_OK); } catch (Exception ex) { #if DEBUG string err = AllJoynException.GetExceptionMessage(ex.HResult); #else QStatus err = AllJoynException.FromCOMException(ex.HResult); #endif Assert.IsFalse(true); } }