PropertyUpdaterFindProperty Method |
Find property with name in base object.
Namespace:
DHI.Mike1D.Generic
Assembly:
DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax public bool FindProperty(
string name,
out Stack<PropertyUpdaterObjectMemberData> memberData,
IDiagnostics diagnostics,
char splitChar = '.'
)
Public Function FindProperty (
name As String,
<OutAttribute> ByRef memberData As Stack(Of PropertyUpdaterObjectMemberData),
diagnostics As IDiagnostics,
Optional splitChar As Char = "."C
) As Boolean
public:
bool FindProperty(
String^ name,
[OutAttribute] Stack<PropertyUpdaterObjectMemberData^>^% memberData,
IDiagnostics^ diagnostics,
wchar_t splitChar = L'.'
)
Parameters
- name
- Type: SystemString
Name of property. Child properties can also be found, by adding a dot (splitChar) in the name. - memberData
- Type: System.Collections.GenericStackPropertyUpdaterObjectMemberData
Stack with object and member of object where property is available. The first element of the stack is the object containing the actual value to be set. - diagnostics
- Type: DHI.Mike1D.GenericIDiagnostics
- splitChar (Optional)
- Type: SystemChar
Char used for splitting propertyname, in case child properties are applied.
Return Value
Type:
BooleanTrue on success
See Also