Table of Contents

Interface IKNetTaskConfiguration

Namespace
MASES.KNet.Connect
Assembly
MASES.KNet.dll

Interface to simplify access configuration information

public interface IKNetTaskConfiguration

Methods

Add(IEnumerable<KeyValuePair<string, object>>)

Adds all values in values

void Add(IEnumerable<KeyValuePair<string, object>> values)

Parameters

values IEnumerable<KeyValuePair<string, object>>

The IEnumerable<T> containing key-value information

Add(string, bool)

Adds bool associated to key

void Add(string key, bool value)

Parameters

key string

The key to return

value bool

The bool value associated to key

Add(string, double)

Adds double associated to key

void Add(string key, double value)

Parameters

key string

The key to return

value double

The double value associated to key

Add(string, short)

Adds short associated to key

void Add(string key, short value)

Parameters

key string

The key to return

value short

The short value associated to key

Add(string, int)

Adds int associated to key

void Add(string key, int value)

Parameters

key string

The key to return

value int

The int value associated to key

Add(string, long)

Adds long associated to key

void Add(string key, long value)

Parameters

key string

The key to return

value long

The long value associated to key

Add(string, string)

Adds string associated to key

void Add(string key, string value)

Parameters

key string

The key to return

value string

The string value associated to key