Castle.MonoRail.Views.Brail.BrailBase.TryGetParameter C# (CSharp) Method

TryGetParameter() public method

this is called by ReplaceUnknownWithParameters step to create a more dynamic experiance any uknown identifier with the prefix of ? will be translated into a call for TryGetParameter('identifier name without the ? prefix'). This method will return null if the value it not found.
public TryGetParameter ( string name ) : object
name string
return object
		public object TryGetParameter(string name)
		{
			ParameterSearch search = GetParameterInternal(name);
			return new IgnoreNull(search.Value);
		}