CK.RouteConfig.MetaInsertActionConfiguration.MetaInsertActionConfiguration C# (CSharp) Method

MetaInsertActionConfiguration() public method

Initializes a new MetaInsertActionConfiguration with the name of the action and the name of the previously declared action.
public MetaInsertActionConfiguration ( string name, string declarationName ) : System
name string Name of the action to insert.
declarationName string Declared action's name.
return System
        public MetaInsertActionConfiguration( string name, string declarationName )
        {
            _name = name;
            _declaredName = declarationName;
        }