CK.RouteConfig.SubRouteConfiguration.RemoveAction C# (CSharp) Метод

RemoveAction() публичный Метод

Removes one or more actions by name.
public RemoveAction ( string name ) : SubRouteConfiguration
name string Name of the action to remove.
Результат SubRouteConfiguration
        public new SubRouteConfiguration RemoveAction( string name, params string[] otherNames )
        {
            base.RemoveAction( name, otherNames );
            return this;
        }