Часть контекста операции, связанная с плейсхолдерами для представлений.

interface IViewPlaceholderContext {
    defaultViewAlias: null | string;
    sharedParameters: ViewRequestParameter[];
    clone(): IViewPlaceholderContext;
    deserializeFromStorage(
        storage: IStorage,
        context?: StorageSerializableContext,
    ): this;
    get(viewAlias: string): IViewPlaceholderInfo;
    getAll(): readonly [string, IViewPlaceholderInfo][];
    isSealed(): boolean;
    remove(viewAlias: string): void;
    removeAll(): void;
    reset(): void;
    seal(): this;
    serializeToStorage(
        storage?: IStorage,
        context?: StorageSerializableContext,
    ): IStorage;
    setFrom(info: IViewPlaceholderContext): void;
    tryGet(viewAlias: string): null | IViewPlaceholderInfo;
}

Hierarchy (View Summary, Expand)

Implemented by

Properties

defaultViewAlias: null | string
sharedParameters: ViewRequestParameter[]

Methods

  • Returns boolean

  • Parameters

    • viewAlias: string

    Returns void

  • Returns void

  • Returns void

  • Returns this

MMNEPVFCICPMFPCPTTAAATR