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

Inheritance: IVariableSource
Afficher le fichier Open project: spring-projects/spring-net Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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
Résultat bool

ConfigurableVariableSource() public méthode

Initializes a new instance of ConfigurableVariableSource.
public ConfigurableVariableSource ( ) : System
Résultat System

ResolveVariable() public méthode

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