Table of Contents

Class Define

Namespace
Dassie.Configuration
Assembly
dc.dll

Represents a macro definition.

[Serializable]
public class Define : ConfigObject
Inheritance
Define
Inherited Members
Extension Methods

Constructors

Define(PropertyStore)

Initializes a new instance of the ConfigObject type backed by the specified PropertyStore.

public Define(PropertyStore store)

Parameters

store PropertyStore

Properties

Macro

Specifies the name of the macro.

public string Macro { get; set; }

Property Value

string

Parameters

The parameter list of the macro.

public string Parameters { get; set; }

Property Value

string

Trim

Specifies wheter or not to trim leading and trailing whitespace of the expanded value.

public bool Trim { get; set; }

Property Value

bool

Value

The string this macro expands to.

public string Value { get; set; }

Property Value

string