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

ActionConfiguration() protected method

Initializes a new ActionConfiguration.
protected ActionConfiguration ( string name ) : System
name string Required non empty name that identifies this configuration. Can not be null.
return System
        protected ActionConfiguration( string name )
        {
            if( name == null ) throw new ArgumentNullException( "name" );
            _name = name;
        }