-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathXmlHelper.cs
37 lines (32 loc) · 1.13 KB
/
XmlHelper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using UnityEngine;
using System.Xml;
using System.Xml.Serialization;
using System.IO;
using System.Text;
namespace RESTClient {
public static class XmlHelper {
public static XmlDocument LoadResourceDocument(string filename) {
string xml = LoadResourceText(filename);
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
return doc;
}
public static string LoadResourceText(string filename) {
TextAsset contents = (TextAsset)Resources.Load(filename);
return contents.text;
}
public static string LoadAsset(string filepath, string extension = ".xml") {
string path = Path.Combine(Application.dataPath, filepath + extension);
return File.ReadAllText(path);
}
public static T FromXml<T>(string xml) {
XmlSerializer serializer = new XmlSerializer(typeof(T));
using (var stream = new MemoryStream(Encoding.UTF8.GetBytes(xml))) {
return (T)serializer.Deserialize(stream);
}
}
}
}