C# 클래스 TagTool.Commands.CommandContextStack

A stack of command contexts.
파일 보기 프로젝트 열기: TheGuardians/TagTool 1 사용 예제들

공개 메소드들

메소드 설명
GetPath ( ) : string

Gets the current path.

Pop ( ) : bool

Pops the current context off the stack, making the previous one active.

Push ( CommandContext context ) : void

Pushes a context onto the stack, making it active.

메소드 상세

GetPath() 공개 메소드

Gets the current path.
public GetPath ( ) : string
리턴 string

Pop() 공개 메소드

Pops the current context off the stack, making the previous one active.
public Pop ( ) : bool
리턴 bool

Push() 공개 메소드

Pushes a context onto the stack, making it active.
public Push ( CommandContext context ) : void
context CommandContext The context to push.
리턴 void