VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Processing.Analyzers Namespace / ProcessingResultCachingMethod Enumeration
Syntax Members Hierarchy Requirements SeeAlso
In This Topic
    ProcessingResultCachingMethod Enumeration
    In This Topic
    Specifies available the caching methods of processing result.
    Syntax
    'Declaration
    
    Public Enum ProcessingResultCachingMethod
       Inherits System.Enum
    
    
    public enum ProcessingResultCachingMethod : System.Enum
    
    
    __value public enum ProcessingResultCachingMethod : public System.Enum
    
    
    public enum class ProcessingResultCachingMethod : public System.Enum
    
    
    Members
    MemberDescription
    GetOrProcessingGet result from cache, if result is cached; otherwise execute processing.
    GetOrProcessingAndSetGet result from cache, if result is cached; otherwise execute processing and add processing result to cache.
    ProcessingAndSetExecute processing and replace processing result in cache.
    ProcessingAndRemoveExecute processing and remove result from cache.
    RemoveRemove result from cache and return null as processing result.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Imaging.Processing.Analyzers.ProcessingResultCachingMethod

    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