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

◆ Target

object System.Runtime.DependentHandle.Target
getset

Definition at line 12 of file DependentHandle.cs.

13 {
14 get
15 {
17 if (handle == (IntPtr)0)
18 {
19 ThrowHelper.ThrowInvalidOperationException();
20 }
22 }
23 set
24 {
26 if (handle == (IntPtr)0 || value != null)
27 {
28 ThrowHelper.ThrowInvalidOperationException();
29 }
31 }
32 }
static unsafe object InternalGetTarget(IntPtr dependentHandle)
static void InternalSetTargetToNull(IntPtr dependentHandle)