• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Try Free
Show / Hide Table of Contents

Property ResyncOptions

ResyncOptions

This property is used to define the ResyncOptions for the cache item.

Declaration
public ResyncOptions ResyncOptions { get; set; }
Property Value
Type Description
ResyncOptions
Examples
Product product = new Product();
product.Id = 1;
product.Name = "Chai";

CacheItem item = new CacheItem(product);
item.ResyncOptions = new ResyncOptions(true, "ProdProvider");
Back to top Copyright © 2017 Alachisoft