C# Class Spring.Objects.Factory.Config.ConfigurableVariableSource

Inheritance: IVariableSource
Show file Open project: spring-projects/spring-net Class Usage Examples

Public Methods

Method Description
CanResolveVariable ( string name ) : bool

Before requesting a variable resolution, a client should ask, whether the source can resolve a particular variable name.

ConfigurableVariableSource ( ) : System

Initializes a new instance of ConfigurableVariableSource.

ResolveVariable ( string name ) : string

Resolves variable value for the specified variable name.

Method Details

CanResolveVariable() public method

Before requesting a variable resolution, a client should ask, whether the source can resolve a particular variable name.
public CanResolveVariable ( string name ) : bool
name string the name of the variable to resolve
return bool

ConfigurableVariableSource() public method

Initializes a new instance of ConfigurableVariableSource.
public ConfigurableVariableSource ( ) : System
return System

ResolveVariable() public method

Resolves variable value for the specified variable name.
public ResolveVariable ( string name ) : string
name string /// The name of the variable to resolve. ///
return string