VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Processing Namespace / ProcessingState Class / TryGetCachedResult(IProcessingCommandInfo,Object,ProcessingResult) Method
Syntax Requirements SeeAlso
In This Topic
    TryGetCachedResult(IProcessingCommandInfo,Object,ProcessingResult) Method (ProcessingState)
    In This Topic
    Tries the get cached processing result for the specified target.
    Syntax
    'Declaration
    
    Public Function TryGetCachedResult( _
    ByVal processingCommand
    The processing command.
    As IProcessingCommandInfo, _
    ByVal target
    The target of processing command.
    As System.Object, _
    ByRef processingResult
    The processing result.
    As ProcessingResult _
    ) As Boolean
    public bool TryGetCachedResult(
    IProcessingCommandInfo processingCommand,
    System.Object target,
    out ProcessingResult processingResult
    )
    public: bool TryGetCachedResult(
    IProcessingCommandInfo* processingCommand,
    System.Object target,
    [PARAMFLAG::Out] ProcessingResult* processingResult
    )
    public:
    bool TryGetCachedResult(
    IProcessingCommandInfo^ processingCommand,
    System.Object target,
    [Out] ProcessingResult^ processingResult
    )

    Parameters

    processingCommand
    The processing command.
    target
    The target of processing command.
    processingResult
    The processing result.

    Return Value

    True if result is found; otherwise, false.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also