You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/snapshots-manage-dotnet.md
+20-8Lines changed: 20 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Create and manage a blob snapshot in .NET
2
+
title: Create and manage a blob snapshot with .NET
3
3
titleSuffix: Azure Storage
4
4
description: Learn how to use the .NET client library to create a read-only snapshot of a blob to back up blob data at a given moment in time.
5
5
author: pauljewellmsft
@@ -10,10 +10,10 @@ ms.topic: how-to
10
10
ms.date: 08/27/2020
11
11
ms.subservice: blobs
12
12
ms.devlang: csharp
13
-
ms.custom: devx-track-csharp
13
+
ms.custom: devx-track-csharp, devguide-csharp
14
14
---
15
15
16
-
# Create and manage a blob snapshot in .NET
16
+
# Create and manage a blob snapshot with .NET
17
17
18
18
A snapshot is a read-only version of a blob that's taken at a point in time. This article shows how to create and manage blob snapshots using the [Azure Storage client library for .NET](/dotnet/api/overview/azure/storage).
19
19
@@ -89,12 +89,24 @@ The following code example shows how to delete a blob and its snapshots in .NET,
-[Soft delete for blobs](./soft-delete-blob-overview.md)
94
+
You can perform a copy operation to promote a snapshot over its base blob, as long as the base blob is in an online tier (hot or cool). The snapshot remains, but its destination is overwritten with a copy that can be read and written to.
95
+
96
+
The following code example shows how to copy a blob snapshot over the base blob:
For related code samples using deprecated .NET version 11.x SDKs, see [Code samples using .NET version 11.x](blob-v11-samples-dotnet.md#create-a-snapshot).
102
+
To learn more about managing blob snapshots using the Azure Blob Storage client library for .NET, see the following resources.
103
+
104
+
For related code samples using deprecated .NET version 11.x SDKs, see [Code samples using .NET version 11.x](blob-v11-samples-dotnet.md#create-a-snapshot).
## Copy a previous blob version over the base blob
39
+
40
+
You can perform a copy operation to promote a version over its base blob, as long as the base blob is in an online tier (hot or cool). The version remains, but its destination is overwritten with a copy that can be read and written to.
41
+
42
+
The following code example shows how to copy a blob version over the base blob:
0 commit comments