C# 클래스 Castle.MonoRail.Framework.Internal.WizardUtils

Utility class for wizard related queries and operations
파일 보기 프로젝트 열기: nats/castle-1.0.3-mono 1 사용 예제들

공개 메소드들

메소드 설명
ConstructWizardNamespace ( Controller controller ) : String

Constructs the wizard namespace.

GetNextStepName ( Controller controller ) : String

Gets the name of the next step.

GetPreviousStepName ( Controller controller ) : String

Gets the name of the previous step.

HasNextStep ( Controller controller ) : bool

Determines whether the current wizard has a next step.

HasPreviousStep ( Controller controller ) : bool

Determines whether the current wizard has a previous step.

RegisterCurrentStepInfo ( Controller controller, String actionName ) : void

Registers the current step info/state.

RegisterCurrentStepInfo ( Controller controller, int stepIndex, String stepName ) : void

Registers the current step info/state.

메소드 상세

ConstructWizardNamespace() 공개 정적인 메소드

Constructs the wizard namespace.
public static ConstructWizardNamespace ( Controller controller ) : String
controller Controller The controller.
리턴 String

GetNextStepName() 공개 정적인 메소드

Gets the name of the next step.
public static GetNextStepName ( Controller controller ) : String
controller Controller The controller.
리턴 String

GetPreviousStepName() 공개 정적인 메소드

Gets the name of the previous step.
public static GetPreviousStepName ( Controller controller ) : String
controller Controller The controller.
리턴 String

HasNextStep() 공개 정적인 메소드

Determines whether the current wizard has a next step.
public static HasNextStep ( Controller controller ) : bool
controller Controller The controller.
리턴 bool

HasPreviousStep() 공개 정적인 메소드

Determines whether the current wizard has a previous step.
public static HasPreviousStep ( Controller controller ) : bool
controller Controller The controller.
리턴 bool

RegisterCurrentStepInfo() 공개 정적인 메소드

Registers the current step info/state.
public static RegisterCurrentStepInfo ( Controller controller, String actionName ) : void
controller Controller The controller.
actionName String Name of the action.
리턴 void

RegisterCurrentStepInfo() 공개 정적인 메소드

Registers the current step info/state.
public static RegisterCurrentStepInfo ( Controller controller, int stepIndex, String stepName ) : void
controller Controller The controller.
stepIndex int Index of the step.
stepName String Name of the step.
리턴 void