Table of Contents

Class NamedFormulas

Namespace
Bricelam.PowerFx
Assembly
Bricelam.PowerFx.dll

Provides methods for loading named formulas from YAML.

public static class NamedFormulas
Inheritance
NamedFormulas
Inherited Members

Methods

Load(Stream)

Loads named formulas form a YAML formula file.

public static IDictionary<string, string> Load(Stream stream)

Parameters

stream Stream

The stream to load from.

Returns

IDictionary<string, string>

A dictonary of named formulas.

Load(TextReader)

Loads named formulas form a YAML formula file.

public static IDictionary<string, string> Load(TextReader reader)

Parameters

reader TextReader

The reader to load from.

Returns

IDictionary<string, string>

A dictonary of named formulas.

Load(string)

Loads named formulas form a YAML formula file.

public static IDictionary<string, string> Load(string path)

Parameters

path string

The file to load from.

Returns

IDictionary<string, string>

A dictonary of named formulas.

Parse(string)

Parses named formulas form YAML.

public static IDictionary<string, string> Parse(string value)

Parameters

value string

The named formulas YAML.

Returns

IDictionary<string, string>

A dictonary of named formulas.

See Also