AppWarp_WP7_TestSDK.NotificationListener.onUserChangeRoomProperty C# (CSharp) Method

onUserChangeRoomProperty() public method

public onUserChangeRoomProperty ( RoomData roomData, string sender, Object>.Dictionary properties ) : void
roomData RoomData
sender string
properties Object>.Dictionary
return void
        public void onUserChangeRoomProperty(RoomData roomData, string sender, Dictionary<String, Object> properties)
        {
            _page.showResult("Notification for User Changed Room Propert received");
            _page.showResult(roomData.getId());
            _page.showResult(sender);
            foreach (KeyValuePair<string, object> entry in properties)
            {
                _page.showResult("KEY:" + entry.Key);
                _page.showResult("VALUE:" + entry.Value.ToString());
            }
        }
    }

Same methods

NotificationListener::onUserChangeRoomProperty ( RoomData roomData, string sender, object>.Dictionary properties, string>.Dictionary lockedPropertiesTable ) : void