terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
UnityLogWriter.cs
Go to the documentation of this file.
1using System;
2using System.IO;
3using System.Text;
5
6namespace UnityEngine
7{
8 // Token: 0x0200003D RID: 61
9 [NativeHeader("Runtime/Export/Logging/UnityLogWriter.bindings.h")]
10 internal class UnityLogWriter : TextWriter
11 {
12 // Token: 0x06000074 RID: 116 RVA: 0x00002924 File Offset: 0x00000B24
14 public static void WriteStringToUnityLog(string s)
15 {
16 if (s != null)
17 {
18 throw new MissingMethodException();
19 }
20 }
21
22 // Token: 0x06000075 RID: 117 RVA: 0x0000293C File Offset: 0x00000B3C
23 [FreeFunction(IsThreadSafe = true)]
24 private static void WriteStringToUnityLogImpl(string s)
25 {
26 throw new MissingMethodException();
27 }
28
29 // Token: 0x06000076 RID: 118 RVA: 0x00002950 File Offset: 0x00000B50
30 public static void Init()
31 {
32 if (!true)
33 {
34 }
35 }
36
37 // Token: 0x1700000E RID: 14
38 // (get) Token: 0x06000077 RID: 119 RVA: 0x00002960 File Offset: 0x00000B60
39 public override Encoding Encoding
40 {
41 get
42 {
43 return Encoding.UTF8;
44 }
45 }
46
47 // Token: 0x06000078 RID: 120 RVA: 0x00002974 File Offset: 0x00000B74
48 public override void Write(char value)
49 {
50 string text;
51 if (text != null)
52 {
53 throw new MissingMethodException();
54 }
55 }
56
57 // Token: 0x06000079 RID: 121 RVA: 0x0000298C File Offset: 0x00000B8C
58 public override void Write(string s)
59 {
60 if (s != null)
61 {
62 throw new MissingMethodException();
63 }
64 }
65
66 // Token: 0x0600007A RID: 122 RVA: 0x000029A4 File Offset: 0x00000BA4
67 public override void Write(char[] buffer, int index, int count)
68 {
69 throw new MissingMethodException();
70 }
71
72 // Token: 0x0600007B RID: 123 RVA: 0x000029BC File Offset: 0x00000BBC
74 {
75 if (!true)
76 {
77 }
78 base..ctor();
79 }
80 }
81}
class f__AnonymousType0<< Count > j__TPar
static Encoding UTF8
Definition Encoding.cs:828
override void Write(char[] buffer, int index, int count)
override void Write(char value)
override void Write(string s)
static void WriteStringToUnityLogImpl(string s)
static void WriteStringToUnityLog(string s)