Note
If a matching property could be found and the invocation itself has thrown an exception, then this method also throws an exception instead of returning .
public static bool TrySetProperty(
Object instance,
string propertyName,
Object? value,
params Object?[]? indexParameters
)
Public Shared Function TrySetProperty (
instance As Object,
propertyName As String,
value As Object,
ParamArray indexParameters As Object()
) As Boolean
public:
static bool TrySetProperty(
Object^ instance,
String^ propertyName,
Object^ value,
... array<Object^>^ indexParameters
)
static member TrySetProperty :
instance : Object *
propertyName : string *
value : Object *
indexParameters : Object[] -> bool
propertyName can refer public and non-public properties. To avoid ambiguity (in case of indexers), this method gets all of the properties of the same name and chooses the first one for which the provided indexParameters match.
If you already have a PropertyInfo instance use the SetProperty(Object, PropertyInfo, Object, ReflectionWays, Object) method for better performance.
For setting the property this method uses the TypeDescriptor way for ICustomTypeDescriptor implementations and the DynamicDelegate way otherwise.