Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ RequiresSerInfoFixup

bool System.Runtime.Serialization.ObjectHolder.RequiresSerInfoFixup
getsetpackage

Definition at line 175 of file ObjectHolder.cs.

176 {
177 get
178 {
179 if ((_flags & 4) == 0 && (_flags & 2) == 0)
180 {
181 return false;
182 }
183 return (_flags & 0x4000) == 0;
184 }
185 set
186 {
187 if (!value)
188 {
189 _flags |= 16384;
190 }
191 else
192 {
193 _flags &= -16385;
194 }
195 }
196 }

Referenced by System.Runtime.Serialization.ObjectManager.DoFixups().