Method | Description | |
---|---|---|
Parse ( string input ) : string | ||
Parse ( string input, string customTags ) : string |
Expands ${xyz} style property values.
|
|
Parse ( string inputs ) : void |
Parses an array and replaces the elements in the existing array.
|
|
RegisterStringTagProvider ( IStringTagProvider tagProvider ) : void |
Method | Description | |
---|---|---|
Get ( object obj, string name ) : string | ||
GetProperty ( string propertyName ) : string |
Allow special syntax to retrieve property values: ${property:PropertyName} ${property:PropertyName??DefaultValue} ${property:ContainerName/PropertyName} ${property:ContainerName/PropertyName??DefaultValue} A container is a Properties instance stored in the PropertyService. This is used by many AddIns to group all their properties into one container.
|
|
GetValue ( string propertyName, string customTags ) : string | ||
StringParser ( ) : System |
public static Parse ( string input ) : string | ||
input | string | |
return | string |
public static Parse ( string input, string customTags ) : string | ||
input | string | |
customTags | string | |
return | string |
public static RegisterStringTagProvider ( IStringTagProvider tagProvider ) : void | ||
tagProvider | IStringTagProvider | |
return | void |