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

◆ GetProperty() [3/7]

PropertyInfo? System.Type.GetProperty ( string name,
BindingFlags bindingAttr,
Binder? binder,
Type? returnType,
Type[] types,
ParameterModifier?[] modifiers )
inlineinherited

Implements System.Reflection.IReflect.

Definition at line 860 of file Type.cs.

861 {
862 if (name == null)
863 {
864 throw new ArgumentNullException("name");
865 }
866 if (types == null)
867 {
868 throw new ArgumentNullException("types");
869 }
870 return GetPropertyImpl(name, bindingAttr, binder, returnType, types, modifiers);
871 }
PropertyInfo? GetPropertyImpl(string name, BindingFlags bindingAttr, Binder? binder, Type? returnType, Type[]? types, ParameterModifier[]? modifiers)

References System.Type.GetPropertyImpl().