Property ResyncOptions
ResyncOptions
This property is used to define the Resync
Declaration
public ResyncOptions ResyncOptions { get; set; }
Property Value
Type | Description |
---|---|
Resync |
This property is used to define the Resync |
Examples
The following example sets Resync
Product product = new Product();
product.Id = 1;
product.Name = "Chai";
CacheItem item = new CacheItem(product);
item.ResyncOptions = new ResyncOptions(true, "ProdProvider");