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;
        }