Castle.MonoRail.Framework.Views.Aspx.BindingContext.ResolveActionArguments C# (CSharp) Method

ResolveActionArguments() public method

Resolves the action arguments.
public ResolveActionArguments ( ) : IDictionary
return IDictionary
		public IDictionary ResolveActionArguments()
		{
			HybridDictionary actionArgs = new HybridDictionary(true);

			foreach(IBindingScope scope in scopes)
			{
				scope.AddActionArguments(this, actionArgs);
			}

			return actionArgs;
		}

Same methods

BindingContext::ResolveActionArguments ( ActionArgumentCollection actionArgs, IDictionary resolvedActionArgs ) : void

Usage Example

Ejemplo n.º 1
0
		/// <summary>
		/// Adds the action arguments.
		/// </summary>
		/// <param name="context">The context.</param>
		/// <param name="resolvedActionArgs">The resolved action args.</param>
		protected override void AddActionArguments(BindingContext context,
		                                           IDictionary resolvedActionArgs)
		{
			context.ResolveActionArguments(action.ActionArguments, resolvedActionArgs);
		}