Class ActionGroupInfo
Provides reflection information about a group of action methods which all share the same action name(invocation name) within controller type. Invocation names are mapped to actual method names, as ActionAttribute may override the name of actual method that it decorates. This is a framework internal method which is not intended to be used by business logic developers
Inheritance
System.Object
ActionGroupInfo
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: NFX.Wave.MVC
Assembly: NFX.Wave.dll
Syntax
public sealed class ActionGroupInfo : INamed
Fields
Actions
Returns the actions in the order suitable for match making
Declaration
public IEnumerable<ActionInfo> Actions
Field Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ActionInfo> |
Controller
Declaration
public readonly ControllerInfo Controller
Field Value
Type | Description |
---|---|
ControllerInfo |
Properties
Name
Action invocation name- may be diffrent from method name
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |