writeXml() public static method

public static writeXml ( object value ) : string
value object
return string
Beispiel #1
0
 // Token: 0x06000107 RID: 263 RVA: 0x00006AE0 File Offset: 0x00004CE0
 public static void writeXml(object value, Stream stream)
 {
     using (StreamWriter streamWriter = new StreamWriter(stream))
     {
         streamWriter.Write(Plist.writeXml(value));
     }
 }
Beispiel #2
0
 // Token: 0x06000106 RID: 262 RVA: 0x00006AA0 File Offset: 0x00004CA0
 public static void writeXml(object value, string path)
 {
     using (StreamWriter streamWriter = new StreamWriter(path))
     {
         streamWriter.Write(Plist.writeXml(value));
     }
 }