C# 클래스 ICSharpCode.Core.StringParser

this class parses internal ${xyz} tags of sd. All environment variables are avaible under the name env.[NAME] where [NAME] represents the string under which it is avaiable in the environment.
파일 보기 프로젝트 열기: jumpinjackie/fdotoolbox

공개 메소드들

메소드 설명
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

비공개 메소드들

메소드 설명
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

메소드 상세

Parse() 공개 정적인 메소드

public static Parse ( string input ) : string
input string
리턴 string

Parse() 공개 정적인 메소드

Expands ${xyz} style property values.
public static Parse ( string input, string customTags ) : string
input string
customTags string
리턴 string

Parse() 공개 정적인 메소드

Parses an array and replaces the elements in the existing array.
public static Parse ( string inputs ) : void
inputs string
리턴 void

RegisterStringTagProvider() 공개 정적인 메소드

public static RegisterStringTagProvider ( IStringTagProvider tagProvider ) : void
tagProvider IStringTagProvider
리턴 void