interface IRequest {
    getCommand(): string;
    getLength(): number;
    getParam(index): string;
    getParams(): string[];
    getServerContext(): IServerContext;
    getSession(): Session;
}

Implemented by

Methods