Inheritance: PacketTreeViewItem
Beispiel #1
0
        private RootTreeViewItem BuildAsyncTree(object body)
        {
            RootTreeViewItem root = new RootTreeViewItem("AsyncMessage");

            BuildObjectTree(root, body, "Body", true, false);
            return(root);
        }
Beispiel #2
0
        private RootTreeViewItem BuildErrorTree(string destination, string operation, object[] args, object response)
        {
            RootTreeViewItem root = new RootTreeViewItem("Invoke");

            root.Items.Add(new PropertyValueTreeViewItem(root, "Destination", destination, false));
            root.Items.Add(new PropertyValueTreeViewItem(root, "Operation", operation, false));
            BuildObjectTree(root, args, "Arguments", true, false);
            BuildObjectTree(root, response, "Return", true, false);
            return root;
        }
Beispiel #3
0
        private RootTreeViewItem BuildErrorTree(string destination, string operation, object[] args, object response)
        {
            RootTreeViewItem root = new RootTreeViewItem("Invoke");

            root.Items.Add(new PropertyValueTreeViewItem(root, "Destination", destination, false));
            root.Items.Add(new PropertyValueTreeViewItem(root, "Operation", operation, false));
            BuildObjectTree(root, args, "Arguments", true, false);
            BuildObjectTree(root, response, "Return", true, false);
            return(root);
        }
Beispiel #4
0
 private RootTreeViewItem BuildAsyncTree(object body)
 {
     RootTreeViewItem root = new RootTreeViewItem("AsyncMessage");
     BuildObjectTree(root, body, "Body", true, false);
     return root;
 }