Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by RyanAchtenSoma · Oct 12, 2015 at 12:13 AM · xmlkeydictionarygenericnode

Storing XML node and accessing from a dictionary

Hi Unity Community

I am trying to store a string and xml node within a generic dictionary and then debug its contents.

It is currently debugging twice, once for each of the relevant nodes (suggesting to me that there are two entries in the dictionary which is perfect) however it is not providing me the contents of these entries (I am trying to catch the name of the node via the Dictionary.Key).

Since this is not throwing any errors I am at a loss as to where I am going wrong, can anyone help me identify the issue here?

Many thanks in advance, Ryan

Edit:

Previously I was accessing the value property incorrectly. This has been resolved, however I am still not able to access the XML node stored as the TValue in the dictionary, leading me to question; are Generic.Dictionaries able to store XML Node as their Value type? Nothing I try is able to resolve this.

Current Code:

 function browseXml(browseType : String)
 {
     xmlRoot = browseInfoCont.browseControl.root;
     var mpo = xmlRoot.SelectNodes("MetaPipeObject"); // /ContextualInfo/ContextMedia
     
     var searchResults : boolean = false;
     Debug.Log("Search query for: " + browseType);    
                 
     //***Dictionary test***
     var curObjName : String;
     var curObjNode : XmlNode;
     var browseResults = new Dictionary.<String , XmlNode>();
     
     
     for (var i = 0; i < mpo.Count; i++){
     
         var curNode = mpo[i];
         var createTypeNodeCheck = curNode.SelectNodes("./ModelInfo/ModelCreateType[contains(.,'" + browseType + "')]");
 
         if (createTypeNodeCheck.Count >= 1)
         {
             searchResults = true;
             
             //***Dictionary test***
             curObjName = curNode.SelectSingleNode("@name").Value;
             browseResults.Add(curObjName, curObjNode);
             
             //browseImportObj.importObj(curNode);
         }
     }                
     if (searchResults == false)
     {
         Debug.Log("No matches to query");
     }
     
     
     //var kvp = KeyValuePair.<String, XmlNode>(curObjName, curObjNode);
     //for(kvp in browseResults)
     
     for(curObjName in browseResults.Keys)
     {    
         
         //Debug.Log("Dictionary Result: curObjName: " + browseResults.ContainsKey(curObjName)); //true
         
         var curValue : XmlNode = browseResults[curObjName];
         var meshLocation : String = curValue.SelectSingleNode("./MeshLocatione").InnerText;
         
         Debug.Log("Dictionary Result: curObjName: " + meshLocation);
     }
 }


Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

29 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Generic dictionary emptying itself? 0 Answers

Getting the sum of random values in the dictionary 2 Answers

Getting the sum of random values from Dictionary 1 Answer

Default Null Value for Key Not Found in Dictionary? 1 Answer

Accessing float from dictionary 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges