View Source
  Interface IKeyValueRepository
  
  
  
  
  Assembly: Umbraco.Core.dll
  Syntax
  
    public interface IKeyValueRepository : IReadRepository<string, IKeyValue>, IWriteRepository<IKeyValue>, IRepository
   
  Methods
  
  
    View Source
  
  FindByKeyPrefix(String)
  Returns key/value pairs for all keys with the specified prefix.
 
  
  Declaration
  
    IReadOnlyDictionary<string, string>? FindByKeyPrefix(string keyPrefix)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.String | 
        keyPrefix | 
         | 
      
    
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Nullable<IReadOnlyDictionary<System.String, System.String>> | 
         |