Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
GetProperty()
[4/7]
PropertyInfo
? System.Type.GetProperty
(
string
name
,
Type
?
returnType
)
inline
inherited
Definition at line
832
of file
Type.cs
.
833
{
834
if
(name ==
null
)
835
{
836
throw
new
ArgumentNullException(
"name"
);
837
}
838
return
GetPropertyImpl
(name,
BindingFlags
.Instance |
BindingFlags
.Static |
BindingFlags
.Public,
null
, returnType,
null
,
null
);
839
}
System.Type.GetPropertyImpl
PropertyInfo? GetPropertyImpl(string name, BindingFlags bindingAttr, Binder? binder, Type? returnType, Type[]? types, ParameterModifier[]? modifiers)
System.Reflection.BindingFlags
BindingFlags
Definition
BindingFlags.cs:5
References
System.Type.GetPropertyImpl()
.
System
Reflection
Emit
TypeBuilder
Generated by
1.10.0