Search Results for

    Show / Hide Table of Contents

    Interface IGetFdoCacheInfo

    Defines the command for querying the cache status of FDO connections

    Inherited Members
    ICommand.Parent
    Namespace: OSGeo.MapGuide.MaestroAPI.Commands
    Assembly: OSGeo.MapGuide.MaestroAPI.dll
    Syntax
    public interface IGetFdoCacheInfo : ICommand
    Examples

    This example shows how invoke the IGetFdoCacheInfo command. Note that you should check if the connection supports this command through its capabilities

    IServerConnection conn;
    ...
    IGetFdoCacheInfo command = (IGetFdoCacheInfo)conn.CreateCommand(CommandType.GetFdoCacheInfo);
    FdoCacheInfo cacheInfo = command.Execute();

    Methods

    | Improve this Doc View Source

    Execute()

    Executes this command and returns a FdoCacheInfo that represents this cache status information

    Declaration
    FdoCacheInfo Execute()
    Returns
    Type Description
    FdoCacheInfo
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2009 - 2022 Jackie Ng