Table of Contents

Delegate RuntimeStringTransformer

Namespace
Utils.Parser.Runtime
Assembly
Utils.Parser.dll

Represents a function that attempts to transform a token into a defined string value.

public delegate bool RuntimeStringTransformer(string token, out string result)

Parameters

token string

Token text to transform.

result string

Transformed string result when successful.

Returns

bool

true when transform succeeded; otherwise false.

Extension Methods