Exemplo n.º 1
0
 public void AddToUrlTable(UrlEntity url)
 {
     urlTable.Execute(TableOperation.InsertOrReplace(url));
     recentUrls.AddUrl(UrlEntity.DecodeFromTableKey(url.PartitionKey) + ": " + UrlEntity.DecodeFromTableKey(url.RowKey));
     statsTable.Execute(TableOperation.InsertOrReplace(recentUrls));
     IncrementUrlTableLength();
 }