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

◆ GetProperty() [2/7]

PropertyInfo? System.Type.GetProperty ( string name,
BindingFlags bindingAttr )
inlineinherited

Implements System.Reflection.IReflect.

Definition at line 821 of file Type.cs.

822 {
823 if (name == null)
824 {
825 throw new ArgumentNullException("name");
826 }
827 return GetPropertyImpl(name, bindingAttr, null, null, null, null);
828 }
PropertyInfo? GetPropertyImpl(string name, BindingFlags bindingAttr, Binder? binder, Type? returnType, Type[]? types, ParameterModifier[]? modifiers)

References System.Type.GetPropertyImpl().