Show / Hide Table of Contents

Delegate Analyzer.ObjectToValuesDelegate

This delegate is for turning complex objects like dictionaries that the Analyzer doesn't natively support into a dictionary or list of strings that OAT can use for default operations

Namespace: Microsoft.CST.OAT
Assembly: OAT.dll
Syntax
public delegate (bool Processed, IEnumerable<string> valsExtracted, IEnumerable<KeyValuePair<string, string>> dictExtracted) ObjectToValuesDelegate(object obj);
Parameters
Type Name Description
System.Object obj

Target object

Returns
Type Description
System.ValueTuple<System.Boolean, System.Collections.Generic.IEnumerable<System.String>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.String>>>

(If the object was parsed, A list of Strings that were extracted, A List of KVP that were extracted)

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX