Delegate Analyzer.PropertyExtractionDelegate
This delegate is for iterating into complex objects like dictionaries that the Analyzer doesn't natively understand
Namespace: Microsoft.CST.OAT
Assembly: OAT.dll
Syntax
public delegate (bool Processed, object Result) PropertyExtractionDelegate(object obj, string index);
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | obj | Target object |
| System.String | index | String based index into the object |
Returns
| Type | Description |
|---|---|
| System.ValueTuple<System.Boolean, System.Object> | (If we successfully extracted, The extraction result) |