struct CCL::NavigateArgs

Navigation arguments.

#include <inavigationserver.h>

struct NavigateArgs
{
    // fields

    INavigator& navigator;
    UrlRef url;
    IView& contentFrame;
    IUnknown* contentComponent;
    MutableCString errorDocumentName;

    // construction

    NavigateArgs (
        INavigator& _navigator,
        UrlRef _url,
        IView& _contentFrame,
        IUnknown* contentComponent = nullptr
    );
};