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
storePropertyStore
Properties
Macro
Specifies the name of the macro.
public string Macro { get; set; }
Property Value
Parameters
The parameter list of the macro.
public string Parameters { get; set; }
Property Value
Trim
Specifies wheter or not to trim leading and trailing whitespace of the expanded value.
public bool Trim { get; set; }
Property Value
Value
The string this macro expands to.
public string Value { get; set; }