Method TryGetMember
TryGetMember(GetMemberBinder, out object?)
Provides the implementation for operations that get member values. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as getting a value for a property.
public override bool TryGetMember(GetMemberBinder binder, out object? result)
Parameters
binder
GetMemberBinder- Provides information about the object that called the dynamic operation. The
binder.Name
property provides the name of the member on which the dynamic operation is performed. For example, for theConsole.WriteLine(sampleObject.SampleProperty)
statement, wheresampleObject
is an instance of the class derived from the DynamicObject class,binder.Name
returns "SampleProperty". Thebinder.IgnoreCase
property specifies whether the member name is case-sensitive. result
object- The result of the get operation. For example, if the method is called for a property, you can assign the property value to
result
.