Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
GetRuntimeEvents()
static
IEnumerable
<
EventInfo
> System.Reflection.RuntimeReflectionExtensions.GetRuntimeEvents
(
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicEvents | DynamicallyAccessedMemberTypes.NonPublicEvents)]
this
Type
type
)
inline
static
Definition at line
35
of file
RuntimeReflectionExtensions.cs
.
36
{
37
if
(
type
==
null
)
38
{
39
throw
new
ArgumentNullException(
"type"
);
40
}
41
return
type
.GetEvents(BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic);
42
}
System.ExceptionArgument.type
@ type
References
System.type
.
System
Reflection
RuntimeReflectionExtensions
Generated by
1.10.0