Terraria
v1.4.4.9
Terraria source code documentation
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
_
a
c
d
e
f
i
l
m
o
p
r
s
t
u
w
Files
File List
File Members
All
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Macros
Loading...
Searching...
No Matches
◆
OwnerModified
bool
System.Security.AccessControl.ObjectSecurity
<
T
>.OwnerModified
get
set
protected
inherited
Definition at line
23
of file
ObjectSecurity.cs
.
24
{
25
get
26
{
27
if
(!
_lock
.
IsReadLockHeld
&& !
_lock
.
IsWriteLockHeld
)
28
{
29
throw
new
InvalidOperationException
(
System
.
SR
.
InvalidOperation_MustLockForReadOrWrite
);
30
}
31
return
_ownerModified
;
32
}
33
set
34
{
35
if
(!
_lock
.
IsWriteLockHeld
)
36
{
37
throw
new
InvalidOperationException
(
System
.
SR
.
InvalidOperation_MustLockForWrite
);
38
}
39
_ownerModified
=
value
;
40
}
41
}
System.SR.InvalidOperation_MustLockForReadOrWrite
static string InvalidOperation_MustLockForReadOrWrite
Definition
SR.cs:86
System.SR.InvalidOperation_MustLockForWrite
static string InvalidOperation_MustLockForWrite
Definition
SR.cs:88
System.SR
Definition
SR.cs:7
System.Security.AccessControl.ObjectSecurity._lock
readonly ReaderWriterLockSlim _lock
Definition
ObjectSecurity.cs:9
System.Security.AccessControl.ObjectSecurity._ownerModified
bool _ownerModified
Definition
ObjectSecurity.cs:13
System.Threading.ReaderWriterLockSlim.IsWriteLockHeld
bool IsWriteLockHeld
Definition
ReaderWriterLockSlim.cs:277
System.Threading.ReaderWriterLockSlim.IsReadLockHeld
bool IsReadLockHeld
Definition
ReaderWriterLockSlim.cs:253
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Security
AccessControl
NativeObjectSecurity
Generated by
1.10.0